$(function() {
	loadPage();

});

function loadPage() {

	var showItem = function() {
		var self = this;

		$(self).stop().animate({ 
			'opacity': 1
			}, 1500, 'easeOutExpo');

	};

	var timeout = 0;
	
	$('.item').each(function(n) {
		var self = this;
		
		// Hide all items
		$(self).css({
			'opacity': 0
			});
		
		// Set them to fade in Staggered
		setTimeout(function() {
			showItem.apply(self)
		}, timeout += 150);
		
	});

}; 