function stayPosition(elment_id,stayH,timeOut){
if(isSafari=navigator.userAgent.indexOf("Safari")>0){
	document.getElementById(elment_id).style.top=0+document.body.scrollTop+stayH+"px";

	}
else{
	try{
		document.getElementById(elment_id).style.top=0+document.documentElement.scrollTop+stayH+"px";
	}catch(e){
	}

}
var ss=setTimeout("stayPosition('"+elment_id+"',"+stayH+")",timeOut);
}



stayPosition("mneuWrap",136,11);
