function msover(object)
{
if (typeof(object.style) != 'undefined') 
	{
	object.style.backgroundColor = '#90B6E6';
	object.style.cursor = 'hand';
	object.style.fontWeight="bold";
	}
return true;
}

function msout(object)
{
if (typeof(object.style) != 'undefined')
	{
	object.style.backgroundColor = '';
	object.style.cursor = 'default';
	object.style.fontWeight="normal";

	}
}

