$(document).ready(function() {
    var href = window.location.href;
    var hrefPieces = href.split("#");
   
    if (hrefPieces.length > 1) {
        var anchorName = hrefPieces[1];
        var posititon = $("#" + anchorName + '_content').offset().top - 10;
        $("html:not(:animated), body:not(:animated)").animate({scrollTop: posititon}, 1100);
    }
    
    $(".contactLink").unbind('click').bind('click', function() {
        $(this).attr("href", "mailto:" + $.base64Decode($(this).attr("href")).replace(/\//i, '@'));
        return true;
    });
});