$( function() {
	ini = $('#fx img:first').attr('longdesc') + '?' + Math.random();
	if (ini) {
		$('#fx img:first').ready( function() {

			$.getJSON(ini,
			function(data){
				$.each(data, function(item){
					$("<img>").attr("src", data[item]).css({'display':'none'}).appendTo("#fx");
				});
				$('div#fx').innerfade();
			});

		});
	}
});
	






