var csIncludeDir = "./includes/menu2";
var csFallBackFile = "fallback.js";
var csIE4File = "ie4.js";
var csIE5File = "ie5.js";
var csIE6File = "ie6.js";
var csNN4File = "nn4.js";
var csNN6File = "nn6.js";
var csMoz1File = "moz1.js";
var csOp7File = "op7.js";

function csBrowserInfo()
{
	var csAppName = String(navigator.appName);
	var csAppVer = String(navigator.appVersion);
	var csPlatform = String(navigator.platform);
	var csUserAgent = String(navigator.userAgent);
	var csVendor = String(navigator.vendor);
	var csProduct = String(navigator.product);
	if(csUserAgent.indexOf("Opera/7") > -1 || csUserAgent.indexOf("Opera 7") > -1)
		return 7;
	else if(csUserAgent.indexOf("Opera") > -1 || csUserAgent.indexOf("WebTV") > -1)
		return 0;
	else if(csUserAgent.indexOf("MSIE 4") > -1 && csPlatform != "MacPPC")
		return 1;
	else if(csUserAgent.indexOf("MSIE 5") > -1)
		return 2;
	else if(csUserAgent.indexOf("MSIE 6") > -1)
		return 5;
	else if(csVendor == "Netscape6")
		return 4;
	else if(csProduct == "Gecko")
		return 6;
	else if(csAppName == "Netscape")
	{
		if(parseFloat(csAppVer) >= 4.06 && parseFloat(csAppVer) < 5)
			return 3;
		else
			return 0;
	}
	else
		return 0;
}
var csBrowserType = csBrowserInfo();
document.write("<style type=\"text/css\">\r\n.menu2Buttons{position:relative;background-color:;padding:0px;width:100%;cursor:default;}\r\n.menu2InnerBorder{background-color:;padding:0px;width:100%;}\r\n.menu2Button{background-color:;border-top: solid  1px;border-left: solid  1px;border-bottom: solid  1px;border-right: solid  1px;padding-top:4px;padding-bottom:4px;padding-left:3px;padding-right:7px;}\r\n.menu2ButtonFont{color:#415A68;font-family: Verdana, Arial, Helvetica;font-size:11;font-style:normal;text-decoration:none;font-weight:;}\r\n.menu2NNBtnTxt{color:#415A68;font-family: Verdana, Arial, Helvetica;font-size:11;font-style:normal;text-decoration:none;font-weight:;text-align:left;padding-top:4px;padding-bottom:4px;padding-left:3px;padding-right:7px;}\r\n.menu2Item {font-family:\"MS Sans Serif\", Arial, Helvetica, Tahoma, sans-serif; font-size:8; font-weight:normal; font-style:normal; color:#415A68; text-decoration:none; padding:5 7 5 7}\r\n.menu2ItemOn {font-family:\"MS Sans Serif\", Arial, Helvetica, Tahoma, sans-serif; font-size:8; font-weight:normal; font-style:normal; color:#ffffff; text-decoration:none; padding:5 7 5 7}\r\n.menu2Expand {cursor:default}\r\n.menu2PopupBox {cursor:default; position:absolute; left:-500; display:none; z-index:1999}\r\n.menu2Disabled {color:#808080}\r\n</style>");
document.write("<script language=\"JavaScript\" type=\"text/javascript\" src=\"");
if(csBrowserType == 0)
	document.write(csIncludeDir + "/" + csFallBackFile);
else if(csBrowserType == 1)
	document.write(csIncludeDir + "/" + csIE4File);
else if(csBrowserType == 2)
	document.write(csIncludeDir + "/" + csIE5File);
else if(csBrowserType == 3)
	document.write(csIncludeDir + "/" + csNN4File);
else if(csBrowserType == 4)
	document.write(csIncludeDir + "/" + csNN6File);
else if(csBrowserType == 5)
	document.write(csIncludeDir + "/" + csIE6File);
else if(csBrowserType == 6)
	document.write(csIncludeDir + "/" + csMoz1File);
else if(csBrowserType == 7)
	document.write(csIncludeDir + "/" + csOp7File);
else
	document.write(csIncludeDir + "/" + csFallBackFile);
document.write("\"></script>");
