/* このJavaScriptファイルはUTF-8でエンコードされています。 */
try {console.log('basic.js');}catch(e){}
$(function(){
	$('img.img2btn').hover(
		function(){ $(this).attr('src', $(this).attr('src').replace('_up.', '_over.')); },
		function(){ $(this).attr('src', $(this).attr('src').replace('_over.', '_up.')); }
	);
});