$(document).ready(function(){$(window).scroll(function(){if($("#header").offset().top>50){$('#header').stop().animate({top:'-20px'},350,'easeOutQuad'); $('#header .global_nav').stop().animate({opacity:'0'},350,'easeOutQuad');$('#header .logo').stop().animate({top:'48px'},350,'easeOutQuad')}else{$('#header').stop().animate({top:'0px'},350,'easeOutQuad');$('#header .global_nav').stop().animate({opacity:'1'},350,'easeOutQuad');$('#header .logo').stop().animate({top:'42px'},350,'easeOutQuad')}})});