/**********************************************************************************************
                               Tree Items and Content
**********************************************************************************************/
/*  
    Note:  Each <li... tag below creates a new tree item, you may add as many as you wish.  Terminate each line with a backslash '\'.

	Warning:  Double check that there are no extra white spaces after your terminating '\' backslashes, the scroll will fail to
               load if there are extra spaces present.

*/

document.write('\
<ul id="tmenu0" style="display:none;">\
\
	<!-- Main Item 4... --><li expanded=1><span>ABOUT US</span>\
\
\
		<!-- Sub Menu --><ul>\
		<li><a href="vision.html">Vision</a></li>\
		<li><a href="vision.html">Management</a></li>\
		<li><a href="methodology.html">Methodology</a></li>\
		<!-- *END SUB* --></ul></li>\
\
	<!-- Main Item 4... --><li><span>CAREERS</span>\
\
\
		<!-- Sub Menu --><ul>\
		<li><a href="careers.html">Overview</a></li>\
		<li><a href="resume.html">Post Resume</a></li>\
		<!-- *END SUB* --></ul></li>\
\
	<!-- Main Item 4... --><li><span>SOLUTIONS</span>\
\
\
		<!-- Sub Menu --><ul>\
		<li><a href="solu_crm.html">CRM Solutions</a></li>\
		<li><a href="solu_erp.html">Enterprice Resource Planning</a></li>\
		<li><a href="solu_webdesign_e_technologies.html">Web Design & Enabling Technologies</a></li>\
		<li><a href="serv_networking.html">Network Solutions</a></li>\
		<li><a href="solu_package_solutions.html">Package Solutions</a></li>\
		<!-- *END SUB* --></ul></li>\
\
	<!-- Main Item 4... --><li><span>SERVICES</span>\
\
\
		<!-- Sub Menu --><ul>\
		<li><a href="serv_custom_app_development.html">Custom Application Development</a></li>\
		<li><a href="serv_web_i_solutions.html">Web And Internet Solutions</a></li>\
		<li><a href="serv_multimedia_graphics.html">Mutlimedia And Graphics</a></li>\
		<li><a href="serv_networking.html">Networking / Annual Maintenance</a></li>\
		<!-- *END SUB* --></ul></li>\
\
		<!-- Main Item 4... --><li><span>PRODUCTS</span>\
\
\
		<!-- Sub Menu --><ul>\
		<li><a href="pro_financial_cost_ac.html">Financial And Cost Accounting</a></li>\
		<li><a href="updating.html">Project Estimation & Forecasting</a></li>\
		<li><a href="pro_asset_mgt.html">Asset Management</a></li>\
		<li><a href="pro_crm.html">Customer Relationship Management</a></li>\
		<li><a href="updating.html">Education PRO</a></li>\
		<li><a href="pro_hrms.html">Human Resources and Payroll Processing</a></li>\
		<li><a href="pro_production_pro.html">Production PRO</a></li>\
		<li><a href="updating.html">Knowledge And Training Management</a></li>\
		<li><a href="pro_inventory.html">Inventory Planning And Purchasing</a></li>\
		<li><a href="updating.html">Sales Force Automation</a></li>\
		<li><a href="pro_supply_chain_pos.html">Supplay Chain Management & POS</a></li>\
		<li><a href="pro_warehouse.html">Warehouse Management</a></li>\
		<li><a href="pro_workshop_fleet.html">Workshop And Fleet Management</a></li>\
		<!-- *END SUB* --></ul></li>\
\
</ul>');

/**********************************************************************************************
                               Customizable Options and Styles
**********************************************************************************************/

function tmenudata0()
{
    /*---------------------------------------------
    Animation Settings
    ---------------------------------------------*/


	this.animation_jump = 10		//Measured in Milliseconds (1/1000s)
	this.animation_delay = 5		//Measured in pixels

    /*---------------------------------------------
    Image Settinngs (icons and plus minus symbols)
    ---------------------------------------------*/

	this.imgage_gap = 3		//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/plus.gif"		//specifies a custom plus image.
	this.minus_image = "images/minus.gif"	//specifies a custom minus image.
	this.pm_width_height = "9,9"			//Width & Height  - Note: Both images must be the same dimensions.

	this.folder_image = "images/folder.gif"		//Automatically applies to all items which may be expanded.
	this.document_image = "images/document.gif"	//Automatically applies to all items which are not expandable.
	this.icon_width_height = "16,18"		//Width & Height  - Note: Both images must be the same dimensions.

    /*---------------------------------------------
    General Settings
    ---------------------------------------------*/

	this.indent = 5;			//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:Verdana;			\
                                           font-size:11px;			\
                                           color:#333333;			\
                                           padding:2px;				"                                       
                                          
    this.sub_item_styles =            "text-decoration:none;		\
                                           font-weight:normal;			\
                                           font-family:Verdana;			\
                                           font-size:11px;			\
                                           color:#333333;			"			

	/* 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;"
	this.sub_container_styles = "padding-top:8px; padding-bottom:8px;"

	this.main_link_styles = "color:#0066aa; text-decoration:none;"
	this.main_link_hover_styles = "color:#FF9933; text-decoration:underline; font-weight: bold;"
	
	this.sub_link_styles = ""
	this.sub_link_hover_styles = ""
	
	this.main_expander_hover_styles = "text-decoration:underline; color:#FF9933; font-weight: bold;";
	this.sub_expander_hover_styles = "";
	
}

