function nsHover()
{
	if(!document.layers) return;

	/*** define the link hover ***/
	document.tags.A.color          = "black";
	document.tags.A.fontSize       = "10pt"        // new font size onMouseOver

//	document.tags.A.fontWeight     = "bold"        // font weight onMouseOver
//	document.tags.A.backgroundColor= "green";
//	document.tags.A.textDecoration = "underline";  // add underline onMouseOver
//	document.tags.A.textDecoration = "none";       // remove underline onMouseOver
//	document.tags.A.fontStyle      = "italic"      // font style onMouseOver
//	document.tags.A.fontSize       = "40"          // new font size onMouseOver

	startHover();
}

