window.addEvent('domready', function() {
	var status = {
		'true': '<img src="bmw/scripts/minus.gif" width="14" height="10" alt="" />',
		'false': '<img src="bmw/scripts/plus.gif" width="14" height="10" alt="" />'
	};

	//-vertical

	var myVerticalSlide = new Fx.Slide('vertical_slide').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]);
	});

	var myVerticalSlide2 = new Fx.Slide('vertical_slide2').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', status[myVerticalSlide2.open]);
	});

	var myVerticalSlide3 = new Fx.Slide('vertical_slide3').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', status[myVerticalSlide3.open]);
	});


});
