$(document).ready(function(){

	// PRETTY PHOTO
	//$("a[rel^='prettyphoto']").prettyPhoto({theme: 'light_square',slideshow:5000, autoplay_slideshow:true});

	// FANCYBOX - IT's JOLLY FANCY
	$(".play").fancybox();
	$("#gallery ul li a").fancybox({
		'titlePosition': 'over'
	});

	// SCROLLY JOE
	$('.top a').click(function(){
		$.scrollTo($(this).attr('href'), 900);
		return false;
	});
	$('#viewmore a').click(function(){
		$.scrollTo($(this).attr('href'), 900);
		return false;
	});
	$('#header h1 a').click(function(){
		$.scrollTo($(this).attr('href'), 900);
		return false;
	});
	$('.nav a').click(function(){
		$.scrollTo($(this).attr('href'), 900);
		return false;
	});
	
	$('#introduction #biography').hide();
	$('#toggle a').click(function(){
		if($(this).hasClass('active')){
			$("#introduction #biography").slideUp(400);
			$(this).removeClass('active');
		}
		else{
			$("#introduction #biography").slideDown(400);
			$(this).addClass('active');
		}
		return false;
	});
});
