jQuery Objects Are No Longer Draggable Suddenly

jQuery Objects Are No Longer Draggable Suddenly

I've installed a circular object carousel as a part of a website I've been developing lately. Here is a link to the certain carousel i'm using :

Using jQuery I've made the text in every element in the carousel draggable,

  1. $(".textPara").draggable({
  2. helper:'clone',
  3. appendTo: 'body'
  4. });
  5. $(".textPara").draggable("option","revert",true);
  6. $(".textPara").draggable({opacity:0.5});

The problem comes up when I scroll up , then scroll down and the object that disappered and then appeared again is no longer draggable.
Do you have any idea what might be the reason for that ?

Any suggestion will be helpful, thanks in advance