$(document).ready( function() {

	// set up the innerfade images
	$.getJSON("/ajax/innerfade/json", function(items) {
		
		$.each(items, function(index, item) {
			$(item).appendTo("#innerfade-items");
		});
		
		// enclose this inside the getJSON method

		$("#innerfade-items").innerfade({
			containerheight: '300px',
			speed:			1000,
			timeoutCurrent: 7500,
			timeoutBetween: 500,
			type: 'sequence'
		});

	}); // end getJSON
	
});	

