jQuery(document).ready(function($) {
	
	$('#navigation li').hover(
		function(){ 
			$(this).addClass('hover');
			Cufon.refresh('#navigation a span');
		},
		function(){ 
			$(this).removeClass('hover'); 
			Cufon.refresh('#navigation a span');
		}
	);
	
	Cufon.now();
	
	$('#slideshow').crossSlide({
		sleep: 5,
		fade: 1
	      }, [
		{ src: '_media/images/photo.jpg' },
		{ src: '_media/images/photo2.jpg' },
		{ src: '_media/images/photo3.jpg'   }
	      ]);
	$('#textcontent').corner('7px');
	$('#contact').corner('7px');
	$('#bookcontent').corner('7px');
	$('#bookbox').corner('7px');
	$('#footer').corner('7px');
});

Cufon.replace('#navigation a span');
Cufon.replace('.book h2,.questions h3,.signup h3');

//DD_belatedPNG fix for IE6
if(typeof DD_belatedPNG != 'undefined')
DD_belatedPNG.fix('#photos');
