function flipOnMouseOver(obj)
{
	obj.style.backgroundColor = "#FFFFFF";
}

function flipOnMouseOut(obj)
{
	obj.style.backgroundColor = "#EFEFEF";
}
