$(window).addEvent('domready', function(){
	$$('.tx-xcibtravelagency-pi1 .period').each(function(p){
		var info = p.getElement('div.informations');
		if(info){
			var height = info.getScrollSize().y;
			var fx = new Fx.Morph(info, {});
			p.getElement('div.more-information a').addEvent('click', function(){
				if(info.getCoordinates().height==0){
					fx.start({height:[0,height]});
				}else{
					fx.start({height:[height,0]});
				}
			});
		}
	});
});

