function setDate()
{
	var isnMonth = new Array ("january.jpg", "february.jpg","march.jpg","april.jpg","may.jpg","june.jpg", "july.jpg","august.jpg","septerber.jpg",  "october.jpg","november.jpg","december.jpg");
	var isnDay = new Array("sunday.jpg","monday.jpg","tuesday.jpg","wednesday.jpg","thursday.jpg","friday.jpg","saturday.jpg","sunday.jpg");

	var atoday = new Date () ;
	var day = atoday.getDate() ;

	var year = atoday.getYear();

		if (year < 1000)
  	year+=1900



	document.images.Month.src = "images/date/" + isnMonth[atoday.getMonth()]
	document.images.Day.src = "images/date/" + isnDay[atoday.getDay()]
	document.images.DayNum.src = "images/date/" + day + ".jpg";
	document.images.Year.src = "images/date/" + year + ".jpg";

}
