// JavaScript Document
$(document).ready( function() { 
							
	$("#imageGallery img").click( function() {
		
		var imageName = $(this).attr("rel");
		$("#selectedImage img").attr("src",imageName);
		
	});
	
});