$(document).ready(function(){ 
  $('div.toggler-c').toggleElements( 
    { fxAnimation:'slide', fxSpeed:'slow', className:'toggler' } ); 
 
  $('#leistung01').jqm({overlay: 0, modal:false, trigger: 'a#link01'}).jqmAddClose($('a.more:not(#link01)')); 
  $('#leistung02').jqm({overlay: 0, modal:false, trigger: 'a#link02'}).jqmAddClose($('a.more:not(#link02)')); 
  $('#leistung04').jqm({overlay: 0, modal:false, trigger: 'a#link04'}).jqmAddClose($('a.more:not(#link04)'));  
  $('#leistung05').jqm({overlay: 0, modal:false, trigger: 'a#link05'}).jqmAddClose($('a.more:not(#link05)')); 
  $('#leistung06').jqm({overlay: 0, modal:false, trigger: 'a#link06'}).jqmAddClose($('a.more:not(#link06)')); 
  $('#leistung07').jqm({overlay: 0, modal:false, trigger: 'a#link07'}).jqmAddClose($('a.more:not(#link07)'));  
  $('#leistung08').jqm({overlay: 0, modal:false, trigger: 'a#link08'}).jqmAddClose($('a.more:not(#link08)'));
  $('#leistung09').jqm({overlay: 0, modal:false, trigger: 'a#link09'}).jqmAddClose($('a.more:not(#link09)'));  
  $('#leistung10').jqm({overlay: 0, modal:false, trigger: 'a#link10'}).jqmAddClose($('a.more:not(#link10)'));
  $('#leistung12').jqm({overlay: 0, modal:false, trigger: 'a#link12'}).jqmAddClose($('a.more:not(#link12)'));
  $('#tabelle01').jqm({overlay: 0, modal:false, trigger: 'a#link13'});
  $('#tabelle02').jqm({overlay: 0, modal:false, trigger: 'a#link14'});
  
  $("a.more").click(function(){
    if( !$(this).hasClass("selected") ) {
      $(this).addClass("selected");
      $(".more").not(this).removeClass("selected"); 
    }
    else {
      return false;
    }
      
    if ( $("div#start").css("display") == "block" ) {
      $("div#start").css("display", "none");
    }        
  });

}); 
