;(function($){
	/* 店舗TOP画面固有の処理 */
	$(function(){
		// 拡大画像をcolorboxに
		$("a.lightbox").colorbox();
	
		// 階層メニュー
		$("ul.menu_link > li:has(ul)").hover(
			function () {
				$(this).css("position", "relative").find("ul").show();
			},
			function () {
				$(this).find("ul").hide().end().css("position", "static");
			}
		);
	
		// ajax設定
		$.ajaxSetup({"cache": false});
	
		// お気に入り店舗登録フレーム表示/非表示
		$("div.shop_detail_header .toggle_favorite_shop_regist_container", $("#container_left")).click(function() {
			$('#favorite_shop_regist_container').slideToggle();
			return false;
		});
	
		// お気に入り店舗登録
		$("#button_add_favorite").click(function() {
			$.ajax({
				type: "POST",
				url: $("#favoriteRegistForm").attr("action"),
				data: $("#favoriteRegistForm").serialize(),
				success: function(data, dataType) {
					if (data != "") {
						var json = eval("(" + data + ")");
						$("div.FErrorMsg", $("#favorite_shop_regist_container")).html(json["msg"]);
					} else {
						$('#favorite_shop_regist_container').slideUp();
					}
				}
			});
		});
	
		// 住所選択
		$("#shop_select_address_area :button").click(function() {
			if ($('#ma_member_address_list').val() == null || $('#ma_member_address_list').val() == "") {
				alert('選択してください');
				return false;
			}
			return chk_target_submit('selectAddressForm');
		});
		
		// 商品選択
		$("div.button_select_menu_item a").click(function() {
			return add_action_link('select')
		});
	});
})(jQuery);
