function MenukeepIt(theName,theWantTop,theWantLeft) {
	theRealTop=parseInt(document.body.scrollTop)
	theTrueTop=theWantTop+theRealTop
	document.all[theName].style.top=theTrueTop
	theRealLeft=parseInt(document.body.scrollLeft)
	theTrueLeft=theWantLeft+theRealLeft
	document.all[theName].style.left=theTrueLeft
}

setInterval('MenukeepIt("MenuStatic",0,0)',1)