function reposition () {
	if(mode=="default"){
		if(window.pageYOffset>259){
			document.getElementById("mesatehscrollordiv").style.top=(window.pageYOffset+16)+"px";
		} else {
			document.getElementById("mesatehscrollordiv").style.top="275px";
		}
	}
	if(mode=="ie" || mode=="ie6"){
		if(document.body.scrollTop>259){
			document.all.mesatehscrollordiv.style.top=(document.body.scrollTop+16)+"px";
		} else {
			document.all.mesatehscrollordiv.style.top="275px";
		}
	}
	/*if(mode=="ie6"){
		//window.status="document.documentElement.scrollTop="+document.documentElement.scrollTop;  //IE6
		//window.status="document.body.scrollTop="+document.body.scrollTop;  //IE
		if(document.documentElement.scrollTop>259){
			//window.document.getElementById("mesatehscrollordiv").style.top=(document.documentElement.scrollTop+16)+"px";
			document.all.mesatehscrollordiv.style.top=(document.documentElement.scrollTop+16)+"px";
			//document.all.mesatehscrollordiv.style.top=(document.body.scrollTop+16)+"px";
		} else {
			//window.document.getElementById("mesatehscrollordiv").style.top="275px";
			document.all.mesatehscrollordiv.style.top="275px";
		}
	}*/
}

var uAgent= navigator.userAgent.toLowerCase();
if (uAgent.indexOf("msie") > -1){
	//window.status="document.getElementById('mesatehscrollordiv').style.top="+window.document.getElementById('mesatehscrollordiv').style.top;
	if((parseFloat(navigator.appVersion) >= 4) && (uAgent.indexOf("msie 6.") != -1)){
		mode="ie6";
	} else {
		window.status="ie";
	}
} else {
	mode="default";
}
var endless = window.setInterval("reposition()", 15);

function rel(){
	window.clearInterval(endless);
}


