jQuery(function(){
	jQuery("ul li:not('.not_menu, .sliderImage') img").each(function(){
		var _off  = jQuery(this).attr("src") ;
		var base = _off.match(/(.*?)\.(gif|jpg|png|tiff|bmp)$/) ;
		var _on  = base[1] + "_on." + base[2] ;




		// img タグへ入れ込むがぞうパスの格納
		jQuery(this).data("roll_over", _on)  ;
		jQuery(this).data("roll_out",  _off) ;


		// ろーるおーばーしょり
		jQuery(this).hover(function(){
			jQuery(this).attr("src", jQuery(this).data("roll_over")) ;
		},
		function(){
			jQuery(this).attr("src", jQuery(this).data("roll_out")) ;
		});


	}) ;
});