function mouseIn(obj)
{
	obj.style.backgroundColor='#B5CFF7';
	obj.getElementsByTagName('a')[0].style.color='#DD192F';
}

function mouseOut(obj)
{
	obj.style.backgroundColor='#D3D3D3';
	obj.getElementsByTagName('a')[0].style.color='#000000';
}