// menu_back image size 540x137

// Week Of The Day Image Displayer script- By JavaScript Kit (www.javascriptkit.com) More free scripts here 

var mon_img="img/_menu_images_/menu_back01.jpg"
var tue_img="img/_menu_images_/menu_back02.jpg"
var wed_img="img/_menu_images_/menu_back03.jpg"
var thu_img="img/_menu_images_/menu_back04.jpg"
var fri_img="img/_menu_images_/menu_back05.jpg"
var sat_img="img/_menu_images_/menu_back06.jpg"
var sun_img="img/_menu_images_/menu_back07.jpg"

var mydate=new Date()
var today=mydate.getDay()

document.write('<P ALIGN=center>')
document.write('<TABLE width=540 height=137>')
document.write('<TR>')

// generate appropriate <TD> line

     if (today==1) document.write('<TD valign=top background="'+mon_img+'">')
else if (today==2) document.write('<TD valign=top background="'+tue_img+'">')
else if (today==3) document.write('<TD valign=top background="'+wed_img+'">')
else if (today==4) document.write('<TD valign=top background="'+thu_img+'">')
else if (today==5) document.write('<TD valign=top background="'+fri_img+'">')
else if (today==6) document.write('<TD valign=top background="'+sat_img+'">')
else               document.write('<TD valign=top background="'+sun_img+'">')

document.write('	<FONT SIZE=6 color="007305">ELLEN</FONT>')
document.write('	<FONT SIZE=7>VON UNWERTH</FONT>')
document.write('	<BR><BR>')
document.write('	<FONT SIZE=4>compiled by William McFadden</FONT>')
document.write('	<BR>')
document.write('	<FONT SIZE=2>')
document.write('	<BR>')
document.write('	home | ')
document.write('	<A HREF=history.htm>site history</A> | ')
document.write('	<A HREF=resources.htm>resources</A> | ')
document.write('	<A HREF=about.htm>about this site</A> | ')
document.write('	<A HREF=identify.htm>help me identify</A>')
document.write('	</FONT>')
document.write('</TD>')
document.write('</TR>')
document.write('</TABLE>')
document.write('</P>')



