jQuery(document).ready(function() {

$("a.img").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200
	});
	

	$(".extLink").fancybox({
		 'width' : '99%',
		 'height' : '99%',
		 'autoScale' : false,
		 'transitionIn' : 'elastic',
		 'transitionOut' : 'elastic',
		 'type' : 'iframe'
	 });

	 });




	
	
	
	
	$(".video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});

		return false;
	});




