/* ---------------------------*/
/* ready -------------*/
/* ---------------------------*/
$(document).ready(function () {
							
						
 //-----------------//
 //akkordeon -------//
 //-----------------//
 if(  $(".akkordeon").length > 1 ){
	
	$(".akkordeon").each(function(i){
			   
		var shorttext = trim( $(this).children('.container').children('.longtext').children('.longtext_content').children('p').text().substring(0, 250) );
		if( shorttext.length != 0 ){ shorttext +=' ...'; }
		// insert shortext into the specific html-tag
		$(this).children('.container').children('.shorttext').children('.paragraph').html( shorttext );
	
	 });
	 $(".akkordeon").click(function(){
		 
		 
		 if( $(this).hasClass('active_akkordeon') ){			
				var textheight = $(this).children('.container').children('.shorttext').height();					
				
				$(this).children('.container').children('.longtext').fadeOut( 500);		
				$(this).children('.container').animate({
						height: textheight + 'px'
						 }, 1000, 'swing', function() {
						$(this).children('.shorttext').fadeIn( 1000 );
						$('.active_akkordeon').removeClass('active_akkordeon');
		
				 });	
				//$(this).removeClass('active_akkordeon');
				
		 }else{		 
					 
			 if( $('.active_akkordeon').length > -1 ){
				//aktive Akkordeon-Box schließen
				 var textheight = $('.active_akkordeon').children('.container').children('.shorttext').height();	
				$('.active_akkordeon').children('.container').children('.longtext').fadeOut( 500);						
				$('.active_akkordeon').children('.container').animate({
						height: textheight + 'px'
						 },1000, 'swing', function() {
						$(this).children('.shorttext').fadeIn( 1000 );
						
							
				 });	
				 $('.active_akkordeon').removeClass('active_akkordeon');
				
			 }
			 
			 
			  //neue Akkordeon-Box öffnen	
			 var textheight = $(this).children('.container').children('.longtext').height()+40;
			
			 $(this).addClass('active_akkordeon');
			 $(this).children('.container').children('.shorttext').fadeOut( 500);	
			
			 $(this).children('.container').animate({
				 height: textheight+100+'px'//100 ... padding oder margin im content-bereich
			 },1000, 'swing', function(){			 
				 $(this).children('.longtext').fadeIn( 500 );
			
			 });
	 	}
	});
	 
 }else{
	//	alert('only one akkordeon');
	$('.akkordeon').addClass('active_akkordeon');
	$('.akkordeon').children('.container').children('.shorttext').css('display','none'); 
	$('.akkordeon').children('.container').children('.longtext').css('display','block'); 

 }
	
});
function trim(s)
{
	var l=0; var r=s.length -1;
	while(l < s.length && s[l] == ' ')
	{	l++; }
	while(r > l && s[r] == ' ')
	{	r-=1;	}
	return s.substring(l, r+1);
}



