$(document).ready(function(){ 
	$('#thumbs a').click( function(e) {
		e.preventDefault();
		var pic = this.hash;
		pic = pic.replace("#",""); 
		$('#activeImage li').hide();
		$('#pic' + pic).show();
		var alt = $('#pic' + pic).find('img').attr("alt");
		$('#photoGallery h5').empty().append(alt);
	});
});