var Site = {
	
	start: function(){
		if ($('downloadContent')) Site.startAccordion();
	},
  
  startAccordion: function() {
   new Accordion($$('#downloadContent h4'), $$('#downloadContent ul') , {
    	  opacity: false,
    	  show: 20, 
    	  alwaysHide: true,
    	  onActive: function(toggler, element){
        	toggler.setStyles({
        	  'color':'#eb7322',
        	  'background':'url("/images/pfeil_on.gif") 0 2px no-repeat'
        	});
        },
        onBackground: function(toggler, element){
        	toggler.setStyles({
        	  'color':'#fff',
        	  'background':'url("/images/pfeil.gif") 0 2px no-repeat'
        	});
        }
    	}   
   );
  }

};

window.addEvent('load', Site.start);

