// JavaScript <!--var months = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");var days = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");var thisIsToday = new Date();var todayString = days[thisIsToday.getDay()]+" "+thisIsToday.getDate()+" "+months[thisIsToday.getMonth()]					+" "+thisIsToday.getFullYear();function showMenu() {	document.getElementById("menu").style.visibility = "visible";}function hideMenu() {	document.getElementById("menu").style.visibility = "hidden";}function showImage(theHeading, theImage) {	document.getElementById("displayImage").src = theImage;	document.getElementById("displayHeading").firstChild.nodeValue = theHeading;}function changeBackground(theID) {	document.getElementById(theID).style.backgroundColor = "#ce9898";}function restoreBackground(theID) {	document.getElementById(theID).style.backgroundColor = "#d4d2d2";}//-->