$(function() {
    //$("#numero_partecipanti").attr('disabled', true);
    /*LOAD PAGE*/


    /**/

    $("ul.tabs li:nth-child(1) a").click(function() {
    $("ul.tabs li:nth-child(1)").addClass('active');
    $("ul.tabs li:nth-child(2)").removeClass('active');
    $("ul.tabs li:nth-child(3)").removeClass('active');
        $("#tab-1").show();
        $("#tab-2").hide();
        $("#tab-3").hide();
    });
    $("ul.tabs li:nth-child(2) a").click(function() {
    $("ul.tabs li:nth-child(1)").removeClass('active');
    $("ul.tabs li:nth-child(2)").addClass('active');
    $("ul.tabs li:nth-child(3)").removeClass('active');
        $("#tab-1").hide();
        $("#tab-2").show();
        $("#tab-3").hide();
    });
    $("ul.tabs li:nth-child(3) a").click(function() {
    $("ul.tabs li:nth-child(1)").removeClass('active');
    $("ul.tabs li:nth-child(2)").removeClass('active');
    $("ul.tabs li:nth-child(3)").addClass('active');
        $("#tab-1").hide();
        $("#tab-2").hide();
        $("#tab-3").show();
    });

});
