// JavaScript Document if (document.getElementById("scrollcontainer") != null) { var name = "#floatMenu"; var menuYloc = null; $(document).ready(function(){ menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px"))) $(window).scroll(function () { if( document.documentElement.scrollTop >= 85 || window.pageYOffset >= 85 ) { offset = menuYloc+$(document).scrollTop()-70; $(name).animate({top:offset},{duration:500,queue:false}); }else if( document.documentElement.scrollTop < 85 || window.pageYOffset < 85 ) { // offset = menuYloc+$(document).scrollTop(); offset = 0; $(name).animate({top:offset},{duration:500,queue:false}); } }); }); }