//画像クリック時の切替処理
jQuery(document).ready(function($){ //$を使用可能にする処理
	$(".s_photo a").click(function(){
		var changeSrc = $(this).attr("href");
		$("#target").fadeOut(
			"fast",
			function(){
				$(this).attr("src", changeSrc);
				$(this).fadeIn();
			}
		);
		return false;
	});
});

