 // Cufon
 
 //Cufon.replace('article h1, #contact-wrapper h1', { fontFamily: 'St Marie Thin', hover: true });
 
 //Start doc ready stuff
 
$(document).ready(function(){

	// Globe Intro
	$("#globe a").delay(500).fadeIn(2000);
	$("#strapline").delay(500).fadeIn(2000);
	$("#skip-intro a").delay(1000).fadeIn(2000);
	$("#logo-bg a").fadeIn(2000, globe_fadeOut);
					
		function globe_fadeOut(){
			$("#globe a").delay(3000).fadeOut(3000, logoBg_fadeOut);
		}
		function logoBg_fadeOut(){
			$("#logo-bg a").fadeOut(500, redirectMe);
		}
		function redirectMe(){window.location="http://clevelandsolicitors.com/home/";}
	
	//Body Content fadeIn
	$("#site-wrapper").fadeIn(1000);
	
	//Header Slideshow
	$('#header-slideshow').cycle({ 
		fx:     'fade', 
		speed:  3000, 
		timeout: 3000,
		cleartype:  1
	});
	
});
