function rollIn(obj)
{
	obj.style.textDecorationUnderline = true;
}
function rollOut(obj)
{
	obj.style.textDecorationUnderline = false;
}
