<!-- Hide from incompatible browsers
	
	//Initialize all images to be swapped
	if(document.images){
	    canus = new Image
		canus.src = "images/mapmain.gif"
		
		man = new Image
		man.src = "images/mapmanitoba.gif"
		
		ont = new Image
		ont.src = "images/mapontario.gif"

		alb = new Image
		alb.src = "images/mapalberta.gif"
				
		del = new Image
		del.src = "images/mapdelaware.gif"
		
		mland = new Image
		mland.src = "images/mapmaryland.gif"
		
		newj = new Image
		newj.src = "images/mapnewjersey.gif"
		
		penn = new Image
		penn.src = "images/mappenn.gif"
		
		va = new Image
		va.src = "images/mapvirginia.gif"
	}


	
	//Swap image on the screen with one on file
	function swapImage(imgField,newImg){
		if(document.images){
			document[imgField].src=eval(newImg + ".src")
		}
	}

			
	// Stop hiding from incompatible browsers-->
	
