function photooftheday() {
today = new Date()
day = today.getDay()
photooftheday = new Array()
photooftheday[0] = new Array("../jpegs/minis/BelugaWhale1_PD.jpg", "Beluga Whale at the Vancouver Aquarium")
photooftheday[1] = new Array("../jpegs/minis/neuesrathaus_2.jpg", "Neues Rathaus, or new town hall, Munich")
photooftheday[2] = new Array("../jpegs/minis/FromHelicopter5_PD.jpg", "Horseshoe Falls at Niagara")
photooftheday[3] = new Array("../jpegs/minis/civilisation4_2.jpg", "Museum of Civilisation, Ottawa")
photooftheday[4] = new Array("../jpegs/minis/SkylineFromIslands2_PD.jpg", "Toronto skyline from the islands")
photooftheday[5] = new Array("../jpegs/minis/snow2_2.jpg", "Snow falling over central Scotland")
photooftheday[6] = new Array("../jpegs/minis/Floatplane3000ftUp_PD.jpg", "Floatplane on a lake 3000ft up in the Whistler alps")
document.write("<IMG SRC="+photooftheday[day][0]+" ALIGN='bottom' ALT='Photo of the day' vspace='2' hspace='3'>")
document.write("<H2>"+photooftheday[day][1]+"</H2>")
}
