/** * ========================================================================== * * javascript for AZLINK. * 提携施設用 * * ========================================================================== */ $(function() { var icoClose = '../images/facility/btListClose.gif'; var icoOpen = '../images/facility/btListOpen.gif'; /** * 初期設定 */ $('#facilityListBody li').each(function() { $(this).find('.itemContent').hide(); $(this).find('.listOpenBt img').attr({ src: icoOpen, alt: '開く' }); }); /** * アクション設定 */ $('.listOpenBt a').click(function() { var target = $(this).parent().prev(); $(target).slideToggle('fast', function() { var dispStatus = $(this).is(':visible'); if (dispStatus == true) { $(this).next().find('img').attr({ src: icoClose, alt: '閉じる' }); } else { $(this).next().find('img').attr({ src: icoOpen, alt: '開く' }); } }); }); });