Hi,
It's strange because the initialization is made by the javascript file itself.
Because the javascript is just added once, the initialization should be done once.
One solution will be to edit the vote.js file and replace
if(typeof(el) == 'string')
t.selectBox = d.getElementById(el);
else
t.selectBox = el;
By
if(typeof(el) == 'string')
t.selectBox = d.getElementById(el);
else
t.selectBox = el;
if(el.voteInit)
return;
And also
t.setRating(t.options.defaultRating);
By
t.setRating(t.options.defaultRating);
el.voteInit = true;
So it will not re-init an element.
Regards,