$(document).ready(function(){
  $('a.lightbox').lightBox({
    overlayBgColor: '#000000',
    overlayOpacity: 0.8,
    imageLoading: '/images/lightbox/lightbox-ico-loading.gif',
    imageBlank: '/images/lightbox/lightbox-blank.gif',
    imageBtnClose: '/images/lightbox/lightbox-btn-close.gif',
    imageBtnPrev: '/images/lightbox/lightbox-btn-prev.gif',
    imageBtnNext: '/images/lightbox/lightbox-btn-next.gif',
    txtImage: 'Image',
    txtOf: 'of'
  });
  $('table.striped tr:odd td').addClass('alt');
  $('table tr th:not(th:first-child)').addClass('right');
  $('table tr td:not(td:first-child)').addClass('right');
  $('table tr td:first-child').addClass('bold');
  $('ul.highlight li').mouseover(function(){
    $(this).addClass('alt') 
  }).mouseout(function() {
    $(this).removeClass('alt')
  });
  $('div.flash').fadeOut(4000);
});