<!--
  $(document).ready(function() {
    $("#navi-frame a").blend({speed:220});
    $("div.gotop-layout a").blend({speed:250});
    $("div.gotop-layout2 a").blend({speed:250});
    
    $("#navi-frame a").hover(function(){
      $(this).css("cursor","pointer"); 
    },function(){
      $(this).css("cursor","default");
    });
	
    $("a.jquery-text-hover").hover(function(){
      $(this).animate({ color: "#9e363d" }, 150);
    },
    function(){
      $(this).animate({ color: "#463026" }, 300);
    });
  }); 
-->