function imageSwap(image_id,new_path){
	image_obj = document.getElementById(image_id);
	image_obj.src = new_path;
}

