jQuery(document).ready(function($) {
	
	// Hide elements by default -----------------
	$('header.title div').hide();
	$('div.just_like_home h2').width(0);
	$('div.unlike_home h2').width(0);
	$('nav.main_nav span.nav_top').hide()
	$('nav.main_nav ul.top').hide();
	
	// Begin animation --------------------------
	setTimeout(function(){
		// Title bar
		$('header.title div').slideDown('fast', function() {
			// After .5 seconds, display first title block
			setTimeout(function() {
				$('div.just_like_home h2').animate({
					width: '+=896'
				}, 200, function() {
					// After 1 second, display second title block
					setTimeout(function() {
						$('div.unlike_home h2').animate({
							width: '+=896'
						}, 200, function() {
							// After 1.5 seconds, display main navigation
							setTimeout(function() {
								$('nav.main_nav .nav_top').fadeIn('fast', function() {
									// Immediately show full navigation
									setTimeout(function() {
										$('ul.top').slideDown(50);
									}, 50);
								});
							}, 100);
						});
					}, 100);
				});
			}, 200);
		});
	}, 150);
	
});
