function mOvrTD(src,clrOver){ 
	if (!src.contains(event.fromElement)){ 
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
	} 
} 
function mOutTD(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
	} 
} 
function mOvr(src,clrOver){ 

		src.style.backgroundColor = "#FFF"; 
		
		src.style.borderBottomStyle = "solid"; 
		src.style.borderBottomColor = "#FFF";
		src.style.borderBottomWidth	= "1px";
		
		src.style.borderLefStyle	= "solid"; 
		src.style.borderLeftColor	= "#BBB"
		src.style.borderLeftWidth	= "1px";
		
		src.style.borderRightStyle	= "solid"; 
		src.style.borderRightColor	= "#BBB"
		src.style.borderRightWidth	= "1px";
		
		src.style.borderTopStyle	= "solid"; 
		src.style.borderTopColor	= "#BBB"
		src.style.borderTopWidth	= "1px";
		src.style.color				= "#b12926";
	 
} 
function mOut(src,clrIn){ 
		
		src.style.backgroundColor  = ""; 
		
		src.style.borderBottomStyle = ""; 
		src.style.borderBottomColor = "";
		src.style.borderBottomWidth	= "";
		
		src.style.borderLefStyle	= "";
		src.style.borderLeftColor	= "";
		src.style.borderLeftWidth	= "";
		
		src.style.borderRightStyle	= ""; 
		src.style.borderRightColor	= "";
		src.style.borderRightWidth	= "";
		
		src.style.borderTopStyle	= ""; 
		src.style.borderTopColor	= "";
		src.style.borderTopWidth	= "";
		src.style.color				= "";
	
} 