// JavaScript Document

$(function() {
	$('#block_btn li img').hover(
		function(){
			$(this).attr("src","./img/btn_on.gif");
		},
		function () {
	    	$(this).attr('src','./img/btn.gif');
	  	}
	);
}); 

