self.rotate_image=function(a){if(a.src){var steps=(a.getAttribute('insteps'))?a.getAttribute('insteps'):7;var curstep=a.src.match(/-(\d+)_anim/)?a.src.match(/-(\d+)_anim/)[1]/1 : 0;
      if (curstep && curstep < steps) {
        a.src = a.src.replace(/-(\d+)_anim/,'-'+(curstep+1)+'_anim');}else if(curstep){a.src=a.src.replace(/-(\d+)_anim/,'');}else{a.src=a.src.replace(/\.jpg/,'-'+1+'_anim.jpg');}
self.rotating=window.setTimeout(function(){rotate_image(a)},500)}}
self.rotate_stop=function(a){a.src=a.src.replace(/-(\d+)_anim/,'');if(self.rotating){window.clearTimeout(rotating)}}
