//JavaScript Document Developed by Seo-semantic-xhtml

startList = function() {
	
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
 
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
			node.onmouseout=function() {
				this.className=this.className.replace("over", "");			
			}
		}
	}   
  } 
  
  
nav_menuRoot = document.getElementById("nav_menu");

	for (j=0; j<nav_menuRoot.childNodes.length; j++) {
		menu_node = nav_menuRoot.childNodes[j];
			if (menu_node.nodeName=="LI") {
				menu_node.onmouseover=function() {
					this.className+=" over";
				}
			menu_node.onmouseout=function() {
				this.className=this.className.replace("over", "");			
			}
		}
	}
	
	
}
window.onload=startList;

