$(document).ready(function(){
	
	// Prepare Document
	
	// FancyBox for bio images
	if ( $('a.fancybox').length > 0 )
	{
		$('a.fancybox').fancybox({
			'hideOnContentClick': true,
			'overlayShow':	false
		});
	}
	
	// Superfish Menu
	 $(".nav").superfish({ animation : { opacity:"show",height:"show"} }); 
	
	// External Links
	$('a.link').click(function(){
		window.open(this.href);
		return false;
	});
	
});