

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

var origsize=106;
$$('.p_text').setStyle('height',origsize);
$$('div.arrow').setStyle('display','inline');
$$('img.img_arrow').setStyle('opacity',0);
$$('.mytoggle').setStyle('cursor','pointer');


zaehler=$$('.mytoggle').length;
myArray=new Array();
if (zaehler!=0){
	for (var i = 0; i < zaehler; i++){

myArray.push(true);	
}
}



var active=-1;
var active2=-1;
var memory=-1;
var dur=550;

 	if ($$('.paket2').length==1){
	$$('.paket2').setStyle('position', 'absolute');
	$$('.paket2').setStyle('top', '365px');
	$$('.paket2').setStyle('left', '375px');
 	$$('#maincontent2').setStyle('height', '1300px');
 	}

$$('.span_arrow').addEvent('mouseover', function(e){
		active2=this.get('id').substr(1);
		$$('.span_arrow')[active2].setStyle('color','#8c8b8d');
		//$$('div.arrow img')[active].setStyle('opacity',0.6);
		});
$$('.span_arrow').addEvent('mouseout', function(e){
		$$('.span_arrow')[active2].setStyle('color','#000000');	
		//$$('div.arrow img')[active].setStyle('opacity',1);
		});
//----------------------------------------------------------------------------		
	
//$$('#d0').addEvent('click', destroy);
		
//---------------------------------------------------------------------------- 
$$('.mytoggle').addEvent('click', destroy=function(e){

	active=this.get('id').substr(1);
	

		
		if (myArray[active]==true){
			
		size = $$('.p_text')[active].getScrollSize().y+12;
		
        var fx = new Fx.Tween($$('.p_text')[active], {
 				duration: dur
				//,transition: 'linear'
 		});

 	if ($$('.paket2').length==1 && active==1){
    //alert($('paket2').getStyle('height'))
 	$$('.paket2').set('tween', {duration: dur});
 	$$('.paket2').tween('top', size-106+365);
 	}
		
	
	 	fx.start('height', size);
		$$('span.span_arrow')[active].set('tween', {duration: dur});
	    $$('img.img_arrow')[active].set('tween', {duration: dur,onComplete:function(){myArray[active]=false;$$('#d'+active).setStyle('cursor','default');}});
		$$('span.span_arrow')[active].tween('opacity', 0);
		$$('img.img_arrow')[active].tween('opacity', 1);
		if(document.all){$$('.arrow')[active].set('tween', {duration: dur});$$('.arrow')[active].tween('margin-top', '102px')}	
	}
		
	});
	
	
$$('.img_arrow').addEvent('click', function(e){
			
		active=this.get('id').substr(1);
		
		 var fxback = new Fx.Tween($$('.p_text')[active], {
 				duration: dur,
 				onComplete:function(){myArray[active]=true;$$('#d'+active).setStyle('cursor','pointer');}
				//,transition: 'linear'
 		});
 		 	if ($$('.paket2').length==1 && active==1){
 			
 	$$('.paket2').tween('top', 365);
 	}
 	
 		fxback.start('height', origsize);
 		$$('span.span_arrow')[active].tween('opacity', 1);
		$$('img.img_arrow')[active].tween('opacity', 0);
		if(document.all){$$('.arrow')[active].tween('margin-top', '0px')}
 		});
 		
 		


 });
