var ua = new Array();
/* Detect browsers by object support: */
ua["dom"] = (typeof document.getElementById != "undefined");
ua["ns4"] = (typeof document.layers != "undefined");
ua["ie"] = (typeof document.all != "undefined");
ua["iemac"] = ua["ie"] && !(typeof self.screenTop != "undefined");
ua["iewin"] = ua["ie"] && !ua["iemac"];
ua["safari"] = ua["dom"] && !ua["ie"];//!document.all;
ua["moz"] = ua["dom"] && !ua["ie"] && !(typeof self.screenTop != "undefined");
ua["opera"] = ua["ie"] && !ua["iemac"] && (typeof self.screen.pixelDepth != "undefined");
ua["ie"] = ua["opera"] ? false : ua["ie"];
ua["iewin"] = ua["opera"] ? false : ua["iemac"] ? false : ua["iewin"];
ua["safari"] = ua["moz"] ? false : ua["safari"];

/* Last resort: detect browser versions by user agent string: */
ua["ns7"] = ua["moz"] && navigator.userAgent.indexOf("Netscape/7")!=-1;
ua["ns8"] = ua["moz"] && navigator.userAgent.indexOf("Netscape/8")!=-1;
ua["ff"] = ua["moz"] && navigator.userAgent.indexOf("Firefox")!=-1;
ua["ie5"] = ua["iewin"] && navigator.appVersion.indexOf("MSIE 5.0")!=-1;
ua["ie55"] = ua["iewin"] && navigator.appVersion.indexOf("MSIE 5.5")!=-1;
ua["ie6"] = ua["iewin"] && navigator.appVersion.indexOf("MSIE 6")!=-1;
ua["ie7"] = ua["iewin"] && navigator.appVersion.indexOf("MSIE 7")!=-1;
ua["iemac52"] = ua["iemac"] && navigator.userAgent.indexOf("MSIE 5.2")!=-1;
ua["iemac5"] = ua["iemac"] && !ua["iemac52"];