$(document).ready(function() {

  $('table.formTable').each(function() {
    $(this).hide();
  });
  
  
});

function openForm(id) {

  $('table.formTable').each(function() {
    $(this).hide();
  });

  $('#form'+id).show('slow');
  return false;

}
