<!--

// Get Gate and time and make a comment about which day it is 

/* 
Comment 
many 
lines 
in 
JavaScript
*/

//get date
var d=new Date()

var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")

theDay=d.getDay()
switch (theDay)
{
	case 5:
		document.write("Finally Friday" + " - ")
	break
	case 6:
		document.write("Super Saturday" + " - ")
	break
	case 0:
		document.write("Sleepy Sunday" + " - ")
	break
	case 1:
		document.write("Miserable Monday" + " - ")
	break
	case 2:
		document.write("Busy Tuesday" + " - ")
	break
	case 3:
		document.write("Busy Wednesday" + " - ")
	break
	case 4:
		document.write("Tomorrow is Friday!" + " - ")
	break

	default:
                document.write(weekday[d.getDay()] + " - ")
}


var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear() + " - ")


// get time
var d = new Date()

if(d.getHours() < 10 ) {
			document.write("0")
			}
document.write(d.getHours())
document.write(":")
if(d.getMinutes() < 10 ) {
			document.write("0")
			}
document.write(d.getMinutes())
document.write(":")
if(d.getSeconds() < 10 ) {
			document.write("0")
			}
document.write(d.getSeconds())

/* To preload a image
PreImage1=newImage(88,31);
PreImage1.src="Image2.gif";
*/

-->

