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