Problem with click after use jqzoom

Problem with click after use jqzoom

Hello
I made this cart http://www.miguelmanchego.com/pages/min ... egory&id=2

You can add products to cart and delete from cart using this code:
$('.itemDelete').live("click",function () {
      x1 = $(this).attr("id");
      var broken=x1.split("-");
      cual=broken[1];
      itemAction="delete";
      $.ajax({
            type: "POST",
         url: "includes/minicart.php",
          data: "itemId="+cual+"&itemAction="+itemAction,
          success: function(data){
              $('#miniCart').html(data);
            }
       });
   });   

That works properly but if I move mouse over photo to use jqzoom then delete option don`t work anymore