$(document).ready(function(){ // Once the window has loaded	

  $(".logo, .information, .links, .footer").hide();
  
	setTimeout(function() { // After a set delay...
    $(".logo").fadeIn(1000, function(){
      $(".information").fadeIn(1000);
      setTimeout(function() { // After a set delay...
        $(".links").fadeIn(1000, function(){
      		$(".footer").fadeIn(1000);  
		});  
      }, 600);
    });      
  }, 1500);
	
	Cufon.replace('p, span', {
      fontFamily: "ITC Avant Garde Gothic Std Book"
  });
	
  Cufon.replace('.banner strong, h2', {
      fontFamily: "Avant_G-Bold"
  });
  
	
});
