
function mouseStyle(ob)
{
var thecolor = "#ff0000";
if (ob.cl) {thecolor = ob.cl;}
if (ob.style.color == thecolor) {ob.style.color = "";ob.style.backgroundColor = "";}
else {ob.style.color = thecolor;if (ob.bg) {ob.style.backgroundColor = ob.bg;}}
}

