Плавный переход между страницами jQuery

//плавный переход между страницами
(function(){
    $(document).ready(function() {
        $("body").css("display", "none");

        $("body").fadeIn(1000);

        $(".animate-body").click(function(event){
            event.preventDefault();
            linkLocation = this.href;
            $("body").fadeOut(700, redirectPage);
        });

        function redirectPage() {
            window.location = linkLocation;
        }
    });
})();
//плавный переход между страницами
Контакты

Работаем: с ПН по ПТ, с 08:00 до 17:00 (МСК)
Отдыхаем: в СБ и ВС, чтобы быть в тонусе
и реализовывать самые сложные идеи