toggler_show = true;
toggler_open = 0;

window.addEvent('domready', function() {
	var status = {
		'true': 'Fermer la section d\'infos',
		'false': 'Voir plus d\'infos'
	};
	
	//-vertical

	var myVerticalSlide = new Fx.Slide('footer_1').hide();

	$('v_toggle').addEvent('click', function(e){
		e.stop();
		myVerticalSlide.toggle();
	});
	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	myVerticalSlide.addEvent('complete', function() {
		$('vertical_status').set('html', status[myVerticalSlide.open]);
	});
});