﻿$(document).ready(function() {
    $("#GQ_btn_1").addClass("hover");
    $("#GQ_btn_1").hover(
              function() {
                  $(this).addClass("hover");
                  $("#GQ_btn_2").removeClass("hover");
                  $("#mid_place_398_2_right_2").hide();
                  $("#mid_place_398_2_right_1").show();
              },
              function() {

              }
            );

    $("#GQ_btn_2").hover(
                  function() {
                      $(this).addClass("hover");
                      $("#GQ_btn_1").removeClass("hover");
                      $("#mid_place_398_2_right_1").hide();
                      $("#mid_place_398_2_right_2").show();
                  },
                  function() {

                  }
             );


});    
