// JavaScript Document
function mOver(obj)
{
	obj.style.backgroundColor = '#F1E0E0';	//light 
//	obj.style.color = '#FFFFFF';			//white
}
function mOut(obj)
{
	obj.style.backgroundColor = '';			//transparent
//	obj.style.color = '#000000';			//black
}