/* By Cedric Dugas position-absolute.com */
$(document).ready(function() {
    anchor.init()
});
anchor = {
    init : function()  {
        $("a.anchorLink").click(function () {
            var elementClick = $(this).attr("href")
            var destination = $(elementClick).offset().top -110;
            $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100, function(){
                $("h2.portfolioTitle,h2.contactTitle,h2.projectsTitle").not($(elementClick).next()).animate({
                    marginLeft:20
                })
                $(elementClick).next().animate({
                    marginLeft:35
                })
            } );
            return false;
        })
    }
}