
function folder_hide_all( object_id )
{
	if( $('folder_'+object_id+'_1') ) $('folder_'+object_id+'_1').style.display='none';
	if( $('folder_'+object_id+'_2') ) $('folder_'+object_id+'_2').style.display='none';
	if( $('folder_'+object_id+'_3') ) $('folder_'+object_id+'_3').style.display='none';
	if( $('folder_'+object_id+'_4') ) $('folder_'+object_id+'_4').style.display='none';
	if( $('folder_'+object_id+'_5') ) $('folder_'+object_id+'_5').style.display='none';
	
	
	if( $('link_'+object_id+'_1') ) $('link_'+object_id+'_1').className='inactive';
	if( $('link_'+object_id+'_2') ) $('link_'+object_id+'_2').className='inactive';
	if( $('link_'+object_id+'_3') ) $('link_'+object_id+'_3').className='inactive';
	if( $('link_'+object_id+'_4') ) $('link_'+object_id+'_4').className='inactive';
	if( $('link_'+object_id+'_5') ) $('link_'+object_id+'_5').className='inactive';
	
	
	
	return true;	
}