   VideoJS.setupAllWhenReady({
	  controlsBelow: false, // Display control bar below video instead of in front of
	  controlsHiding: true, // Hide controls when mouse is not over the video
	  defaultVolume: 0.85, // Will be overridden by user's last volume if available
	  flashVersion: 9, // Required flash version for fallback
	  linksHiding: true // Hide download links when video is supported
	});
$(document).ready(function($) {
	$('.acc_container').hide(); 
	$('.acc_trigger').click(function(){
		if( $(this).next().is(':hidden') ) { 
			$('.acc_trigger').removeClass('active').next().slideUp();
			$(this).toggleClass('active').next().slideDown();
	}
	else if( $(this).next().is(':visible') ) {
		$('.acc_trigger').removeClass('active').next().slideUp();	
	}
	return false; 
	});
	jQuery(function ($) {
	$('#basic-modal .beast').click(function (e) {
		$('#beast-modal-content').modal();
		return false;
	});
	$('#basic-modal .ee').click(function (e) {
		$('#ee-modal-content').modal();
		return false;
	});
	$('#basic-modal .bees').click(function (e) {
		$('#bees-modal-content').modal();
		return false;
	});
	$('#basic-modal .zero').click(function (e) {
		$('#zero-modal-content').modal();
		return false;
	});
	$('#basic-modal .vp').click(function (e) {
		$('#vp-modal-content').modal();
		return false;
	});
	$('#basic-modal .halo').click(function (e) {
		$('#halo-modal-content').modal();
		return false;
	});
});
});

