$(document).ready(function(){
    
    // ================================================================
    
    $(".box").accordion({collapsible: true, active: false}); 
    
    /*
    * SINTASSI BOX COLLASSABILI:
    * 
    *   <div class="box">
    *       <a href="#"> NOME TAB </a>
    *       <div> CONTENUTO TAB </div>
    *   </div>
    * 
    */
    
    // ================================================================
    
    $("a.external").click(function(e) {
    	window.open(this.href);
		e.preventDefault();
    });
    
});
