window.addEvent('load', function()
{

	var o = (function() {


	$$('.jumpr').each(function(el, i) {
			var fade = new Fx.Tween(el, { property: 'opacity', duration: ((i+1)/1.3)*4000 });
			fade.set(0);
			el.style.display="";
			fade.start(0, 1).chain(function() { this.start(1, 0); });
		});
		
/*
	      $$('.jumpr').each(function(el, i) {
                var fade = new Fx.Tween(el, { property: 'opacity', duration: (i+2)*1732 });
                fade.set(1.0);
                el.style.display="";
                fade.start(1,0);
              });

*/
		
	});


	o.periodical(17500);
	o();

});




