function tableOver(obj) 
{
    obj.style.backgroundColor = '#9f1124';
	obj.style.color = '#ffffff';
}

function tableOut(obj) 
{
    obj.style.backgroundColor = '#ffffff';
	obj.style.color = '#5f5f5f';
}
