jQuery(document).ready(function() {

    $('.expand').click(function(){
      var el = $(this).parent().find('table');
      var state = el.css('display');
      if (state == "block")
      {
        $(this).find('a').html('More Info &gt;');
        el.css({"display":"none"});
      }
      else
      {
        $(this).find('a').html('Less Info &gt;');
        el.css({"display":"block"});
      }
      return false;
    });

});
