﻿/// <reference path="jquery-1.3.2.min-vsdoc.js" />
jQuery(document).ready(function($) {

  var hoverIntentThumbs = { sensitivity: 2, interval: 100, over: switchThumb, timeout: 250, out: function() { } };

  function switchThumb() {
    $('#lot_visuals .photo a').attr('href', $(this).attr('href'));
    $('#lot_visuals .photo a img').attr('src', $(this).attr('href').replace('?large=1', ''));
  }

  $("#lot_visuals ul li a").hoverIntent(hoverIntentThumbs).colorbox({ photo: true, rel: 'lot_photos' });
  $('#lot_visuals .photo a').colorbox({ photo: true, rel: 'main_photo' });

  // Clunky fix for the tabbed table(s)
  $('#lot_body .tabbed tr').each(function() { $('td:first', this).css('padding-left', '0px'); });

});
