// JavaScript Document jQuery(document).ready(function(){ // ############################################################################### comman image fade effect jQuery('img').each(function(){ var imgTag = jQuery(this); var img1 = jQuery(this).attr('src'); var img = ""; jQuery(img).load(function() { imgTag.fadeIn(1000); }); }); }); jQuery(window).load(function(){ jQuery('#header_container').height( jQuery('#header').outerHeight() ); }); var status = 'in'; jQuery(window).scroll(function(){ var windowTop = jQuery(window).scrollTop(); if( windowTop > 10 && status == 'in' ) { status = 'out'; jQuery('#header').addClass('pan'); jQuery('#header').animate({"padding":"15px 2%"}); jQuery('.ft_menu li > ul.sub-menu').animate({"padding-top":"33px"}); } if( windowTop < 10 && status == 'out' ) { status = 'in'; jQuery('#header').removeClass('pan'); jQuery('#header').animate({"padding":"25px 2%"}); jQuery('.ft_menu li > ul.sub-menu').animate({"padding-top":"43px"}); } });