// JavaScript Document
tms=new Array();
tms2=new Array();
function over(n){
	if(typeof(tms[n])!="undefined")clearTimeout(tms[n])
		if (n==1) {
			document.getElementById("s"+n).style.left = ((getwindowsize())+69);
		}else{
			document.getElementById("s"+n).style.left = ((getwindowsize())+174);
		}
		document.getElementById("s"+n).style.top = 63;
		document.getElementById("s"+n).style.visibility = "visible";
		document.getElementById("TD"+n).bgColor = "#000000";
		document.getElementById("LINK"+n).style.color = "#F59121";
}

function out(n){
	tms[n]=setTimeout('document.getElementById("s'+n+'").style.visibility="hidden"; \n document.getElementById("TD'+n+'").bgColor="#FFFFFF"; \n document.getElementById("LINK'+n+'").style.color = "#000000"; ',150);
}

function over2(z){
	if(typeof(tms2[z])!="undefined")clearTimeout(tms2[z])
	document.getElementById("TD"+z).bgColor = "#000000";
	document.getElementById("LINK"+z).style.color = "#F59121";
}

function out2(z){
	tms2[z]=setTimeout('document.getElementById("TD'+z+'").bgColor="#F59121"; \n document.getElementById("LINK'+z+'").style.color = "#000000"; ',150);
}
