// Font replacement
Cufon.replace('h1, .cufon');

// Jquery Stuff
$(document).ready(function(){
	$currentshow = window.location.hash;
	if($currentshow != ""){
		$('#book-time, #adventure, #active, #red-shoe').css('opacity', .3);
		$($currentshow).css('opacity', 1);
		$('#book-time, #adventure, #active, #red-shoe').fadeTo(4000, 1,function(){
			 this.style.removeAttribute("filter");
		});	
	}
	
});


