/* カスタマイズ用のJavaScriptコードをここに記述してください */
function searchGps() {
document.formGps.submit();
}
function searchAdcd(adcd) {
document.formAddrL.adcd.value = adcd;
document.formAddrL.submit();
}
$(function(){
/*------------ TOPのタブ切り替え ------------*/
(function changeSearchType() {
var $nav_list = $(".local-nav-01 li");
if (!$nav_list.length) return;
var $contents = $(".wrap_tabs > section");
var idx = $nav_list.index($nav_list.filter(".is-current"));
if (idx < 0) idx = 0;
$contents.hide();
$contents.eq(idx).show();
$nav_list.on("click", function() {
var idx = $nav_list.index(this);
$nav_list.removeClass("is-current");
$(this).addClass("is-current");
$contents.hide();
$contents.eq(idx).show();
});
}());
/*------------ FW検索結果のタブ切り替え ------------*/
(function changeFWResult() {
var $nav_list = $(".local-nav-02 li");
if (!$nav_list.length) return;
var $contents = $(".wrap_tabs > section");
var idx = $nav_list.index($nav_list.filter(".is-current"));
if (idx < 0) idx = 0;
$contents.hide();
$contents.eq(idx).show();
$nav_list.on("click", function() {
var idx = $nav_list.index(this);
$nav_list.removeClass("is-current");
$(this).addClass("is-current");
$contents.hide();
$contents.eq(idx).show();
});
}());
/*------------ 条件で絞りこむのトグル/都道府県のトグル ------------*/
(function toggleList() {
var $list = $(".js-toggle-01 dd");
if (!$list.length) return;
$list.hide();
$(".js-toggle-01 dt").on("click", function() {
$(this).toggleClass("is-close");
$(this).next().toggle();
});
}());
});