/**
 * 管理 - 一覧の詳細を開く
 * @author 	yamazaki@re-set.ne.jp(2009.02)
 * @version	1.0.2
 */
// クリックすると詳細が開きます
$(function(){
	$("p.infotitle a").click(function() {

		$(this).toggleClass("detail-on");				// 矢印を下向き⇔横向き
		var a_id 		= $(this).attr('id');		// ID名を取得
		var no 			= a_id.replace(/a/,'b');	// a → bに変更（詳細のID）
		var b_id 		= "p#" + no;				// ID名に変更
		$(b_id).slideToggle(500);
		return false;

	});	
});
