// 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 });  
	
	$("a.productLink").fancybox({
		'autoDimensions'		: false,
		'padding'				: 10,
		'autoScale'   			: false,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
		'width'              : 500,
		'height' 		    	: 400,
		'overlayShow'			: true,
		'titleShow'				: false 
	});

}); 
