/** グローバルメニュー hover */
$(function(){
	$("#globalmenu img").each(function(){
		$(this).hover(
			      function(){
				  $(this).attr("src", $(this).attr("src").replace(".jpg", "_on.jpg"));
			      },
			      
			      function(){
				  $(this).attr("src", $(this).attr("src").replace("_on.jpg", ".jpg"));
		      })
		    })
	    });

/** ヘッドメニュー hover */
$(function(){
	$("div#headmenu img").each(function(){
		$(this).hover(
			      function(){
				  $(this).attr("src", $(this).attr("src").replace(".gif", "_on.gif"));
			      },
			      
			      function(){
				  $(this).attr("src", $(this).attr("src").replace("_on.gif", ".gif"));
		      })
		    })
	    });

/** フッター hover */
$(function(){
	$("#notes img").each(function(){
		$(this).hover(
			      function(){
				  $(this).attr("src", $(this).attr("src").replace(".gif", "_on.gif"));
			      },
			      
			      function(){
				  $(this).attr("src", $(this).attr("src").replace("_on.gif", ".gif"));
		      })
		    })
	    });

