/*

          Tips & Tricks

             1: Adjust the "function tmenudata0()" numeric id in the statement below to match the numeric id of
                the id='tmenu0' statement within the menu structure and links section above.  The numbers must
                match for the menu to work, multiple menus may be used on a single page by adding new sections
                with new id's.

             2: To specifically define settings for an individual item or container, apply classes or inline styles
                directly to the UL, LI, and A tags within the HTML which defines your menus structure and links above.

*/




/*-------------------------------------------------
************* Parameter Settings ******************
---------------------------------------------------*/


function tmenudata0()
{

    /*---------------------------------------------
    Animation Settings
    ---------------------------------------------*/


	this.animation_jump = 10		//Measured in pixels
	this.animation_delay = 5		//Measured in Milliseconds (1/1000s)



    /*---------------------------------------------
    Image Settinngs (icons and plus minus symbols)
    ---------------------------------------------*/


	this.imgage_gap = 5	//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 = "../images/menu_arro_closed.gif"		//specifies a custom plus image.
	this.minus_image = "../images/menu_arro_open.gif"		//specifies a custom minus image.
	this.pm_width_height = "7,7"		//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 = "../images/bullet_leftMenu_sqr.gif"	//Automatically applies to all items which are not expandable.
	this.icon_width_height = "3,3"	//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:bold;			           	\
                                       font-family:Arial;			           	\
                                       font-size:12px;			               		\
                                       color:#666666;			               		\
									   border-top:1px solid white;	\
									   border-bottom:1px solid #999999;	\
                                       "


   	 this.sub_item_styles =        "text-decoration:none;					\
                                       padding:0;						\
									   margin:0px;	\
                                       font-weight:normal;					\
                                       font-family:Arial;					\
                                       font-size:11px;						\
                                       color:#666666;"



	/* 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 = ""
	this.sub_container_styles = "background-color:#ffffff;"

	this.main_link_styles = "color:#000000; text-decoration:none; padding:0;"
	this.main_link_hover_styles = ""


	this.sub_link_styles = "color:#666666; font-size:11px;"
	this.sub_link_hover_styles = "color:#CC0000; opacity: .7; filter: alpha(opacity=70); -moz-opacity: .7;"


	this.main_expander_hover_styles = "color:#CC0000;"

	this.sub_expander_hover_styles = "color:#CC0000; opacity: .7; -moz-opacity: .7;"


}