// JavaScript Document
var locationsCT = new Image()
locationsCT.src = "images/locations_ct.jpg"
var locationsNJ = new Image()
locationsNJ.src = "images/locations_nj.jpg"
var locationsNY = new Image()
locationsNY.src = "images/locations_ny.jpg"
var locationsDE = new Image()
locationsDE.src = "images/locations_de.jpg"
var locationsMD = new Image()
locationsMD.src = "images/locations_md.jpg"
var locationsPA = new Image()
locationsPA.src = "images/locations_pa.jpg"

// Replaces an image with the specified image preloaded above
function Roll(theObject) {
	var theSrc = eval(theObject + ".src");
	document.getElementById('locations').src = theSrc
}

// Replaces the src of an image
function RollOut(imageName) {
	document.images['locations'].src=imageName
}