$(document).ready(function() {
		// slideshow setup			
		$('#slideshow').innerfade({
			speed: 800,
			timeout: 10000,
			type: 'random_start'
		});
		$('ul#quote').innerfade({
			speed			: 800,
			timeout			: 10000,
			type			: 'random_start'
		});
		// fancybox setup
		$("a.map").fancybox({
			'titleShow'				: false,
			'frameWidth'			: 643,
			'frameHeight'			: 483,
			'zoomOpacity'			: true,
			'zoomSpeedIn'			: 500,
			'zoomSpeedOut'			: 500,
			'hideOnContentClick'	: false,
			'callbackOnClose'		: function() {$("#fancy_content").empty();}
		});
		$("a.fancy").fancybox({
			'titleShow'		: false,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'zoomSpeedIn'	: 500,
			'zoomSpeedOut'	: 300
		});
		$("a.video").fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'width'			: 680,
			'height'		: 495,
			'titleShow'		: false,
			'type'			: 'swf',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
			
		});
});
