<!--
function startList(elementID) {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById(elementID);
		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", ""); }
   			}
  		}
 	}
}

//window.onload= function(){
//	startList();
	// add startList2(); IF you have another dropdown menu
	// you can also add additional onLoad functions after the initial startList();
	// ex. add MM_preloadImages(); this will avoid the error of the drop down not working
// to add a second drop down menu you'll need another instance of the above funtion startList(), but you need to call it a different name, ex. funtion startList2(). You will also need to give it a unique ID, ex. navRoot = document.getElementById("navList2");
//}

window.onload= function(){
	startList("navList");
//	startList("navList2");
}
//-->
<!-- Add This To Main.js -->
<!--
  function GetDay(intDay){
    var DayArray = new Array("Sunday", "Monday", "Tuesday", "Wednesday", 
                         "Thursday", "Friday", "Saturday")
    return DayArray[intDay]
    }

  function GetMonth(intMonth){
    var MonthArray = new Array("January", "February", "March",
                               "April", "May", "June",
                               "July", "August", "September",
                               "October", "November", "December") 
    return MonthArray[intMonth] 	  	 
    }
  function getDateStrWithDOW(){
    var today = new Date()
    var year = today.getYear()
    if(year<1000) year+=1900
    var todayStr = GetDay(today.getDay()) + ", "
    todayStr += GetMonth(today.getMonth()) + " " + today.getDate()
    todayStr += ", " + year
    return todayStr
    }
//-->