/*-------------------------------------------------
************* Parameter Settings ******************
---------------------------------------------------*/
node7 = true

function tmenudata0()
{
  /*---------------------------------------------
  Image Settinngs (icons and plus minus symbols)
  ---------------------------------------------*/

	this.imgage_gap = 0			//The image gap is applied to the left and right of the folder and document icons.
						//In the absence of a folder or document icon the gap is applied between the
						//plus / minus symbols and the text only.
	
	this.plus_image = basePath + "_templates/images/nav_close.gif"		//specifies a custom plus image.
	this.minus_image = basePath + "_templates/images/nav_open.gif"		//specifies a custom minus image.
	this.pm_width_height = "10,10"		//Width & Height  - Note: Both images must be the same dimensions.

	this.folder_image = ""	//Automatically applies to all items which may be expanded.
	this.document_image = ""	//Automatically applies to all items which are not expandable.
	this.icon_width_height = ""	//Width & Height  - Note: Both images must be the same dimensions.

  /*---------------------------------------------
  General Settings
  ---------------------------------------------*/

	this.indent = 0;			//The indent distance in pixels for each level of the tree.
	this.use_hand_cursor = true;		//Use a hand mouse cursor for expandable items, or the default arrow.

  /*---------------------------------------------
  Tree Menu Styles
  ---------------------------------------------*/

  this.main_item_styles =           "text-decoration:none;		\
                                     font-weight:normal;			\
                                     font-family:Arial;			\
                                     font-size:12px;			\
                                     color:#BF5FDD;			\
                                     padding:2px;			\
									 margin: 0;"


  this.sub_item_styles =            "text-decoration:none;		\
                                     font-weight:normal;			\
                                     font-family:Arial;			\
                                     font-size:12px;			\
                                     color:#BF5FDD;			\
									 margin: 0;"

	this.main_container_styles = "padding:0px;"
	this.sub_container_styles = "padding-top:7px; padding-bottom:7px;"

	this.main_link_styles = "color:#BF5FDD; text-decoration:none;"
	this.main_link_hover_styles = "color:#9900CC; text-decoration:underline;"

	this.sub_link_styles = ""
	this.sub_link_hover_styles = ""

	this.main_expander_hover_styles = "color:#9900CC; text-decoration:underline;";
	this.sub_expander_hover_styles = "";
}