<!-- 
function mouseover(myDiv) 
{ 
	myDiv.style.backgroundColor='#D3D4E0'; 
//document.getElementById("thediv").style.backgroundColor='#CC6600'; 
} 
function mouseout(myDiv) 
{ 
	myDiv.style.backgroundColor='';
//document.getElementById("thediv").style.backgroundColor=''; 
} 
//--> 


