$(function(){

	$(".thumSHImage").click(function(){

		nomber = ($(this).attr("id")).replace("main_", "");

		//サブ画像　リンク
		thumSHHref = $("#main_" + nomber).attr("href");

		thumSHImage = $("#" + nomber).attr("src");

		thumSHAlt = $("#main_" + nomber).attr("alt");
		
		thumSHTitle = $("#" + nomber).attr("title");

		$("#thumSHImageMain").attr("href", thumSHHref);

		$("#thumSHImageMain").attr("class", "main_" + nomber + "_main");

		$("#mainImage").attr("src", thumSHImage);

		$("#mainImage").attr("title", thumSHTitle);

		$("#photocomment").html(thumSHAlt);

		return false;
	});

	$("#thumSHImageMain").click(function(){

		classMain = ($(this).attr("class")).replace("_main", "");

		$("#" + classMain + "_seaclet").click();

		return false;
	});
});
