LocationOff = new Image

LocationOver = new Image

LocationOff.src = "Images/Location_off.png"

LocationOver.src = "Images/Location_over.png"

function imgOver(thisImg) {
	document[thisImg].src = "Images/" + thisImg + "_over.png"
}

function imgOut(thisImg) {
	document[thisImg].src = "Images/" + thisImg + "_off.png"
}

