$(document).ready(function() {
	$(".lightboxMovie").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: true,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'speedIn'		: 500,
			'speedOut'		: 500,
			'orig'			: document.getElementById("NoImgBorder"),
			'title'			: this.title,
			'width'			: 905,
			'height'		: 512,
			'overlayShow' 		: true,
			'overlayOpacity'	: 0.5,
			'overlayColor'		: '#403f40',
			'showCloseButton'	: false,
			'href'			: this.href.replace(new RegExp('watch\\?v=', 'i'), 'embed/') + '?rel=0&autoplay=1',
			'type'			: 'iframe',
			'swf'			: {
				'wmode'			: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

		return false;
	});

	$("a.lightboxImage").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: true,
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'speedIn'		: 500,
			'speedOut'		: 500,
			'orig'			: document.getElementById("NoImgBorder"),
			'title'			: this.title,
			'titleShow' 		: false,
			'autoDimensions'	: false,
			'width'			: 1024,
			'height'		: 576,
			'content'		: '<img src="' + this.href + '" style="width: 1024px; height:576px;"  >', //don't set 'type' when using this option
			'overlayShow' 		: true,
			'overlayOpacity'	: 0.5,
			'overlayColor'		: '#403f40',
			'showCloseButton'	: false,
		});

		return false;
	}); 

});


