//}EX
function mouseOver(obj,color,fontStyle,fontWeight,fontSize)
{
	obj.style.Color = color;
	obj.style.fontStyle = fontStyle;
	obj.style.fontWeight= fontWeight;
	obj.style.fontSize= fontSize;
	
}

function mouseIn(obj,fontcolor)
{
	obj.style.color = fontcolor;
	obj.style.fontStyle = "italic";
	obj.style.fontWeight= "bold";
	obj.style.fontSize= "small";
	
}

function mouseOut(obj,fontcolor)
{
	obj.style.color = fontcolor;
	obj.style.fontStyle = "normal";
	obj.style.fontWeight= "normal";
	obj.style.fontSize= "x-small";
	
}
