/* PCF - Calendar ScriptsAuthor: Daniel Marino*/function highlight_today() {      var now = new Date();      var z = "m" + (now.getMonth()+1) + "d" + now.getDate();      if(document.getElementById(z)) {         document.getElementById(z).className = "pc_calendar_day_today";      }   }function MM_jumpMenu(targ,selObj,restore){ //v3.0  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  if (restore) selObj.selectedIndex=0;}/* IE Hack to fix the rollovers (Modified Suckerfish Method)------------------------------------------------------------------------------*/sfHover = function() {	var sfEls = document.getElementById("pc_calendar").getElementsByTagName("LI");	for (var i=0; i<sfEls.length; i++) {		sfEls[i].onmouseover=function() {			this.className+=" over";		}		sfEls[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" over\\b"), "");		}	}}if (window.attachEvent) window.attachEvent("onload", sfHover);