jQuery(document).ready(function(){

//Setup Fancybox class
	jQuery('.fancybox').fancybox();

// Setup video in a lightbox
	jQuery('.video-lightbox, .video-wide-lightbox').click(function(e) {
		e.preventDefault();
		var filePath = jQuery(this).attr('href');
		if (jQuery(this).hasClass('video-lightbox')) {
			videoHeight = '480';
		} else {
			videoHeight = '360';
		}
		jQuery.fancybox(
			'<video id="lightboxVideo" src="' + filePath + '" type="video/mp4" width="640" height="' + videoHeight + '" autoplay controls="controls" ></video>',
			{
				'autoDimensions'	:	false,
				'width'				:	640,
				'height'			:	videoHeight,
				'scrolling'			:	'no',
				'transitionIn'		:	'none',
				'transitionOut'		:	'none',
				'overlayColor'		:	'#000000', 
				'onComplete'		:	function(){
					MediaElement('lightboxVideo');
				},
				'onCleanup'			:	function(){
				//	MediaElement('lightboxVideo').pause();
				jQuery('.fancybox-content').empty();
				} 
			}
		);
	});

// END DOC READY
});
