$(document).ready(function() {

	$("ul#navi").tabs("div.pane", {effect: 'fade', fadeInOutSpeed: 400});
	
	/* This is basic - uses default settings */
	
	$("a.single_image").fancybox({
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'overlayShow'		: true,
		'overlayOpacity' 	: 0.8,
		'overlayColor' 		: '#5a0400'
	});

	/* Using custom settings */

	/*$("a#inline").fancybox({
		'hideOnContentClick': true
	});*/

	$("a.group").fancybox({
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'overlayShow'		: true,
		'overlayOpacity' 	: 0.8,
		'overlayColor' 		: '#5a0400'
	});
	
	$(".iframe").fancybox({
		'width'				: 800,
		'height'			: 600,
		'autoScale'			: false,
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'type'				: 'iframe',
		'overlayShow'		: true,
		'overlayOpacity' 	: 0.8,
		'overlayColor' 		: '#5a0400'
	});
	
	$(".iframe2").fancybox({
		'width'				: 800,
		'height'			: 403,
		'autoScale'			: false,
		'speedIn'			: 600, 
		'speedOut'			: 200, 
		'type'				: 'iframe',
		'overlayShow'		: true,
		'overlayOpacity' 	: 0.8,
		'overlayColor' 		: '#5a0400'
	});
	
	$("#fader").innerfade({
		speed: 2000,
		timeout: 4000
	});
});
