AboutOff = new Image

AboutOver = new Image

AboutOff.src = "Images/About_off.png"

AboutOver.src = "Images/About_over.png"

function imgOver(thisImg) {
	document[thisImg].src = "Images/" + thisImg + "_over.png"
}

function imgOut(thisImg) {
	document[thisImg].src = "Images/" + thisImg + "_off.png"
}

