$(function(){
	$.backstretch("img/background.jpg", {speed: 0});
	
	$('#slideshow').cycle({ 
		fx:     'fade', 
		speed:  1000, 
		timeout: 4500
	});
	
	$content = $('#content');
	$('#content div.close').click(function(){
		$content.fadeOut(500);
	});
	
	$('#nav a.selected').click(function(e){
		e.preventDefault();
		$content.fadeIn(500);
	});

});
