// JavaScript Document
// toggle images


	var CurrentImage
	
	function setCurrentImage(whatImage){
	
		CurrentImage = whatImage
		//alert(CurrentImage)
	
	}
	

	function showImage(whatImage){
		
		//turn off the old one
		document.getElementById(CurrentImage).style.display = "none"
		
		document.getElementById(whatImage).style.display = "block"
		
		CurrentImage = whatImage
		
		
	}
