$(document).ready(function(){
 $("#check_me_out").click(function() {
     $("#box_with_code").show("slow");
     });
  $("#view_explain_me").click(function() {
    $("#explain_me").show("slow");
  });
});
