<!-- 
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();

if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))		
year="19" + year;
if (navigator.appName == "Netscape")
year=1900 + year;
document.write(lmonth + " ");
document.write(date + ", " + year);

// this part is for the random images
var imagenumber = 15 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

if (rand1 == 15) {
	var rand2 = 1;
} else {
	var rand2 = rand1 + 1;
}
if (rand2 == 15) {
	var rand3 = 1;
} else {
	var rand3 = rand2 + 1;
}

images = new Array
images[1] = "images/dining_01.jpg"
images[2] = "images/house_01.jpg"
images[3] = "images/house_02.jpg"
images[4] = "images/kitchen_01.jpg"
images[5] = "images/office_01.jpg"
images[6] = "images/pool_01.jpg"
images[7] = "images/pool_02.jpg"
images[8] = "images/pool_03.jpg"
images[9] = "images/pool_04.jpg"
images[10] = "images/room_01.jpg"
images[11] = "images/room_02.jpg"
images[12] = "images/room_03.jpg"
images[13] = "images/room_04.jpg"
images[14] = "images/room_05.jpg"
images[15] = "images/sink_01.jpg"
var image01 = images[rand1]
var image02 = images[rand2]
var image03 = images[rand3]
// -->