<!--
// this script instantiates the mouseover effect in the nav
function styleSwitch(i, j){
 if (document.all){
  var bg="";
  if (j==1) bg = "#4d535c";
  else bg = ""
  eval("document.all."+i+".style.backgroundColor = bg");
 }
}	


// Array of month Names
var monthNames = new Array(
"January","February","March","April","May","June","July","August","September","October","November","December");
var now = new Date();
var theYear = now.getYear()	//use getYear() method for backward compatibility
		
if (theYear < 2000) {
	theYear += 1900;
}

//-->
