$(document).ready(function(){
	
	// Wait for 3 seconds then go to home
	setTimeout(function(){
 		
 		$("#intro").fadeOut(1000,function() {
			location.href = '/home/';
		});	
 		
	}, 18000);
	
	// Fade out and go to about on click
	$("#intro").click(function(){
			
		$("#intro").fadeOut(1000,function() {
			location.href = '/home/';
		});	

	});
	
});
