$(function(){

	hide_extras();
	
	$(".streaming h3 a").click(function(){
		hide_extras();
		$(this).parent().next(".streaming div.video").show();
	});

});

function hide_extras(){
	$(".streaming div.video").hide();
}
