TreeParams = { 

	OPEN_MULTIPLE_MENUS	: true,
	
	TIME_DELAY          : 10,
	OPEN_WHILE_CLOSING	: true,

	OPEN_INSTANTLY		: true,
	
	IMG_EXT	: {
		OVER		: "-over",
		DOWN		: "-open",
		DOWN_OVER	: "-open-over"
	},
	
	ICON_TYPE_INDIVIDUAL  : false,
	// if ICON_TYPE_INDIVIDUAL is true, then you can ignore these.
	CLOSED_OVER_MENU_ICON : "img/menuicon-over.gif",
	OPEN_MENU_ICON        : "img/menuicon-open.gif",
	OPEN_OVER_MENU_ICON   : "img/menuicon-open-over.gif"
	
	
};


//-----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  =  "src/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 * MS_PER_DAY; // 1 day

//-----END PERSISTENCE USER PARAMS--------------



// this function fires onload.
fireOnload( function() {
	// Change the parameter "nav" to match the id of your tree.
		saveTreeOnUnload("nav");
		restoreTreeState("nav", null);
});


