homeOff = new Image
propertshopOff = new Image
contactusOff = new Image
linksOff= new Image
historyOff = new Image
staffOff = new Image


homeOver = new Image
propertshopOver = new Image
contactusOver = new Image
linksOver= new Image
historyOver = new Image
staffOver = new Image

largepropertyshopOff=new Image
largepropertyshopOver=new Image

homeOff.src = "./images/homeoff.png"
homeOver.src = "./images/homeoff.png"
propertyshopOff.src = "./images/propertyshopoff.png"
propertyshopOver.src = "./images/propertyshopover.png"
contactusOff.src = "./images/contactusoff.png"
contactusOver.src = "./images/contactusover.png"
linksOff.src = "./images/linksoff.png"
linksOver.src = "./images/linksover.png"
historyOff.src = "./images/historyoff.png"
historyOver.src = "./images/historyover.png"
staffOff.src = "./images/staffoff.png"
staffOver.src = "./images/staffover.png"

largepropertyshopOff.src = "./images/largepropertyshopoff.png"
largepropertyshopOver.src = "./images/largepropertyshopover.png"

now=new Date

dayName=new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
monName=new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")


function imgOver(thisImg) {
	document[thisImg].src = "./images/" + thisImg + "over.png"
}

function imgOut(thisImg) {
	document[thisImg].src = "./images/" + thisImg + "off.png"
}

function newWindow(bookfile) {

		leftPos=50;
		wid=600;
		high=600;
		if (screen)
		{		wid=screen.width*0.75
				high=screen.height*0.65
		}
		bookWindow=window.open(bookfile,"bookWin","resizable=yes,scrollbars=yes,height="+high+",width="+wid+",left="+leftPos+",top=50");

		bookWindow.focus()
}
