<!--
// Create image objects, preload all active and inactive images.
{ 
	var last = "gal1"
	gal10 = new Image(); gal10.src = "images/gal10.jpg";
	gal20 = new Image(); gal20.src = "images/gal20.jpg";
	gal30 = new Image(); gal30.src = "images/gal30.jpg";
 
	 
	
	gal11 = new Image(); gal11.src = "images/gal11.jpg";
	gal21 = new Image(); gal21.src = "images/gal21.jpg";
	gal31 = new Image(); gal31.src = "images/gal31.jpg";
	 
	
	gallery = new Image(); gallery.src = "images/gallery1.jpg";
	gal1large = new Image(); gal1large.src = "images/gallery1.jpg";
	gal2large = new Image(); gal2large.src = "images/gallery2.jpg";
	gal3large = new Image(); gal3large.src = "images/gallery3.jpg";
	 
	
	 		
		

}


// Function to "activate" images.
function over2(imgName) {
	document[last].src = eval(last + "0.src");
	document[imgName].src = eval(imgName + "1.src");
	document.gallery.src = eval(imgName + "large.src");

}

// Function to "deactivate" images.
function out2(imgName) {
	 last = imgName;
}
 //-->
 
 
 
