');
txt = txt[2];
txt = txt.split('
');
txt = txt[0];
return txt;
}
$('a[rel*="ADD2BASKET"]').click(
function(){
imageToFly = $(this).parent().parent().parent().find("#catalog_image");
anc = $(this);
anc.text("Подождите");
$.ajax({
type: "GET",
url: $(this).attr("rel"),
dataType: "html",
success: function(out){
fly(imageToFly, anc);
$("#left_basket").html(getBasketHTML(out));
}
});
}
);
}
);