// JavaScript Document
	function swapImage(imageName,imageSrc){
		var obj = document.getElementById(imageName);
		obj.src = "images/"+imageSrc;	
	}