showLot = function(lotId) {
  if ($('#lot'+lotId).css('display') == 'none') {
    $('#lot'+lotId).slideDown();
  } else {
    $('#lot'+lotId).slideUp();
  }
}

$(document).ready(function(){
  curUrl = document.location.href;
  var aUrl = curUrl.split('#');
  if (aUrl.length == 2) {
    lot = aUrl[1].split('lot');
    showLot(lot[1]);
  }

  $(function() {
    $('a[@rel*=lightbox]').lightBox();
  });
})


