function items()

{
 	var date = new Date();
	var day  = date.getDay();

	var items=new Array()

	items[0]="Sunday, the office is closed today"
	items[1]="Monday, the office is closed today"
	items[2]="Tuesday, the office is open from 9.30 till noon"
	items[3]="Wednesday, the office is open from 9.30 till noon"
	items[4]="Thursday, the office is open from 9.30 till noon"
	items[5]="Friday, the office is open from 9.30 till noon"
	items[6]="Saturday, the office is closed today"
	
	document.write(items[day])
}

/*
{
 	var date = new Date();
	var day  = date.getDay();

	var items=new Array()

	items[0]="Sunday, the office is closed today"
	items[1]="Monday, the office is closed today"
	items[2]="Tuesday, the office is closed today"
	items[3]="Wednesday, the office is closed today"
	items[4]="Thursday, the office is closed today"
	items[5]="Friday, the office is open from 9.30 till noon"
	items[6]="Saturday, the office is closed today"
	
	document.write(items[day])
}
 */
