$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('.panel').hide();
  
  var randomNum = Math.floor(Math.random()*2);
  
  $('table.panel:eq(' + randomNum + ')').fadeIn('fast');

 // $('#lyitpanel').fadeIn('fast');
  
 // click links   
  $('a.burke').click(function() {
    $('.panel').hide();
    $('#burkespanel').fadeIn('fast');
    return false;
  });
  $('a.corvil').click(function() {
    $('.panel').hide();
    $('#corvilpanel').fadeIn('fast');
    return false;
  });
  $('a.angrianan').click(function() {
    $('.panel').hide();
    $('#angriananpanel').fadeIn('fast');
    return false;
  });
  $('a.lyit').click(function() {
    $('.panel').hide();
    $('#lyitpanel').fadeIn('fast');
    return false;
  });
});