(function($){
	
	$(window).on('load',function(){
		/* 添付画像をクリックした時のイベントをバインド */
		$(".product_ext_image").bind("click", clickProductListImage);
		
		/* 添付画像のマウスオーバー時のイベントをバインド */
		$(".product_ext_image").bind("mouseover", mouseoverProductListImage);
		
	});
	
	/* プロダクト画像の変更 */
	function _changeProductImage(objThis){
		var select_img_id = objThis.data("img_id");
		var select_img_src = objThis.attr("src");
		$(".product_main_image[data-img_id='" + select_img_id + "']").attr("src", select_img_src);
	}
	
	/* プロダクトページの商品画像をクリックした時 */
	function clickProductListImage(){
		_changeProductImage($(this));
	}
	
	/* プロダクトページの商品画像をマウスオーバーした時 */
	function mouseoverProductListImage(){
		_changeProductImage($(this));
	}
	
}(jQuery));
