/* Changes the src attribute of the img with ID #photo to the value of the href clicked */

			$(document).ready(function(){
								
			    $(".thumbnails > li > a").click(function (event) { 
					var imageLocation = $(this).attr("href");
					$("#photo").attr("src", imageLocation);
					event.preventDefault();
				});

			});
