
$(document).ready(function() {

	//product page image enlargement.
	$("a#enlarge_image").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'speedIn'		:	900, 
		'speedOut'		:	400,
		'easingIn' 		: 'swing',
		'easingOut'		: 'swing',
		'overlayOpacity'	: ".8",
		'overlayColor'	: "#000", 

	});



	// $("a.yt").fancybox({
	//                     'titleShow'     : false,
	//                     'transitionIn'  : 'elastic',
	//                     'transitionOut' : 'elastic',
	//             'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
	//             'type'      : 'swf',
	//             'swf'       : {'wmode':'transparent','allowfullscreen':'true'}
	//         });

$("a.yt").click(function() {
                 $.fancybox({
					'overlayShow'		: true,
                  'padding'             : 0,
                  'autoScale'   : false,
                  'transitionIn'        : 'fade',
                  'transitionOut'       : 'fade',
                  'title'               : this.title,
				  'showCloseButton'		: true,
                  'width'               : 680,
                  'height'              : 495,
                  'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
                  'type'                : 'swf',    // <--add a comma here
                  'swf'                 : {'allowfullscreen':'true', 'wmode':'transparent'} // <-- flashvars here
                  });
                 return false;

            }); 

	//youtube enlargement.
	// $("a.yt").fancybox({
	// 	'titlePosition'		: 'inside',
	// 	'transitionIn'		: 'fade',
	// 	'transitionOut'		: 'fade',
	// 	'speedIn'		:	900, 
	// 	'speedOut'		:	400,
	// 	'easingIn' 		: 'swing',
	// 	'easingOut'		: 'swing',
	// 	'overlayOpacity'	: ".8",
	// 	'overlayColor'	: "#000", 
	// });


	//product page image enlargement.
	$("a.enlarge").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade'
	});


	//big image enlargement.
	$(".enlarge").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'speedIn'		:	900, 
		'speedOut'		:	400,
		// 'padding'		: '8px',
		// 'margin'		: '8px',
		'overlayColor'	: '#000', 
		});
   $("#category-image, #cat_hover").hover(
	function(){
		$('#enlarge-photo').fadeIn(200);
	},
	function(){
		$('#enlarge-photo').fadeOut(500);	
	});

	// Video open scripts.
	$('.open').click(function(ev){
		var url = $(this).attr("href");
		var size = $(this).attr("size");
		if(size==undefined)
		{
			size = 'width=500,height=460';
		}
		
		window.open(url,
		'Continue_to_Application',size);
		ev.preventDefault();
		return false;
	})


});

