



// IE 6 li pseudoclass for Bill's dumb browser...

if (navigator.userAgent.indexOf("MSIE") != -1) {
	var IENAV=(navigator.userAgent).split("; Windows");
	IENAV = IENAV[0].split(" MSIE")
	if(IENAV[1]<7.0){
		var currTab = document.getElementById("tabmenu_ul");
		var tabLis = currTab.getElementsByTagName("LI"); 
		for (i=0; i<tabLis.length; i++) {
			if(tabLis[i].className!="current"){
				tabLis[i].onmouseover=function() {	
					this.className="current_hover";
					this.childNodes[0].className="tab_hover";
					var theAnc = this.getElementsByTagName("A"); 
					theAnc[0].className="tab_hover";
				}
				tabLis[i].onmouseout=function() {	
					this.className="";
					var theAnc = this.getElementsByTagName("A"); 
					theAnc[0].className="";
				}	
			}
		}
	}
}




































