/**
	This script is based on an idea found at
	http://alistapart.com/articles/dropdowns/
	@author Josh Bryan <josh.bryan@gmail.com>
	@copyrignt 2007 National Runaway Switchboard
**/

startList = function() {
	if (document.all&&document.getElementsByTagName) {
		lis = document.getElementsByTagName("ul");
		for (i=0; i<lis.length; i++) {			
			if (lis[i].className.match(/jmenu/))
			{
				for (j=0; j<lis[i].childNodes.length; j++)
				{
					node = lis[i].childNodes[j];
					if (node.nodeName=="LI") {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}
	}
}
window.onload=startList;





