var Aktion1 = {
	init: function() {
		var input_fields = $$('div.tx-kampsup-pi1 input');
		input_fields.each(function(input_field, i) {
			input_field.setAttribute('disabled', 'disabled');
		});
		
		var rot_ende_y = $('ballon_rot').getStyle('top');
		$('ballon_rot').setStyle('top', 2000);
		
		$('ballon_rot').set('tween', {duration: 4000+Math.random()*2000});
		var start_rot = function() { $('ballon_rot').tween('top', rot_ende_y) };

		var gelb_ende_y = $('ballon_gelb').getStyle('top');
		$('ballon_gelb').setStyle('top', 2000);
		
		$('ballon_gelb').set('tween', {duration: 4000+Math.random()*2000});
		var start_gelb = function() { $('ballon_gelb').tween('top', gelb_ende_y) };

		var orange_ende_y = $('ballon_orange').getStyle('top');
		$('ballon_orange').setStyle('top', 2000);
		
		$('ballon_orange').set('tween', {duration: 4000+Math.random()*2000});
		var start_orange = function() { $('ballon_orange').tween('top', orange_ende_y) };

		var violett_ende_y = $('ballon_violett').getStyle('top');
		$('ballon_violett').setStyle('top', 2000);
		
		$('ballon_violett').set('tween', {duration: 4000+Math.random()*2000});
		var start_violett = function() { $('ballon_violett').tween('top', violett_ende_y) };

		var gruen_ende_y = $('ballon_gruen').getStyle('top');
		$('ballon_gruen').setStyle('top', 2000);
		
		$('ballon_gruen').set('tween', { 
			duration: 4000+Math.random()*2000, 
			onComplete:function() { 
				input_fields.each(function(input_field, i) {
					input_field.removeAttribute('disabled');
				});
			}
		});
		var start_gruen = function() { $('ballon_gruen').tween('top', gruen_ende_y) };

		start_rot.delay(100);
		start_gelb.delay(Math.random()*500);
		start_orange.delay(Math.random()*1000);
		start_violett.delay(Math.random()*1500);
		start_gruen.delay(Math.random()*2000);
	}
};
window.addEvent('domready', Aktion1.init);

