$(document).ready(function(){
	slideshow({
		'element' : '#slides',
		'menu' 		: '#menu',
		'pause' 	: 12
	});
	
	//Fade out the contact area
	$('#close').click(function(e) {
		e.preventDefault();
		$("html:not(:animated),body:not(:animated)").animate({
			scrollTop: $('#header').offset().top - 20
		}, 500);
		$('#contact').fadeOut(500);
	});
	
	//Fade in the contact area
	$('#click').click(function(e) {
		e.preventDefault();
		$('#contact').fadeIn(500);
		$("html:not(:animated),body:not(:animated)").animate({
			scrollTop: $('#contact').offset().top - 20
		}, 500).delay(1500);
	});
	
	//Get our Cufon going
	Cufon.replace('#menu a, h2', { hover: true });
});

