CLEAR.queue(function(){var offset=85;var top=$("#floater").offset().top-parseFloat($("#floater").css("margin-top").replace(/auto/,0));$(window).resize(function(){if(($(window).height()-offset)<=$("#floater").height()){$("#floater").removeClass("fixed")}});$(window).scroll(function(event){if(($(window).height()-offset)>=$("#floater").height()){var y=$(this).scrollTop();if(y>=top){$("#floater").addClass("fixed")}else{$("#floater").removeClass("fixed")}}else{$("#floater").removeClass("fixed")}})});