window.addEvent('domready', function() {
	var status5 = {
		'true': '<IMG SRC="img/moins.png" BORDER=0 class="plus">',
		'false': '<IMG SRC="img/plus.png" BORDER=0 class="plus">'
	};
	
	//-vertical

	var myVerticalSlide5 = new Fx.Slide('vertical_slide5', {mode: 'vertical'}).hide();

	

	$('v_toggle5').addEvent('click', function(e){
		e.stop();
		myVerticalSlide5.toggle();
	});

	
	
	// When Vertical Slide ends its transition, we check for its status
	// note that complete will not affect 'hide' and 'show' methods
	myVerticalSlide5.addEvent('complete', function() {
		$('vertical_status5').set('html', status5[myVerticalSlide5.open]);
	});


	
});
