/*
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menutable");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="DIV") {
				node.onmouseover=function() {
					this.className+=" over";
  			}
  			node.onmouseout=function() {
  				this.className=this.className.replace(" over", "");
   			}
  		}
		}
	}
}
window.onload=startList;
*/
var agt=navigator.userAgent.toLowerCase();
var is_major = parseInt(navigator.appVersion);
var is_minor = parseFloat(navigator.appVersion);
var is_ie     = ((agt.indexOf("msie") != -1) && document.all && (agt.indexOf("opera") == -1));
var is_ie6    = (is_ie && (is_major == 4) && (agt.indexOf("msie 6.")!=-1) );

if (is_ie6) {
	document.writeln('<style>');
	document.writeln('#menutable UL { left:-7px; }');
	document.writeln('</style>');
}
