// アコーディオン コントロール
window.onload = function()
{
	
//	if (all_f != undefined && all_f != null)
//	{var acc = all_f;}
	
	
	
	
	var accObj = new accordion( "acc",{
		resizeSpeed  : 8,
		direction    : 'vertical',
		defaultSize  : {
			width : null,
			height : null
		}
	});

	//----- BNJ Only
	// How to use: ./faq.html#QXX
	var faqID= ( ( window.location.hash ).substr(2) )* 1;
	faqID = ( faqID == 0 ) ? faqID : faqID -1;
	accObj.activate($$("#acc .accordion_toggle")[ faqID ]);
	if ( faqID > 0 ) { location.hash= window.location.hash };

}





