var date = new Date();
var month, year, day, suffix, fontb, fonte, pad;

whichmonth = new Array
whichmonth[0] ="January";
whichmonth[1] ="February";
whichmonth[2] ="March";
whichmonth[3] ="April";
whichmonth[4] ="May";
whichmonth[5] ="June";
whichmonth[6] ="July";
whichmonth[7] ="August";
whichmonth[8] ="September";
whichmonth[9] ="October";
whichmonth[10] ="November";
whichmonth[11] ="December";

if ((date.getDate() == 1) | (date.getDate() == 21) | (date.getDate() == 31))
	suffix = "st";

else if ((date.getDate() == 2) | (date.getDate() == 22))
	suffix = "nd";

else if ((date.getDate() == 3) | (date.getDate() == 23))
	suffix = "rd";

else suffix = "th";

fontb= "<span class='whichdate'>";

fonte= "</span>";

pad="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"

day= (fontb + pad + pad + whichmonth[date.getMonth()] + " " + date.getDate() + suffix + ", " + date.getYear() + fonte);

tagset1 = '<td valign="middle" align="center" nowrap><a href="'
tagset2 = '.htm" class="mlink">&nbsp;&nbsp;&nbsp;'
tagset3 = '&nbsp;&nbsp;&nbsp;</a></td>'

whichmen = new Array
whichmen[1] =tagset1 + sectionhead[1] + tagset2 + sectionhead[1] +tagset3;
whichmen[2] =tagset1 + sectionhead[2] + tagset2 + sectionhead[2] +tagset3;
whichmen[3] =tagset1 + sectionhead[3] + tagset2 + sectionhead[3] +tagset3;
whichmen[4] =tagset1 + sectionhead[4] + tagset2 + sectionhead[4] +tagset3;
whichmen[5] =tagset1 + sectionhead[5] + tagset2 + sectionhead[5] +tagset3;
whichmen[6] =tagset1 + sectionhead[6] + tagset2 + sectionhead[6] +tagset3;
whichmen[whichsection] = tagset1 + sectionhead[whichsection] + '.htm" class="mlink" style="background-color: #ffffff">&nbsp;&nbsp;&nbsp;' + sectionhead[whichsection] + tagset3;


document.write ('<div align="right"> <table border="0" cellpadding="2" cellspacing="0" style="margin-top: 12px"> <tr>')
document.write ('<td valign="middle" align="right" nowrap>'+ day + '&nbsp;</td>')
document.write ( whichmen[1] )
document.write ( whichmen[2] )
document.write ( whichmen[3] )
document.write ( whichmen[4] )
document.write ( whichmen[5] )
document.write ( whichmen[6] )
document.write ('</tr> </table> </div> ')