// JavaScript Document

cssdropmenu = function() {
	var hovers = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<hovers.length; i++) {
		hovers[i].onmouseover=function() {
			this.className+=" itemhover";
		}
		hovers[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" itemhover"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", cssdropmenu);
