<!--
var currentdate=new Date()
var todayscontent=currentdate.getDay()
if (todayscontent==1)
document.write('<font class="indexheading">Monday Night Roster</font>')
else if (todayscontent==2)
document.write('<font class="indexheading">Tuesday Night Roster</font>')
else if (todayscontent==3)
document.write('<font class="indexheading">Wednesday Night Roster</font>')
else if (todayscontent==4)
document.write('<font class="indexheading">Thursday Night Roster</font>')
else if (todayscontent==5)
document.write('<font class="indexheading">Friday Night Roster</font>')
else if (todayscontent==6)
document.write('<font class="indexheading">Saturday Night Roster</font>')
else
document.write('<font class="indexheading">Sunday Night Roster</font>')
//-->