$(function(){
	//マウスオーバー
	$(".n_global_navi ul li img").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"));
	});
	//ドロップダウン表示	   
	$("ul.topmenu li").hover(function () {
    	$("ul:not(:animated)",this).show();
 	},
  	function () {
    	$("ul:not(:animated)",this).hide();
  });
});

