$(document).ready(function() 
{
	$.ajax({
		type: "GET",
		url: "/gallery/gallery_backend.php?latest=true",
		dataType: "xml",
		success: function(xml) {
			$('image', xml).each(function(i)
			{
 				thumbURL = $(this).attr("thumbURL");
 				caption = $(this).find("caption").text();
 				img = "<a href='/gallery/'><img src='/gallery/" + thumbURL + "' alt='" + caption + "' /></a>&nbsp;";
 				
 				$("#latest_photos").append(img);
 				
			});
		}
	});
		
});