function dom_init() {

//FAQ-Aufklapper

$('.section-8 #col1 h3').each(function(){
  $(this).addClass('question').click(function(){
    $(this).next().slideToggle();
  }).after('<div class="answer"></div>');
});

$('.answer').each(function(){
  var stop = false;
  do {
    var elem = $(this).next()[0];
    if (elem != undefined) {
      if (elem.tagName != "H3") {
        $(elem).appendTo(this);
      } else {
        stop = true;
      }
    } else { stop = true; }
  } while ( stop == false);
});

//Kontaktformular
/*
$('#contactform select').change(function(){
  if (this.value == "Termin für Anprobe") {
    $(this).parent().next().slideDown(150);
  } else {
    $(this).parent().next().slideUp(150);
  }
});

*/


$('a[rel=lightbox]').fancybox();



}
