//Fade in text animation one line at a time

jQuery(document).ready(function(jQuery){
							

	//jQuery('.flying-text').css({"opacity":"0","z-index":"10000"});	
	jQuery('.flying-1').css({"margin-top":"200px", "position":"absolute", "width":"700px", "font-size":"28px"}); 
	jQuery('.flying-2').css({"margin-top":"235px","position":"absolute", "width":"700px", "font-size":"28px"}); 
	jQuery('.flying-3').css({"margin-top":"275px","position":"absolute", "width":"700px", "font-size":"18px"}); 
	
	//var int = setInterval(doText, 4000);			
});



function doText(){
		jQuery('.flying-1').animate({ 
			opacity: 1			
		}, 650, "easeOutSine");		
		int = setInterval(doText2, 1500);
	 
	}
	
	function doText2() {
		clearInterval(int)
		jQuery('.flying-2').animate({ 
			opacity: 1			
		}, 650, "easeOutSine");	
		int = setInterval(doText3, 2200);
				
	}
	
	function doText3() {
		clearInterval(int);
		jQuery('.flying-3').animate({opacity: 1}, 700, "easeInSine");
		
	}
	



