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