// JavaScript Document

$(document).ready(function() { 
	$("a#single_image").fancybox();	
	$("a#inline").fancybox({ 'hideOnContentClick': true }); 
	$("a.youtube").click(function() {
		  $.fancybox({
			'padding'             : 10,
			'autoScale'   			 : false,
			'transitionIn'        : 'none',
			'transitionOut'       : 'none',
			'title'               : this.title,
			'titlePosition'		 : 'inside',
			'width'               : 680,
			'height'              : 495,
			'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'                : 'swf',
			'swf'                 : {'allowfullscreen':'true'}
			});
		  return false;

	});
	$("a.fancy_enlarge").fancybox({
			'zoomSpeedIn'				: 300,
			'zoomSpeedOut'				: 300,
			'overlayShow'				: true,
			'titleShow'					: false,
			'titlePosition'			: 'inside'
	});
	$("a.ticket").fancybox({
			'autoDimensions'			: false,
			'width'           	   : 680,
			'height'              	: 500,
			'zoomSpeedIn'				: 300,
			'zoomSpeedOut'				: 300,
			'overlayShow'				: true,
			'titleShow'					: false,
			'titlePosition'			: 'inside'
	});
	$("a.smaakconfig").fancybox({
			'autoDimensions'			: false,
			'width'           	   : 640,
			'height'              	: 465,
			'zoomSpeedIn'				: 300,
			'zoomSpeedOut'				: 300,
			'overlayShow'				: true,
			'overlayColor'				: '#000000',
			'overlayOpacity'			: 0.8,
			'titleShow'					: false,
			'swf'							: {wmode:'normal'} 
	});
	/*
	$("form.compare input[type='submit']").fancybox({
			'autoDimensions'			: false,
			'width'           	   : 680,
			'height'              	: 500,
			'zoomSpeedIn'				: 300,
			'zoomSpeedOut'				: 300,
			'overlayShow'				: true,
			'titleShow'					: false,
			'titlePosition'			: 'inside'
	});*/
}); 
