jQuery(function() {
  
  $('a.lightbox').lightBox({
    imageLoading: '/images/lightbox/ico-loading.gif',
    imageBtnClose: '/images/lightbox/btn-close.gif',
    imageBtnPrev: '/images/lightbox/btn-prev.gif',
    imageBtnNext: '/images/lightbox/btn-next.gif'
  });
  
  $('select#seating_chooser').change(function() {
    function path(options) {
      return "/images/content/locations/" + options.location + "/" + options.type + ".png";
    }
    
    $('img#seating').attr('src', path({
      location: $(this).attr('data-location'),
      type: $(this).val()
    }));
  });
  
  $('table tr:nth-child(odd)').css('background-color', '#edebd6');
  $('table tr td:first-child').addClass('first');
  $('table tr td:last-child').addClass('last');
  
});
