$(document).ready(function(){

    //$(".centriregione").toggle(apriElenco,chiudiElenco);

    $(".centriregione").bind('click',manageMenu);
    
    

});


var manageMenu = function()
{
    var hasclass = $(this).hasClass("attivo");

    if(hasclass)
    {
        $(this).removeClass("attivo");

        $(this).children(".elenco_localita").hide();

    }
    else
    {
        $(this).addClass("attivo");

        $(this).children(".elenco_localita").show();

       $(this).children(".elenco_localita").click(function(event){
        event.stopPropagation();
          });
    }

    return false;

}


var chiudiElenco = function()
{
    $(this).removeClass("attivo");

    $(this).children(".elenco_localita").hide();

    return false;
}

var apriElenco = function()
{
   
    $(this).addClass("attivo");

    $(this).children(".elenco_localita").show();
    
    return false;
    
}


