jQuery(function() {
	// Get all images
	jQuery.getJSON("proxy.php", function(data){
		jQuery.each(data, function(i,item){
			jQuery("<img />").attr("src","imgs/"+item).attr("width", 879).attr("height", 282).appendTo("#images");
		});
	    jQuery('#images').cycle({
			fx: 'fade'
		});
	});
});

