	var i = 0;
	
	function telopStart(){

		i++;
		strId = 'flyTelop'+i;
		var d = $(strId);
		if (d == null) {
			if (i == 1) {
				return;
			}
			i = 1;
		}
		
		flyTelop('flyTelop' + i);
	}

	function flyTelop(id){
		new Effect.MoveBy(id,0,-500,{
				delay:0,
				duration:0.3,
				afterFinishInternal: function(effect) {
					new Effect.MoveBy('flyTelop' + i,
						0,
						-500, {
						duration:0.3,
						fps:30,
						delay:5,
						afterFinishInternal: function(effect) {
							new Effect.MoveBy('flyTelop' + i,
								0,
								1000, {
								duration:0.0,
								fps:0,
								delay:0,
								afterFinish:telopStart
							});
						}
						
					});
				}
		});
	}
