function ShowContent(idSection){
  var Content = document.getElementById('contenuto').getElementsByTagName('div');
  for(i=0;i<Content.length;i++){
    $('#' + Content[i].id).hide();
    }
  $('#' + idSection).slideDown();
  }

