$(document).ready(function(){
    //$('div.ERROR_KEY').css('height',$(document).height());

    // кликабельный логотип
    $(".logo").click(function () {
        window.location = "/";
    });

    // Главный блок прячем/показываем
    $("#main_hover").hover(
        function() {
            $(this).find(".main_blocks").animate({opacity: "show", bottom: "0"}, 100);
        },
        function() {
            $(this).find(".main_blocks").animate({opacity: "hide", bottom: "0"},100);
        }
    );

    //$(this).find(".main_blocks").animate({opacity: "show", bottom: "0"}, 300);
});
