 window.addEvent('domready', function() {  
     var accordion = new Accordion($$('.accordion_toggle'),$$('.accordion_content'), {  
         opacity: 0,
				 alwaysHide:true,
				 show:0,
         onActive: function(toggler) { 
				 		toggler.setStyle('color', '#660000'); 
						toggler.setStyle('background', 'transparent url(images/back_head_low.png) no-repeat top left');
						toggler.setStyle('cursor', 'pointer');},
						
         onBackground: function(toggler) { 
				 		toggler.setStyle('color', '#660000');
				 		toggler.setStyle('background', 'transparent url(images/back_head_low.png) no-repeat top right');
						toggler.setStyle('cursor', 'pointer');} 
     });  
		 
		 //make it open on hover  
				$$('.accordion_toggle').addEvent('mouseenter', function() { 
						this.setStyle('color', '#ffffff');
						this.setStyle('background', 'transparent url(images/back_head_low.png) no-repeat bottom left');
						
						
						});
				
				$$('.accordion_toggle').addEvent('mouseleave', function() { 
						this.setStyle('color', '#660000');
						this.setStyle('background', 'transparent url(images/back_head_low.png) no-repeat top right'); }); 

 });  