// JavaScript Document

var accordion;
	
	
		window.addEvent('domready', function(){
			
	accordion = new Accordion('h2.toggler', 'div.element',{
	alwaysHide: true,		
	opacity: false,
	show:-1,
	onActive: function(toggler, element){
		var text = toggler.getText();
		var html = '<img src="images/policy_icon_minus.gif" width="9" height="9" />' + text;
		toggler.setHTML(html);
	},
 
	onBackground: function(toggler, element){
		var text = toggler.getText();
		var html = '<img src="images/policy_icon_plus.gif" width="9" height="9" />' + text;
		toggler.setHTML(html);
		}
}, $('accordion'));
 
 

			
			
			

			
		
			
		}); 
		function display(index) {
  	if (accordion) { // IS THE accordion VARIABLE ASSIGNED/DEFINED?
    accordion.display(index); // YES, IT'S DEFINED, SO CALL accordion.display()
  }
  }