All of my elements which init by my jquery plugin sharing the same local variable when it running. I did a test and found out because this line:
var tmp1 = tmp2 = weird_local_var = 0;
If I write like below, it does not happens
var normal_local_var = 0;
It is not because tmp1 & tmp2, just dummy var for testing. You can see the test via http://jsfiddle.net/7SeRD/. What happen?