$(document).ready(function(){
    $("#content").load("contenuti.html #home");

    $("#menu h1").click(function(){
        if (this.id == 'andMore'){
            $("#content").load("andMore.html")
        }else if (this.id == 'azienda'){
            $("#content").load("azienda.html")
        }else{
            $("#content").load("contenuti.html #" + this.id);
        }
    });
});