window.addEvent('domready', function(){	var wellsBrochuresSlider = new Fx.Slide($('wellsBrochures'));	var specialtyBrochuresSlider = new Fx.Slide($('specialtyBrochures'));	var otherBrochuresSlider = new Fx.Slide($('otherBrochures'));	$('toggleWellsBrochures').addEvent('click', function(e){		e = new Event(e);		otherBrochuresSlider.slideOut();		$('wellsBrochures').style.display = 'block';		wellsBrochuresSlider.slideIn();		e.stop();	});	$('toggleOtherBrochures').addEvent('click', function(e){		e = new Event(e);		specialtyBrochuresSlider.slideOut();		$('otherBrochures').style.display = 'block';		otherBrochuresSlider.slideIn();		e.stop();	});	$('toggleSpecialtyBrochures').addEvent('click', function(e){		e = new Event(e);		wellsBrochuresSlider.slideOut();		$('specialtyBrochures').style.display = 'block';		specialtyBrochuresSlider.slideIn();		e.stop();	});});