movey=0,ydiff=0,ystart=0,yoffset=5;
function start(){
ns=(document.layers)? true:false;
ie=(document.all)? true:false;
ns6=(document.getElementById && !document.all)? true:false;
if (ie || ns) {div_objekt=(ns)?document.divMenu:divMenu.style;}
if (ns6) {div_objekt=document.getElementById("divMenu").style;}
if (!window.opera) checkLocation()
}
function checkLocation() {
y=(ns || ns6)?window.pageYOffset:document.body.scrollTop;
ydiff=ystart-y;
if ((ydiff*ydiff)>0.1) movey=ydiff/5,ystart-=movey
div_objekt.top=ystart+yoffset;
setTimeout("checkLocation()",10);
}
