
$(function(){
	$("#bnrBox img , .bnrBox img").hover(
		function(){
			$(this).stop().animate({opacity: 0.9}, 300);
		},
		function(){
			$(this).stop().animate({opacity: 1.0}, 300);
		}
	);
});


