// JavaScript Document

var subnav =document.getElementsByTagName("td");
for( i=0; i<subnav.length; i++){
	subnav[i].onmouseover = function(){
		this.className = "show";
	}
	subnav[i].onmouseout = function(){
		this.className = "";
	}
}
