/*-------------------------------------------------
************* Parameter Settings ******************
---------------------------------------------------*/
 
 
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 = "spacer.gif"		//specifies a custom plus image.
	this.minus_image = "spacer.gif"		//specifies a custom minus image.
	this.pm_width_height = "1,1"		//Width & Height  - Note: Both images must be the same dimensions.
 
 
	this.folder_image = "spacer.gif"	//Automatically applies to all items which may be expanded.
	this.document_image = "spacer.gif"	//Automatically applies to all items which are not expandable.
	this.icon_width_height = "1,1"	//Width & Height  - Note: Both images must be the same dimensions.
 
 
 
 
 
 
 
    /*---------------------------------------------
    General Settings
    ---------------------------------------------*/
 
 
	this.indent = 8;			//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;		\
										   text-align:center;         \
										   border-bottom: border-bottom:1px solid; \
                                           font-weight:inherit;			\
                                           font-family:Tahoma;			\
                                           font-size:17px;			\
                                           color:#002730;			\
										   padding-top:4px;         \
										   padding-bottom:3px;      "
										   
 
 
        this.sub_item_styles =            "text-decoration:none;		\
											text-align: left;           \
                                           font-weight:normal;			\
                                           font-family:Tahoma;			\
										   margin-left: -12px; \
                                           font-size:75%;			\
                                           color:#404d60;			"
 
 
 
	/* Styles may be formatted as multi-line (seen above), or on a single line as shown below.
	   The expander_hover_styles apply to menu items which expand to show child menus.*/
 
 
 
	this.main_container_styles = "padding:0px; font-size: 17px; font-weight:normal; color:#002730; text-align:center; "
	this.sub_container_styles = "padding-top:0px; padding-bottom:0px;"
 
	this.main_link_styles = "color:#404d60; text-decoration:none;"
	this.main_link_hover_styles = "color:#002730; text-decoration:none;"
 
	this.sub_link_styles =  "color:#404d60; text-decoration:none; "
	this.sub_link_hover_styles =  "color:#404d60; text-decoration:none;"
 
	this.main_expander_hover_styles =  "color:#404d60; text-decoration:none; "
	this.sub_expander_hover_styles =  "color:#404d60; text-decoration:none;"
 
 
}
 
 
