$(document).ready(function(){ 

  $('#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)'));
  $('#leistung03').jqm({overlay: 0, modal:false, trigger: 'a#link03'}).jqmAddClose($('a.more:not(#link03)')); 
  $('#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)')); 

  $("a.more").click(function(){
	$("#start").css("display", "none");
    if( !$(this).hasClass("selected") ) {
      $(this).addClass("selected");
      $(".more").not(this).removeClass("selected"); 
    }
    else {
      return false;
    }
      
    //if ( $("#start").css("display") == "block" ) {
    //  $("#start").css("display", "none");
    //}        
  });

}); 
