$(function(){	
	//Initiates Home page rotator
	$('#rotator').cycle({
		timeout	  : 5000,
		slideExpr : 'li'
	}); 
	
	// Opens the heart bars for the intro
	$("#heart_bar_bottom").delay(1000).animate({'height' : '51px'});
	$("#heart_bar_top").delay(1000).animate({'height' : '49px'});
	$("#photos").delay(1000).animate({'height' : '538px'});
	
	// Fades in the photo rotator
		$('#photos #rotator').delay(1000).fadeIn(500);
	
	//Fades in the nav menu for the intro
	$('#photos').delay(800).queue(function() {
		$('#menu .nav_engagements a').delay(300).fadeIn(1000, function(){
			$(this).css('filter','');
		});
		$('#menu .nav_weddings a').delay(800).fadeIn(1000);
		$('#menu .nav_about a').delay(1200).fadeIn(1000);
		$('#menu .nav_contact a').delay(1600).fadeIn(1000);
		$('#menu .nav_difference a').delay(2000).fadeIn(1000);
	});
});
