<!--
function jtHover() {
	    var tabs=document.getElementById("tabs").getElementsByTagName("li");
	    for (var t=0; t < tabs.length; t++) {
		tabs[t].onmouseover = function() {
		    this.className += " jthover";
		}
		tabs[t].onmouseout = function() {
		    this.className = this.className.replace(new RegExp(" jthover\\b"),"");
		}
	    }
	}
	if (window.attachEvent) window.attachEvent("onload",jtHover);       
//-->
<!--
function jtHover2() {
	    var subs=document.getElementById("subs").getElementsByTagName("li");
	    for (var t=0; t < subs.length; t++) {
		subs[t].onmouseover = function() {
		    this.className += " jthover";
		}
		subs[t].onmouseout = function() {
		    this.className = this.className.replace(new RegExp(" jthover\\b"),"");
		}
	    }
	}
	if (window.attachEvent) window.attachEvent("onload",jtHover2);       
//-->
