$(document).ready(function(){
	$("iframe").hide();
	
	$("h3").click(function(){
		$(this).next("iframe").toggle();
	});
	
	$(".mostra").show();	
});
