$(document).ready(function() {
	$.getJSON("/slideshow/images.php", function(data){
		$.each(data, function(i, item){
		    $("<img/>").attr("src", "/slideshow/images/"+item).appendTo("#header-slideshow")
		});
		$("#header-slideshow").cycle({
			fx: 'fade',
			speed: 600,
			timeout: 4000
		});
	});
});
