<!--
/*
PUPWebSite Panel v2.0
2004-11-17 Changed the function lines 07-25 to accomodate IE, Netscape, Mozilla FireFox
*/

function changeColors(eItem){ //NavMOver
	eItem.className='pnophov';
	eItem.childNodes[1].style.color = '#F18822';
	self.status=eItem.childNodes[1].href;
}

function restoreColors(eItem){ //NavMOut
	eItem.className='pnop';
	eItem.childNodes[1].style.color = '';
	self.status='';
}

function NavMDown(eItem){
	findTag(eItem).style.color="#6699CC"
}

function NavMUp(eItem){
	location = eItem.childNodes[1].href
}

function todayis(xcolor)
{
var months=new Array(13);
months[1]="january";
months[2]="february";
months[3]="march";
months[4]="april";
months[5]="may";
months[6]="june";
months[7]="july";
months[8]="august";
months[9]="september";
months[10]="october";
months[11]="november";
months[12]="december";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
xday = new Array("sunday","monday","tuesday","wednesday","thursday","friday","saturday")
myday = time.getDay();
if (year < 2000)    
year = year + 1900;

document.write("<b>");
document.write(xday[myday] + " : " + lmonth + "&nbsp;" + date);
document.write("&nbsp;&nbsp;&nbsp; </b>");
}

//-->
  