<script type="text/javascript"><!--
var imlocation = "images/";
function ImageArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
image = new ImageArray(7);
image[0] = 'Sunday.PNG';
image[1] = 'Monday.PNG';
image[2] = 'Tuesday.PNG';
image[3] = 'Wednesday.PNG';
image[4] = 'Thursday.PNG';
image[5] = 'Friday.PNG';
image[6] = 'Saturday.PNG';
var currentdate = new Date();
var imagenumber = currentdate.getDay();
document.write('<img src="' + imlocation + image[imagenumber] + '">');
//--></script>
Each image was saved in the "images" folder and appears there. Anyone have any ideas or suggestions?
Booth Kates
Patience...Persistence...Practice
http://www.boothkates.com
http://www.susiekatesdesigns.com
http://www./paradisecovemarinahs.com
http://www.thehillsab.com
Patience...Persistence...Practice
http://www.boothkates.com
http://www.susiekatesdesigns.com
http://www./paradisecovemarinahs.com
http://www.thehillsab.com