// JavaScript Document
startList = function(){

	var navRoot = document.getElementById("verticalnav").getElementByTagName("LI");
	for(var i = 0;i<navRoot.length;i++){
			navRoot[i].onmouseover=function(){
				this.className+=" over";
			}
		
		
		navRoot[i].onmouseout=function(){
				this.className=this.className.replace(new RegExp(" over"), "");
			}
			
		}
}
if(window.attachEvent) window.attachEvent("onload", startList);
