window.addEvent('domready', function() {
	
    var accordion = new Accordion('a.heading', 'div.body', {
        opacity: false , display: -1
    }, $('simplelists'));
    
    if( window.location.hash != '' ) {
    	
    	hash = window.location.hash.replace('#','');
    	accordion.elements.each(function(item, index) {
    		if( hash == item.id && index < accordion.togglers.length) {
    			accordion.display(index);
    		}
    	}); 
    }
});
