// JavaScript Document
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";
		}
		lis[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("( ?|^)show\\b"), "");
		}
	}
}
