  // front menu
  $(document).ready(function(){
    $(".front_box_left_on").hide();
    $(".front_box_center_on").hide();
    $(".front_box_right_top_on").hide();
    $(".front_box_right_bottom_on").hide();

    $(".front_box_left").mouseover(function() {
        $(".front_box_left_on").show();
      }).mouseout(function(){
        $(".front_box_left_on").hide();
    });
    
    $(".front_box_center").mouseover(function() {
        $(".front_box_center_on").show();
      }).mouseout(function(){
        $(".front_box_center_on").hide();
    });
    
    $(".front_box_header_right_top").mouseover(function() {
        $(".front_box_right_top_on").show();
        $(this).css('cursor','pointer');
      }).mouseout(function(){
        $(".front_box_right_top_on").hide();
        $(this).css('cursor','auto');
      });
    
    $(".front_box_header_right_bottom").mouseover(function() {
        $(".front_box_right_bottom_on").show();
        $(this).css('cursor','pointer');
      }).mouseout(function(){
        $(".front_box_right_bottom_on").hide();
        $(this).css('cursor','auto');
      });
  });

