var IndexPage = {
	
	init: function() {
		/*
		if($.address.value() == '/') {
			//if we come to this index page without a deep link, then do something fun
			var arr = ['.navwhitebg', '#home_do', '#clients', '#footerblock'];
			$.each(arr, function(index, value) {
				
				var duration = 300;
				var gap = 200;
				var selector = $(value);
				selector.fadeOut(0);
				selector.delay((index*duration)+gap).fadeIn(duration);
			});
		}
		*/
	}
}
