
/*

          Tips & Tricks

             1: Use the 'enable_visual_design_mode' parameter below to turn the visual design pad on or off.
                When set to false the visual pad is not loaded and there is no overhead added to the menu. All
                required source code for the menu to function is included within this document.  There are no
                communications with OpenCube or other third party servers when the design pad is disabled.

             2: Adjust the "function imenus_data0()" numeric id in the statement below to match the numeric id of
                the id='imenus0' 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.

             3: To specifically define settings for an individual item or container, apply classes or inline styles
                directly to the UL and A tags in the HTML tags which define your menus structure and links above.

             4: Use the parameter options below to define borders and padding.  Borders and padding specified
                within the menus HTML structure may cause positioning and actual sizing to be offset a bit in
                some browsers.

             5: Padding values in sequence apply to the top, right, bottom, and left edges in that order.

*/




/*-------------------------------------------------
************* Parameter Settings ******************
---------------------------------------------------*/


function imenus_data0(){


	this.enable_visual_design_mode = false			//turns the visual design pad option on or off

	this.main_is_horizontal = true
	this.menu_showhide_delay = 150




   /*---------------------------------------------
   Global Menu Styles
   ---------------------------------------------*/

	//Main Menu

	this.main_container_styles = "background-color:#A50C8A; border-style:solid; border-color:#666666; border-width:0px; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px; "
	this.main_item_styles = "color:#ffffff; text-align:center; font-family:Arial; font-size:14px; font-weight:bold; text-decoration:none; padding-top:3px; padding-right:6px; padding-bottom:3px; padding-left:6px; border-style:none; border-color:#000000; border-width:0px; "
	this.main_item_hover_styles = "background-color:#999999; color:#FFFFFF; "
	this.main_item_active_styles = "text-decoration:none; "


	//Sub Menu

	this.subs_container_styles = "background-color:#1AB5FF; border-style:solid; border-color:#333333; border-width:1px; padding-top:5px; padding-right:0px; padding-bottom:0px; padding-left:0px; "
	this.subs_item_styles = "color:#333333; text-align:left; font-size:12px; font-weight:bold; text-decoration:none; padding-top:2px; padding-right:6px; padding-bottom:2px; padding-left:6px; border-style:none; border-width:1px; "
	this.subs_item_hover_styles = "background-color:#999999; color:#FFFFFF;"
	this.subs_item_active_styles = "text-decoration:none; "



}




