$(document).ready(function() {

/*<!-- $(".barra_testo").click(function(){
								
	 if($("#aperto_testo").css("height") == '350px' ){
      //$(".aperto_testo").animate( { width:"350px"}, 2000 );
	  $("#aperto_testo").animate({height: '15px'}, {duration: 2000,complete: function() { $('.barra_testo').removeClass('barra_testo_aperta').addClass('barra_testo_chiusa'); } });
	 }
	 else if($("#aperto_testo").css("height") != '0px' ){
	  //$(".aperto_testo").animate( { width:"0px"}, 2000 );	
	  $("#aperto_testo").animate({height: '350px'}, {duration: 2000,complete: function() {
	    $('.barra_testo').removeClass('barra_testo_chiusa').addClass('barra_testo_aperta');
	   }
	  });
	 }
      
	});
});-->*/


 $(".barra_testi").click(function(){

	var size = 0;
	var i = 0;
	var divElements = document.getElementsByTagName("div");	
	var id = "";	
	
	for(i=0;i<divElements.length;i++){
		 if(divElements[i].id == "aperto_testi"){
			 size = 505;
			 id = "aperto_testi";
		 }else if(divElements[i].id == "aperto_testi_more"){
			 size = 612;
			 id = "aperto_testi_more";
		 }
	}
				
	 if($("#"+id).css("width") == '0px' ){
      //$(".aperto_testo").animate( { width:"350px"}, 2000 );
	  $("#"+id).animate({width: size+'px'}, {duration: 2000,complete: function() { $('.barra_testi').removeClass('barra_testi_chiusa').addClass('barra_testi_aperta'); } });
	 }
	 else if($("#"+id).css("width") != '0px' ){
	  //$(".aperto_testo").animate( { width:"0px"}, 2000 );	
	  $("#"+id).animate({width: '0px'}, {duration: 2000,complete: function() {
	    $('.barra_testi').removeClass('barra_testi_aperta').addClass('barra_testi_chiusa');
	   }
	  });
	 }
      
	});
});



