$(function(){
	$("table#kidsd_select input#d_type_a").click(function(){
		$("p#detail_price2").html("￥60,900&nbsp;<span>（taxin）</span>");
		$("span#ch_itemname").html("<input type=\"hidden\" name=\"item_name\" value=\"KIDS DESK A（LOW TYPE）\" />");
		
		var photo_src = $("div#detail_shoping ul li span#thumb1 img").attr("src"); //
		var photo_src = photo_src.replace('s.jpg', '.jpg'); //画像名変更
		$("div#detail_img p img").fadeOut("fast", function(){
			$("div#detail_img p").html("<img src=\"" + photo_src + "\" alt=\"\" />");
			$("div#detail_img img").fadeIn("fast"); //フェードイン
		});
		
		$("span#ch_itemprice").html("<input type=\"hidden\" name=\"item_price\" value=\"58000\" />");
	});
	
	$("table#kidsd_select input#d_type_b").click(function(){
		$("p#detail_price2").html("￥65,100&nbsp;<span>（taxin）</span>");
		$("span#ch_itemname").html("<input type=\"hidden\" name=\"item_name\" value=\"KIDS DESK B（LOW TYPE）\" />");

		var photo_src = $("div#detail_shoping ul li span#thumb2 img").attr("src"); //
		var photo_src = photo_src.replace('s.jpg', '.jpg'); //画像名変更
		$("div#detail_img p img").fadeOut("fast", function(){
			$("div#detail_img p").html("<img src=\"" + photo_src + "\" alt=\"\" />");
			$("div#detail_img img").fadeIn("fast"); //フェードイン
		});
		
		$("span#ch_itemprice").html("<input type=\"hidden\" name=\"item_price\" value=\"62000\" />");
	});
	$("table#kidsd_select input#d_type_c").click(function(){
		$("p#detail_price2").html("￥60,900&nbsp;<span>（taxin）</span>");
		$("span#ch_itemname").html("<input type=\"hidden\" name=\"item_name\" value=\"KIDS DESK C（HIGHT TYPE）\" />");

		var photo_src = $("div#detail_shoping ul li span#thumb3 img").attr("src"); //
		var photo_src = photo_src.replace('s.jpg', '.jpg'); //画像名変更
		$("div#detail_img p img").fadeOut("fast", function(){
			$("div#detail_img p").html("<img src=\"" + photo_src + "\" alt=\"\" />");
			$("div#detail_img img").fadeIn("fast"); //フェードイン
		});
		
		$("span#ch_itemprice").html("<input type=\"hidden\" name=\"item_price\" value=\"58000\" />");
	});
	$("table#kidsd_select input#d_type_d").click(function(){
		$("p#detail_price2").html("￥65,100&nbsp;<span>（taxin）</span>");
		$("span#ch_itemname").html("<input type=\"hidden\" name=\"item_name\" value=\"KIDS DESK D（HIGHT TYPE）\" />");

		var photo_src = $("div#detail_shoping ul li span#thumb4 img").attr("src"); //
		var photo_src = photo_src.replace('s.jpg', '.jpg'); //画像名変更
		$("div#detail_img p img").fadeOut("fast", function(){
			$("div#detail_img p").html("<img src=\"" + photo_src + "\" alt=\"\" />");
			$("div#detail_img img").fadeIn("fast"); //フェードイン
		});
		
		$("span#ch_itemprice").html("<input type=\"hidden\" name=\"item_price\" value=\"62000\" />");
	});
});

