

$(document).ready(function(){ 
  $(".sdball").click(function(){ 
    $(".sdbtheall").show();
  });

  $(".sdbslowest").click(function(){ 
    $(".sdbtheall").hide();
    $(".sdbtheslowest").show();
  });

  $(".sdbslow1").click(function(){ 
    $(".sdbtheall").hide();
    $(".sdbtheslow1").show();
  });

  $(".sdbslow0p1").click(function(){ 
    $(".sdbtheall").hide();
    $(".sdbtheslow0p1").show();
  });

  $(".sdbslow0p01").click(function(){ 
    $(".sdbtheall").hide();
    $(".sdbtheslow0p01").show();
  });

});

