
        
function displayPic(e){
	$("#galleryPic").html('<img src="images/gallery/' + e.data('props').filename + '"/><h3>' + e.data('props').title + '</h3><p>' + e.data('props').description + '</p>');
}



$.getJSON("gallery.php",
        function(data){
          $.each(data.items, function(i,item){
            $("<li>").appendTo("#thumbs").append($("<img/>").attr("class", "thumb").attr("src", "images/gallery/thumbs/" + item.filename).attr("alt", item.title));
            $("#thumbs .thumb:last").data('props',item);
          });
          displayPic($("#thumbs .thumb:first"));
        });


	$('#thumbs .thumb').live('click',function(){
		displayPic($(this));
	});

	
