document.observe('dom:loaded', function(){
	$$('#faq .question').each(function(el) {
		new SimpleToggler(el.down('h2'), el.down('div'));
	});

  var url = window.location.href.split('#');
  if(url.length > 1) {
    var id  = url[1];
    if($(id)) {
      $(id).down('div').show();
    }
  }
});
