
/*-------------------------------------------------
************* Parameter Settings ******************
---------------------------------------------------*/

//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 
list7 = true
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 



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


   /*---------------------------------------------
   Expand Icon Images
   ---------------------------------------------*/

	this.main_expand_image = ""
	this.main_expand_image_hover = ""
	this.main_expand_image_width = ""
	this.main_expand_image_height = ""
	this.main_expand_image_offx = ""
	this.main_expand_image_offy = ""

	this.sub_expand_image = ""
	this.sub_expand_image_hover = ""
	this.sub_expand_image_width = "16"
	this.sub_expand_image_height = "16"
	this.sub_expand_image_offx = "0"
	this.sub_expand_image_offy = "3"



   /*---------------------------------------------
   Global Menu Styles
   ---------------------------------------------*/

	//Main Menu

	this.main_container_styles = "border-style:none; border-color:#697c83; border-width:0px; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px;"
	this.main_item_styles = 	   "text-decoration:none;		\
								   font-family: Arial, Helvetica, sans-serif;			\
								   font-size:11px;			    \
								   color:#006276;			    \
								   border-style:none;			\
								   text-align:center;			\
								   padding-left: 0px;			\
								   padding-top: 0px;			\
								   padding-right: 0px;			\
								   padding-bottom: 0px;			\
								   border-style:none;			\
								   border-color:#697c83;		\
								   border-width:0px;"
	this.main_item_hover_styles =  "text-decoration:none;		\
								   color:#006276;"
	this.main_item_active_styles = "text-decoration:normal;		\
								   color:#006276;"


	//Sub Menu

	this.subs_container_styles = "background:url('/Images/Navigations/nv_dropdown_bottom.png') no-repeat bottom;border-style:solid; border-top-width:0px; border-left-width:0px; border-right-width:0px; border-bottom-width:0px; border-color:#b8bfc9; padding-top:0px; padding-right:0px; padding-bottom:0px; padding-left:0px;width:201px;  "
    this.subs_item_styles =        "text-decoration:none;		\
								   background:url('/Images/Navigations/nv_dropdown_middle.png') repeat-y;	\
								   width:201px;	\
								   font-family: Arial, Helvetica, sans-serif;			\
								   font-size:11x;				\
								   color:#234271;				\
								   text-align:left;				\
								   padding-left: 10px;			\
								   padding-top: 1px;			\
								   padding-right: 7px;			\
								   padding-bottom: 1px;"	
								   
    this.subs_item_hover_styles =  "background-image:url('/Images/Navigations/nv_dropdown_middle.png') repeat-y;	\
								   color:#c22038;				\
								   border-bottom:0px solid #b8bfc9;"

    this.subs_item_active_styles = "color:#c22038;"
	
	if (navigator.appName == "Microsoft Internet Explorer") {
		var browserVer = navigator.appVersion;
		if(parseInt(browserVer.substr(22,3)) < 7) {
			this.subs_container_styles += "background:url('') #ffffff;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 1px;";
			this.subs_item_styles += "background-image:url('');";
			this.subs_item_hover_styles += "background-image:url('');";
		}
	}
}


