
var mondayimg="<a href=javascript:enlargefeatured('featured01');><img src=images/featured/thumps/featured01.gif border=0></a>"
var tuesdayimg="<a href=javascript:enlargefeatured('featured02');><img src=images/featured/thumps/featured02.gif border=0></a>"
var wednesdayimg="<a href=javascript:enlargefeatured('featured03');><img src=images/featured/thumps/featured03.gif border=0></a>"
var thursdayimg="<a href=javascript:enlargefeatured('featured04');><img src=images/featured/thumps/featured04.gif border=0></a>"
var fridayimg="<a href=javascript:enlargefeatured('featured05');><img src=images/featured/thumps/featured05.gif border=0></a>"
var saturdayimg="<a href=javascript:enlargefeatured('featured06');><img src=images/featured/thumps/featured06.gif border=0></a>"
var sundayimg="<a href=javascript:enlargefeatured('featured07');><img src=images/featured/thumps/featured07.gif border=0></a>"
var mydate=new Date()
var today=mydate.getDay()
if (today==1)
document.write(mondayimg)
else if (today==2)
document.write(tuesdayimg)
else if (today==3)
document.write(wednesdayimg)
else if (today==4)
document.write(thursdayimg)
else if (today==5)
document.write(fridayimg)
else if (today==6)
document.write(saturdayimg)
else
document.write(sundayimg)

