$(document).ready(
	function() {
		$('.imgGall').click(
			function(){
				var getThisImg = $(this).attr('src');
				var altText = $(this).attr('title');
				var imgTemp = "<img src=\""+getThisImg+"\"><br><b>"+altText+"</b>";
				$('#disImg').html(imgTemp).hide().fadeIn('slow');
			}
		);
	}
);