﻿var mn,mnutimer;
$(window).load(function(){
    mn=$("#ctnr_menu");
    mn.css("top","-151px").stop(true).animate({
            top: "-146px"
        }, 500, "easeOut");
    var s2=$("#ctnr_logo");
    var animOff = function(){
		clearTimeout(mnutimer);
		mnutimer=setTimeout("mnuclo()",100);
    };
    s2.hover(function(){
		clearTimeout(mnutimer);
        mn.stop().animate({
            top: "0"
        }, 300, "easeOut");
    },
	animOff
	);
    mn.hover(function(){
	clearTimeout(mnutimer);
	},animOff);
});
$(document).ready(function(){
    $("#logo_eider").load(function(){
        $("#ctnr_menu").css("top","-151px");
    });
});
var mnuclo=function(){
	mn.stop().animate({top: "-146px"}, 300, "easeOut");
}

