var eventItem = '';
var resImg = '';
var nowNum = 0;
var resComment = '';

function constGallery(responceImg,eventObj) {
	eventItem = eventObj;
	resImg = responceImg;
}

jQuery(document).ready(function(){
	constGallery('#mainphoto','.thamPhoto li img');
	jQuery(eventItem).click(function(){ //切り替えるときのボタンid
		jQuery(resImg).ImageSwitch({Type:$(this).attr("eff"), 
			NewImage:$(this).attr("rel"),	
			StartLeft: 30,
			Speed: 100
			});
		$(resImg).attr("alt", $(this).attr("alt"));	
		$("#photoName").text($(this).attr("alt"));
		$("#photoAdd p .pink").html($(this).attr("address"));
		$("#comment").html($(this).attr("comment"));
		$("#photoBtn a").attr("href", $(this).attr("mapLink"));
	});
});
