function initAccordeons() {
 $('div.accordeon div.content').hide();
 $.each($('div.accordeon'), function(){
 $('#' + this.id + '.expandfirst div.content:first').show();
 });
 $('div.accordeon div.header').click(
 function() {
 var checkElement = $(this).next();
 var parent = this.parentNode.id;
 if((checkElement.is('div')) && (checkElement.is(':visible'))) {
 $('#' + parent + ' div.content:visible').slideUp('normal');
 return false;
 }
 if((checkElement.is('div')) && (!checkElement.is(':visible'))) {
 $('#' + parent + ' div.content:visible').slideUp('normal');
 checkElement.slideDown('normal');
 return false;
 }
 }
 );
}
