function image_swap(obj, e, show_id) {
  var image_div = $(obj).parent();
  var hide_me = image_div.find('a.big:visible');
  hide_me.hide();
  $('#' + show_id).show();
  e.preventDefault();
  e.stopPropagation();
  return false;
}

$(document).ready(function () {
  var h = screen.height;
  if (h > 900) {
    $('#products').addClass('scroll');
  }

  var image_links = $(".images > a:not(.skip,[@rel*=lightbox])");
  image_links.bind("click", function(e) {
    e.preventDefault();
    e.stopPropagation();
    return false;
  });

	$('a[@rel*=lightbox]').lightBox({
		imageLoading: '../images/lightbox-btn-loading.gif',
		imageBtnClose: '../images/lightbox-btn-close.gif',
		imageBtnPrev: '../images/lightbox-btn-prev.gif',
		imageBtnNext: '../images/lightbox-btn-next.gif'
	});
});
