﻿var show_obj = null;

$(document).ready(function(){
	//	詳細の初期設定
	$("dd.accordion_content:not").hide();
	
	//	トリガーの挙動定義
	$("dt.accordion_toggle").click(function(event){
		//	全てを閉じる
		$("dd.accordion_content:not").slideUp(800);
		
		
		if(show_obj == null || show_obj != event.target) {
			//	何も開いてない、または別なのを開いてたので開く。
			//	ダミー画像を差替える
			var img = $("img", $(this).next());
			var img_cnt = img.size();
			var img_tmp = null;
			for(var i=0; i<img_cnt; i++) {
				img_tmp = img.get(i);
				img_tmp.src = img_tmp.name;
			}
			
			//	開く処理
			$(this).next().slideDown(800);
			show_obj = event.target;
			
		} else {
			//	開いてたのを押されたので全て閉じる（初期化）
			show_obj = null;
		}
		
		//	終了
		return false;
	});

});
