TreeParams = { 

	OPEN_MULTIPLE_MENUS	: false,
	
	TIME_DELAY          : 10,
	OPEN_WHILE_CLOSING	: true,

	OPEN_INSTANTLY		: false,
	
	ICON_TYPE_INDIVIDUAL  : false,
	
	CLOSED_OVER_MENU_ICON : "/res/img/bul_c.gif",
	OPEN_MENU_ICON : "/res/img/bul_c-d.gif",
	OPEN_OVER_MENU_ICON : "/res/img/bul_c-d.gif",
	
	IMG_EXT : {
		DOWN : "-d",
		OVER : "",
		DOWN_OVER : "-d"
	}
	// if ICON_TYPE_INDIVIDUAL is false, then you can ignore these.
};


//-----PERSISTENCE USER PARAMS--------------
/**
 * LISTENER_SCRIPT_SRC is the supporting file for browsers that 
 * support neither addEventListener nor attachEvent.
 * Change LISTENER_SCRIPT_SRC to point to global.js on YOUR server.
 */
var LISTENER_SCRIPT_SRC = "library/global.js";


/**
 * PERSISTENCE_MILLIS - int 
 * How long to save the tree state between visits.
 */
var MS_PER_DAY = 1000 * 60 * 60 * 24;
var PERSISTENCE_MILLIS = -1; // 1 day

//-----END PERSISTENCE USER PARAMS--------------


// this function fires onload.
fireOnload( function() {
		saveTreeOnUnload("contentScripts");
		restoreTreeState("contentScripts", window.SECTION||null);
});

function demo(uri){window.open(uri);return false;}