$(document).ready(function() { 
	$('#quote').hide();
	$('#author').hide();
	
	$('#quote').fadeIn(1250);
	$("#author").fadeIn(2000);
	
});
