// Wait for the DOM
$(document).ready(function() {
	
	$('body, #scroll').css('overflow-x','hidden');
	
	// Hide the contents of the page
	$("div#about, div#collage > *").hide()

	// Once everything loads, fade in
	$(window).load(function () {

		$('#controls').delay(500).fadeIn('fast');

		$("div#about, div#collage > *").each(function(i){
			$(this).delay(i*30).fadeIn('3000');
		});
	});

});

// Scrolling settings
jQuery(function( $ ){

	$('#scroll').serialScroll({
		items:'li',
		prev:'a#prev',
		next:'a#next',
		offset: 0,
		start:0,
		duration:600,
		stop:true,
		lock:false,
		cycle:false,
		easing:'easeOutCubic',
		jump: true,
		force: true
	});
});
