$(document).ready(function(){
		$(".shop_inner a img,.shop_box a img,#sbs_t td a").hover(
			function(){
				$(this).fadeTo(0.1,0.7);
			},
			function(){
				$(this).fadeTo(0.1,1);
			}
		);
 });
