$(document).ready(function() {

  $(".show_btn").click(
    function () {
      $(".show_btn").removeClass('active');
      $(".show_detail").fadeOut();
      $(".sketch").show();
      $(".sketch").removeClass('hide');
      $("#"+this.id+"s").hide();
      $(".detail_block").hide();
      $("#"+this.id+"d").fadeIn('slow');
      $(this).addClass('active');
      $(this).blur();
      return false;
    });    
});



