VideoJS.setupAllWhenReady();
jQuery(document).ready(function($){
	$('video.video-js').each(function(){
		var v = this,
				vd = { width: $(v).width(), height: $(v).height(), ratio: ($(v).width() / $(v).height())  },
				//fsl = $('<a href="#' + $(v).attr('id') + '" class="video-lightbox-link">enlarge video</a>').click(function(e){e.preventDefault();v.player.activateElement(this, "fullscreenToggle");}),
				lbid = $(this).attr('id') + '-wrapper';
				lbw = $(v).parent('div').attr('id', lbid),
				lbs = { margin:0,padding:15,overlayColor:'#000',overlayOpacity:0.7,titleShow:false,onStart:function(){$('video')[0].player.width(640).height(640/vd.ratio);$('video,.vjs-flash-fallback').css('height','');},onComplete:function(){$('#fancybox-content').children('div').css('overflow','hidden');},onCleanup:function(){var vp=$('video')[0].player.width(vd.width).height(vd.height);},onClosed:function(){lbw.css('height','')} },
				lbl = $('<a href="#' + lbid + '" rel="lightbox" class="video-lightbox-link">enlarge video</a>').fancybox(lbs);
		$(lbw).after(lbl);
	});
	$("#special-movie-starter").fancybox({margin:0,padding:15,overlayColor:'#000',overlayOpacity:0.7,titleShow:false,onStart:function(){jQuery('.embedded_flash').hide();},onCleanup:function(){jQuery('.embedded_flash').show();},onComplete:function(){if(!jQuery.browser.msie){jQuery('#special-movie video').get(0).play()}}});
}); 
