$(document).ready(function() {
	hideAllcert=function(){
	$('#certificazione1').hide();
	$('#certificazione2').hide();
	$('#certificazione3').hide();
	$('#certificazione4').hide();
	$('#certificazione5').hide();
	$('#certificazione6').hide();
	$('#certificazione7').hide();
	$('#certificazione8').hide();
	$('#aaaa').hide();
	}
	 hideAllcert();//nascondo tutto
  
  $('#certificazione_btn1').click(function() {
  	//hideAllcert(); 
	$('#aaaa').html("" + $('#certificazione1').html() + ""); 
	$('#aaaa').show("slow");
  });

  
  $('#certificazione_btn2').click(function() {
 	$('#aaaa').html("" + $('#certificazione2').html() + ""); 
	$('#aaaa').show("slow");
  });
 
  
   $('#certificazione_btn3').click(function() {
 	$('#aaaa').html("" + $('#certificazione3').html() + ""); 
	$('#aaaa').show("slow");
  });
  
   $('#certificazione_btn4').click(function() {
 	$('#aaaa').html("" + $('#certificazione4').html() + ""); 
	$('#aaaa').show("slow");
  });
  
   $('#certificazione_btn5').click(function() {
 	$('#aaaa').html("" + $('#certificazione5').html() + ""); 
	$('#aaaa').show("slow");
  });
  
  
   $('#certificazione_btn6').click(function() {
 	$('#aaaa').html("" + $('#certificazione6').html() + ""); 
	$('#aaaa').show("slow");
  });
  
   $('#certificazione_btn7').click(function() {
 	$('#aaaa').html("" + $('#certificazione7').html() + "");
	$('#aaaa').show("slow");
  });
   
    $('#certificazione_btn8').click(function() {
 	$('#aaaa').html("" + $('#certificazione8').html() + ""); 
	$('#aaaa').show("slow");
  });
	
	
  
  

});

function close_div() {
	//alert("Estiquatzi!"); 
	$('#aaaa').hide("slow");
}
  
