$(document).ready(function(){
						   $("a").bind("focus",function(){$(this).blur();});
						   $("#main_navi>div>a>img").hover(
													   function(){
														   $src = $(this).attr("src");
														   $src = $src.replace(".","_hover.");
														   $(this).attr("src",$src);
													   },function(){
														   $src = $(this).attr("src");
														   $src = $src.replace("_hover","");
														   $(this).attr("src",$src);
													   });
						   $(".b_list>ul>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   $(".f_list>ul>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   $(".group_list>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   $(".works_list>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   $(".blog_list>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   $(".flink_list>li>a>img").hover(
													   function(){
														   $(this).css("borderColor","666666");
													   },function(){
														   $(this).css("borderColor","cccccc");
													   });
						   });