function catalogueItem( url )
{
  $.ajax({
      url: url,
      global: false,
      type: 'POST',
      data: ({ajax : true}),
      dataType: 'html',
      success: function(html){
        
        if ('undefined' != typeof html) {
          var object = $(html);
          object.hide();
          
          $(document.body)
            .find(' > .lot')
              .remove()
            .end()
            .append(
              object.fadeIn('slow', function(){
                object.css('top', $(window).scrollTop()+60);
                $(this).show();
              })
            );
        }
      }
  });
}

function catalogueCardSelectImg( node )
{
  $(node).closest(".small-img").find(">.cur").removeClass("cur");
  $(node).parent().addClass("cur");
  $(node).closest(".lot-noajax").find(".big-img img").attr("src", $(node).attr("href"));
  $(node).closest(".lot").find(".big-img img").attr("src", $(node).attr("href"));
}
