﻿$(document).ready(function(){
  
    $(".eng_color a").stop().hover(function() {
      $(this).stop().animate({ color: "#1672ac" }, 400);
        },function() {
    $(this).animate({ color: "#333" }, 500);
        });
				
				
    $(".jpn_color a").stop().hover(function() {
    $(this).stop().animate({ color: "#ac6016" }, 400);
        },function() {
    $(this).animate({ color: "#333" }, 500);
        })
 });
