$(document).ready(function() {
		
		// artwork gallery functionality
		$("p.moreInfoStyle").append('<p></p>')   // IF YOU WANT TITLE FOR EACH IMAGE USE THIS

	$(".thumbs a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("moreInfo");
	
	
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("p.moreInfoStyle p").html(" " + largeAlt + ""); return false;
	});
	



	});
