$(document).ready( function() {

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

		$('#main-fader').innerfade({
			containerheight: '133px',
			speed: 1000,
			timeout: 7500,
			type: 'sequence'
		});

	}); // end getJSON

});	

