// JavaScript Document

// I've turned off this function currentllyThis function opens a new window for the google map url and controls the window's appearance.
//function googlemap()
//{
//window.open("http://maps.google.com/maps/ms?ie=UTF8&hl=en&om=1&msa=0&msid=114964776488610519375.000437ebe7c091f386c90&ll=45.41851,-75.701852&spn=0.008465,0.018046&z=16","_blank","toolbar=no, location=no, directories=no status=no menubar=no scrollbars=no, resizable=no, copyhistory=no, width=863, height=600")
//}

//This function shows the current date using the words for the day of the week and the name of the month.
function today()

{
var d=new Date()
var weekday=new Array(7)
var month=new Array(12)

weekday[0]="Sunday"
weekday[1]="Monday"
weekday[2]="Tuesday"
weekday[3]="Wednesday"
weekday[4]="Thursday"
weekday[5]="Friday"
weekday[6]="Saturday"

month[0]="January"
month[1]="February"
month[2]="March"
month[3]="April"
month[4]="May"
month[5]="June"
month[6]="July"
month[7]="August"
month[8]="September"
month[9]="October"
month[10]="November"
month[11]="December"

document.write("Welcome to our web site on this " + weekday[d.getDay()] + ", " + month[d.getMonth()] + " " + d.getDate()+ ", " + d.getFullYear() + ".") 
}


//This is to display and to hide the whyclarkenolan gif

function mouseover()
{ 
document.why1.src="images/whyclarkenolan3.gif"
}
function mouseout()
{
document.why1.src="images/BarbandDick3.jpg"
}





			 
