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