// browser detection
bDOM = (document.getElementById) ? true : false;
bNS4 = (document.layers) ? true : false;
bIE  = (document.all) ? true : false;
bIE4 = bIE && !bDOM;
bMAC = (navigator.appVersion.indexOf("Mac") != -1);
		
// generate style used for horizontal menu
menuStyle = "<style type=\"text/css\" media=\"screen\"><!--";
menuStyle += ".mastheadtitle{color:white;font-family:Arial,sans-serif;font-size:28pt;font-weight: bold;}";
menuStyle += ".mastheadsubtitle {color:white;font-family:Verdana,sans-serif;font-size:10pt;font-weight:bold;}";
menuStyle += "a.mastheadsubtitle{color:white;text-decoration:";
if (bNS4) { menuStyle += "underline;color:yellow;}"; }
else { menuStyle += "none;}a.mastheadsubtitle:hover,a.mastheadsubtitle:active{text-decoration:underline;color:yellow;}"; }
menuStyle += "--></style>";

// write the style
document.writeln(menuStyle);

