window.onload = function() {
	var lis = document.getElementById("nav").getElementsByTagName("li");
	for(var i=0; i<lis.length; i++){
		lis[i].onmouseover=function(){
			this.className+=(this.className.length>0?" ":"") + "show";
			if(this.getElementsByTagName("li").length>0){
				this.getElementsByTagName("ul")[0].style.width = this.offsetWidth - 1 + "px";
				this.getElementsByTagName("li")[this.getElementsByTagName("li").length-1].style.background = "none";
			}
		}
		lis[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("( ?|^)show\\b"), "");
		}
	}
}
