// DEFINE CLASS FOR MENU ITEMS
if(document.getElementById){
	// IE & MOZILLA
	//alert("IE / Mozilla");
	document.writeln("<style type=\"text/css\">");
	document.writeln(".menu       {display: none; margin-left: 0px}");
	document.writeln(".menuParent {}");
	document.writeln("</style>");
}else if(document.layers){
	// NS4
	//alert("NS4");
	x = Math.round((innerWidth - 20 - 775) / 2);
	document.writeln("<style type=\"text/css\">");
	document.writeln(".menu       {position: absolute; visibility: hidden; left : 130px; width : 180px;}");
	document.writeln(".menuParent {position: absolute; visibility: show; left : 130px; width : 180px;}");
	document.writeln("</style>");
}else{
	// OTHER
	//alert("Other");
	document.writeln("<style type=\"text/css\">");
	document.writeln(".menu       {display: none; margin-left: 20px}");
	document.writeln(".menuParent {}");
	document.writeln("</style>");
}
