$(document).ready(function() {
  // JQuery Rocks
  // stripe tables
  $(".menu-table tr:odd").addClass("even");
  // Allergies, first hide them, then toggle them
  $('span.allergy').hide();
  $('p#show_allergy a').click(function() { $('span.allergy').toggle(); return false; });
});