$(document).ready(function(){
  //_overという画像に背景を差し替える
	$('#navi a').each(function(e){
		$(this).hover(
			function(){
				$(this).css('background-image',$(this).css("background-image").replace(/^(.+)(\..+)$/,"$1_over$2"))
			},
			function(){
				$(this).css('background-image',$(this).css("background-image").replace(/^(.+)_over(\..+)$/, "$1$2"))
			}					  
		);
	});
});
