// JavaScript Document
function mOver(val)
{
	document.getElementById(val).className = "topNavHover";
}
function mOut(val)
{
	document.getElementById(val).className = "topNav";
}
