// JavaScript Document
window.onload = function() {
	var sublis = document.getElementById("MainNavTable").getElementsByTagName("td");
	for(var i=0; i<sublis.length; i++){
		sublis[i].onmouseover=function(){
			this.className+=(this.className.length>0?" ":"") + "show";
		}
		sublis[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("( ?|^)show\\b"), "");
		}
	}
	
	var subliss = document.getElementById("TwoLinks").getElementsByTagName("li");
	for(var i=0; i<subliss.length; i++){
		subliss[i].onmouseover=function(){
			this.className+=(this.className.length>0?" ":"") + "show";
		}
		subliss[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("( ?|^)show\\b"), "");
		}
	}
}


