$(function(){
        
    $("aside a").click(function(a) {
        a.preventDefault();
        var el = $(this);
        $.ajax({
            url: "load.php",
            data: "pagina="+el.parent().attr("rel")+"&label="+el.attr("rel"),
            cache : false,
            type : "get",
            dataType: "json",
            success: function(t) {
                if (t.titolo!="") {
                    $("aside a").removeClass("current");
                    el.addClass("current");
                    $("h1").text(t.titolo);
                    $("article p").html(t.descrizione);
                }
            }
        });
    });
    
});

