window.addEvent('domready', function(){

	$('showHide').setStyle('height','auto');
	$('switch').setStyle('background','url("/img/2011/bg-arrow-red-left.png") no-repeat scroll 140px center');
	var mySlide = new Fx.Slide('showHide').hide();  //starts the panel in closed state  
	var mySwitch = true;

    $('toggleShowHide').addEvent('click', function(e){
		e = new Event(e);
		mySlide.toggle();
		if (mySwitch){
			mySwitch = false;	
			$('switch').setStyle('background','url("/img/2011/bg-arrow-red.png") no-repeat scroll 140px center');
		}else{
			mySwitch = true;	
			$('switch').setStyle('background','url("/img/2011/bg-arrow-red-left.png") no-repeat scroll 140px center');
		}
		e.stop();
	});

});




