// JavaScript Document

	/* function showHiddenMenu( id ) {
			setTimeout( 'if( holdHiddenMenu == ' + id + ' ) { var _el = document.getElementById( \'hiddenMenu_' + id + '\' ); if( _el ){ hideHiddenMenu( currentTopItem ); _el.style.display = \'block\'; } }', 100 );
		}

	if( typeof( holdHiddenMenu ) == 'undefined' ) holdHiddenMenu = 0;

	function hideHiddenMenu( id ) {
		setTimeout( 'if( holdHiddenMenu != ' + id + ' ) { var _el = document.getElementById( \'hiddenMenu_' + id + '\' ); if( _el ){ showHiddenMenu( currentTopItem ); _el.style.display = \'none\'; } }', 100 );
	} */
