function OnMouseOver(obj)
{
//	obj.style.backgroundColor='Black';
   obj.oldColor = obj.style.color;
	obj.style.color='RED';
	obj.style.cursor="Hand";
   obj.src =new image("/images/menuopbgb.bmp");
}

function OnMouseOut(obj)
{
//	obj.style.backgroundColor='White';
   obj.style.color = obj.oldColor;
}
