$(document).ready(function() {
  document.documentElement.className += " js";
  
 if ( $(".tabs").length > 0 ) { 
  $(".tabs").accessibleTabs({
    tabhead: 'h3', 
    currentInfoText: 'Aktueller Tab',
    fx:"show",
    fxspeed:null 
  });
}
 if ( $(".tabs_plz").length > 0 ) { 
  $(".tabs_plz").accessibleTabs({
    tabhead: 'h5', 
    currentInfoText: 'Aktueller Tab',
    fx:"show",
    fxspeed:null 
  });
}
 if ( $("#mycarousel").length > 0 ) { 
  $("#mycarousel").jcarousel();
}

});