//function initToggleList() {
//	$$('.toggle_list').each(function (ul) {
//		ul.down('li a').observe('click', function (event) {
//			event.stop();
//			var elementToToggle = ul.down('ul');
//			var fxOptions = { duration: .5 };
//
//			if (elementToToggle.visible()) {
//				new Effect.BlindUp(elementToToggle, fxOptions);
//				this.removeClassName('hover');
//				//this.setStyle({ backgroundImage: 'fleche-droite.gif' });
//			} else {
//				new Effect.BlindDown(elementToToggle, fxOptions);
//				this.addClassName('hover');
//				//this.setStyle({ backgroundImage: 'fleche-en-bas.gif' });
//			}
//		});
//	});
//}
//
//document.observe('dom:loaded', initToggleList);

jQuery(document).ready(function() {
  jQuery('.showHide').hide();
  jQuery('a.first').each(function() {
    jQuery(this).click(function()
    {
      jQuery(this).parent().next().toggle();
      return false;
    });
  });
})
