(function($){ $(window).scroll(function(){ if ($(this).scrollTop() > 80) { $('#menu').css({position:'fixed',zIndex:1000,top:0,height:70,background:'#fafafa','border-bottom':'1px solid #444444'}); $('.menu_sub').css({height:70,background:'#fafafa'}); $('.menu_home').css({height:70,background:'#fafafa'}); $('.menu_sub img').css({'padding-top':'10px'}); $('.menu_sub_m').css({'top':'70'}); $('.sub_menu_list').css({'top':'69px'}); } else { $('#menu').css({position:'relative',height:60,background:'#ffffff','border-bottom':'0'}); $('.menu_sub').css({height:60, background:''}); $('.menu_home').css({height:60,background:''}); $('.menu_sub img').css({'padding-top':'0'}); $('.menu_sub_m').css({'top':'60px'}); $('.sub_menu_list').css({'top':'59px'}); }; }); $(function(){ $(document).ready(function(){ var img_width; img_width = $("#post_area img").width(); if(img_width > 710){ $("#post_area img").css("width","710px"); } return false; }); $('.menu_sub').bind({ mouseenter: function() { $("img", this).attr('src', $("img", this).attr('src').replace('_off', '_on')); var $btn=$('.sub_menu_list'); if(!$btn.is(':animated')) $btn.slideDown({duration: 300, easing: "easeOutQuart", complete: "callback"}); }, mouseleave: function() { //$('.sub_menu_list').slideUp({duration: 500, easing: "easeOutQuart", complete: "callback"}); $("img", this).attr('src', $("img", this).attr('src').replace('_on', '_off')); } }); $("#header").mouseleave(function () { $('.sub_menu_list').slideUp({duration: 500, easing: "easeOutQuart", complete: "callback"}); }); }); })(jQuery);