$(document).ready(
	function(){
		$("#bch a img").hover(function(){
			$(this).fadeTo("fast", 0.7); // mouseOver alpha 0.7
		},function(){
			$(this).fadeTo("nomal", 1.0); // mouseOut alpha 1
		});
	});
