function initScheda(show_text, hide_text) {
  jQuery('#middle').append('<div style="clear: both"></div>');

  jQuery('#scheda h3').after('<div class="toggle-show"><a href="#">' + hide_text + '</a></div>');

  jQuery('#scheda div.toggle-show a').toggle(
    function() {
      jQuery(this).html(show_text);
      jQuery(this).addClass('show');
      jQuery(this).parent().next().slideUp('fast');
    },
    function() {
      jQuery(this).html(hide_text);
      jQuery(this).removeClass('show');
      jQuery(this).parent().next().slideDown('fast');
    }
  );

  jQuery('#scheda h3').click(
    function() {
      jQuery(this).next().find('a').click();
    }
  );
  jQuery('#scheda h3').css('cursor', 'pointer');

  jQuery('#scheda h3:not(.main) + div.toggle-show a').click();
}

