function collapse_content(anchor_id, content_id) {
  if ($('#'+content_id).css('display') != 'block') {
    //$('#'+anchor_id).addClass('dynamic_hover');
    $('#'+content_id).slideDown();
  }
  else {
    //$('#'+anchor_id).removeClass('dynamic_hover');
    $('#'+content_id).slideUp();
  }
}

$(document).ready(function() {
  var table_rnd;
  $('#body table').each(function() {
    table_rnd = 'table_' + (Math.random() * 100000000000000000);
    $(this).addClass(table_rnd);
    $('#body table.'+table_rnd+' tr:even').addClass('even');
  });
});
