var ani = { pes1: { type: 'left', from: 5, to:screen.availWidth, step: 1, delay: 50
}, pes2: { type: 'left', from: 0, to:screen.availWidth, step: 1, delay: 100, onstart: function(){ this.style.display = 'block';}
}, pes3: { type: 'left', from: 0, to:screen.availWidth, step: 1, delay: 20, onstart: function(){ this.style.display = 'block';}
}, pes4: { type: 'left', from: 5, to:screen.availWidth, step: 1, delay: 60, onstart: function(){ this.style.display = 'block';}
}, pes6: { type: 'left', from: 5, to:screen.availWidth, step: 1, delay: 23, onstart: function(){ this.style.display = 'block';}
}, pes5: { type: 'left', from: 0, to:screen.availWidth, step: 1, delay: 40
}
}; function startAnimation(){ $fx('#pes1').fxAdd(ani.pes1).fxRun(null,-1); $fx('#pes3').fxAdd(ani.pes3).fxRun(null,-1); $fx('#pes4').fxAdd(ani.pes4).fxRun(null,-1); $fx('#pes5').fxAdd(ani.pes5).fxRun(null,-1); $fx('#pes6').fxAdd(ani.pes6).fxRun(null,-1); $fx('#pes2').fxAdd(ani.pes2).fxRun(null,-1);}

