function dispDetail( id ) {
	var titleElement = document.getElementById( "t" + id );
	var bodyElement  = document.getElementById( "b"  + id );
	if ( titleElement ) {
		if( titleElement.className == "ar_hide" ) {
			titleElement.className = "ar_show";
			Effect.SlideUp( bodyElement,  {duration:0.5}); 
		} else {
			titleElement.className = "ar_hide";
			Effect.SlideDown( bodyElement, {duration:0.5}); 
		}
	}
}

function hideDetail( id ) {

	var bodyElement = document.getElementById( "b" + id );

	//effect_1 = Effect.SlideUp( bodyElement, {from:0.0, to:0.0, duration:0.01} );
	//bodyElement.hide(0.01);
	Element.hide( bodyElement );
}

function initList( target, ids ) {
	for ( i = 0; i < ids.length; i++ ) {
		if ( ids[i] != target ) hideDetail( ids[i] );
	}
	for ( j = 0; j < 70000; j++ ) {
		// ‹óƒ‹[ƒv
	}
	
	if ( target != "" ) {
		var titleElement = document.getElementById( "t" + target );
		titleElement.className = "ar_hide";
		Element.scrollTo(titleElement);
	}
	else if(location.hash != "")
	{
		var tmp = location.hash;
		location.hash = tmp;
	}
}

