	$(document).ready(function(){
	
		////////////////////////////////////////////////////////////////////////////////////////////////
		
		// tweak these numbers as required...
		
		var delayBeforeAnimationStart = 2000; // in milliseconds
		var animationDuration = 1000; // in milliseconds
		
		////////////////////////////////////////////////////////////////////////////////////////////////
		
		// don't change the following...
								
		// reveal the animated elements ({ opacity, position with container }, duration in milliseconds)
		// (jQuery 'chainability' in action here)	
		setTimeout(function(){
		$(".exclusives").animate({ opacity:1.0, right: "0" }, animationDuration, function(){
			$(".editorials").animate({ opacity:1.0, right: "0" }, animationDuration, function(){
				$(".viewer").animate({ opacity:1.0, right: "0" }, animationDuration);
			});
		});	
		}, delayBeforeAnimationStart);
		
	});