$(document).ready(function () {
    $('#aboutlink').click(function () {
        $.scrollTo(0, 400);
    });
    $('#catlink').click(function () {
        $.scrollTo($('#catalog').offset().top - 32, 400);
    });
    $(window).resize(function () {
        var bg = $('#background');
        bg.css({
            'top': ($('#aboutblock').innerHeight() - bg.height()) / 2
        });
    });
});

$(window).load(function () {
    $(window).resize();
    if (window.location.hash == "#catalogue") {
        $.scrollTo($('#catalog').offset().top - 32);
    }
});

