$(document).ready(function() {
  $("h1.box_big_head span.tab_1").click(function() {
    $("div.box_big_body div.hp_tab_3").hide();
    $("div.box_big_body div.hp_tab_2").hide();
    $("div.box_big_body div.hp_tab_1").show();
    $(this).parent().children("span.tab").removeClass("current_tab");
    $(this).addClass("current_tab");
  });
  $("h1.box_big_head span.tab_2").click(function() {
    $("div.box_big_body div.hp_tab_3").hide();
    $("div.box_big_body div.hp_tab_1").hide();
    $("div.box_big_body div.hp_tab_2").show();
    $(this).parent().children("span.tab").removeClass("current_tab");
    $(this).addClass("current_tab");
  });
});
