/**
 * @author turpana
 */
$( function () {
	$('#featured-tagline').hide();
	$('.tagline-p').hide();
	$('#tagline-1').show();
	$('#featured-tagline').fadeIn(1500, function () {
		$('#tagline-2').fadeIn(1500, function() {
			$('#tagline-3').fadeIn(1500);
		});
	});
});
