﻿
//$Workfile: crudotcom_menu.js $
//$Author: Mccusker $
//$Date: 7/27/07 10:27a $
//$Revision: 3 $
//$Header: /WebSites/library/javascript/general/crudotcom_menu.js 3     7/27/07 10:27a Mccusker $ $/




function startList() {

	if (document.getElementById){
		var navRoot=document.getElementById("nav");
		
		if(navRoot!=null){
			for(i=0;i<navRoot.childNodes.length;i++){
				var node=navRoot.childNodes[i];
				//if(node.nodeName=="LI"){
					node.onmouseover=function(){this.className+=" over";}
					node.onmouseout=function(){this.className=this.className.replace(" over","");}
									
				//}
			}
		}
	}
}
