- use multi-animations: this as some constrains on the form of the animations, all have to be the same size and number of frame and be evenly distributed on your sprite sheet.
- use an array, for example :
var animations =[] animations[0]= example0;/* or create your animations there */; animations[1]= example1;/* or create your animations there */; // ...
// now you can do this $("#mySprite").setAnimation(animations[1]); // where x is simply an integer