$(document).ready(function() {
			$("#Photos a").click(function(event) {
										
							event.preventDefault();
							var image = $(this).attr("href");
							$("img#placeholder").attr("src", image);
							var description = $(this).attr("b");
							$("#desc").empty();
							$("#desc").append(description);
														});
			
						   
});