/* Author: 

*/


$(document).ready(function(){
    // Target your .container, .wrapper, .post, etc.
    $(".video").fitVids();
 
	
	$("section.products ul li figure a").click(function () {
		$(".detail:visible").not($(this).parents("li").find(".detail")).toggle(300);
		
		$(this).parents("li").find(".detail").toggle(300);
		return false;
	}); 
	
	VideoJS.setupAllWhenReady();

	
	
});
  

























