OK, I think we found the problem. There are too many spirals on that html document Seriously though that is the actual problem. You are defining multiple #spiral ids on the page (looks like 4…).
When you make them unique (#spiral1, #spiral2 etc) that should fix the problem.
A better solution would be to call DOM.uid to generate an automatically-unique name for your ids.
I was wondering about that when I was coding and then promptly forgot. Well, lesson learned! I’ll try to DOM.uid method, as I’ve never used it before. Thanks so much for your help!