var stub_showing = false; function woahbar_show() { if(stub_showing) { jQuery('.woahbar-stub').slideUp('fast', function() { jQuery('.woahbar').show('bounce', { times:3, distance:15 }, 300); jQuery('body').animate({"marginTop": "32px"}, 300); }); } else { jQuery('.woahbar').show('bounce', { times:3, distance:15 }, 500); jQuery('body').animate({"marginTop": "32px"}, 250); } } function woahbar_hide() { jQuery('.woahbar').slideUp('fast', function() { jQuery('.woahbar-stub').show('bounce', { times:3, distance:15 }, 100); stub_showing = true; }); if( jQuery(window).width() > 1024 ) { jQuery('body').animate({"marginTop": "0px"}, 250); // if width greater than 1024 pull up the body } }