<!--
	var imlocation = "images/";
	function ImageArray (n) {
	   this.length = 2;
	   for (var i =1; i <= n; i++) {
	     this[i] = ' '
	   }
	}
	image = new ImageArray(7)
	image[0] = 'sunday1.gif'
	image[1] = 'monday1.gif'
	image[2] = 'tuesday1.gif'
	image[3] = 'wednesday1.gif'
	image[4] = 'thursday1.gif'
	image[5] = 'friday1.gif'
	image[6] = 'saturday1.gif'
	var currentdate = new Date();
	var imagenumber = currentdate.getDay();
	document.write('<img src="' + imlocation + image[imagenumber] + '" width=100% height=100%>');
	//-->
