// JavaScript Document

$(document).ready(function() {
	
	$('#banner .title h2').hide();
	
	$('#banner .title h2:first').fadeIn(3000).fadeOut(3000);
	
	$('#banner .title h2:last').delay(6500).fadeIn(3000).fadeOut(3000);
	
	
}); //End of Ready() 
