/*
This file was edited by Raymond E. Kinzer, Jr., July 2004.
updates:
23 October 2004 ,RK
04 November 2004,RK
*/
//Author: Younes Bouab
//
//Date Released:   05-31-02 @ 2:25PM
//
//Version 1.25: Supports Frames & solved the MAC OS 9.X and 10 BUG in IE 
//
//Title:  Menu Configuration
//
//Copyright: Younes Bouab 2002 
//
//Technical Support: bouaby@SUPEReDITION.com
//
//Support: SUPEReDITION.com
//
/////////////////////////////////////////////////////////////////////////////////////
//Copyright (c) 2002 Younes Bouab (www.SUPEReDITION.com) Version 1.25
//
//Experience the DHTML Menu - Get it at www.SUPEReDITION.com
//
//***********************************************************************************
//      If you decide to use our menu,  please support us by sending 
//      whatever financial contribution you can afford to: 
//
//
//      SUPEReDITION.com
//      717, 23rd Street #2
//      Sacramento CA 95816 - USA
//
//
//      PayPal Account: Billing@SUPEReDITION.com
//
//  
//      Users that have sent a financial contribution, will be entitled to 
//      1 year of technical support by sending an email to HMenu_Support@SUPEReDITION.com
//      Please, specify the version of the menu used when requesting support.         
//
// 
//***********************************************************************************
//
//All copyright messages MUST STAY intact
//
//Menu HomePage: http://www.superedition.com/Main.asp?Page=Tutorials&query=Javascript
/////////////////////////////////////////////////////////////////////////////////////
//
//
//
/////////////////////////////////////////////////
//Menu Configuration File
/////////////////////////////////////////////////
/////You can change the value of a variable 
/////below or turn it off by making it equal "" 
/////to suit your needs, but you should not
/////delete any variable.
///////////////////////////////////////////////


/**********************************************/
//Menu Type: Do Not Change! 
/**********************************************/
MENU_TYPE=1; //1: Horizental
             //2: Vertical

Sort=0;   //Sort: When set to 1, the 
          //menu items are sorted according 
          //to the index value. This feature
          //can be used when a server side
          //language (asp. jsp. php,...)
          //is used to generate the menu items 
          //from a database and they are not always 
          //in order.  



/**********************************************/
//Menu Starting point
/**********************************************/
TOP=3;	//don't touch, this is fixed within div#menu;3
LEFT=3;	//don't touch, this is fixed within div#menu;3


/**********************************************/
//Menu item Dimension
/**********************************************/
WIDTH=135;		//in pixel size
HEIGHT=20;		//in pixel size

/**********************************************/
//Global Menu Settings for all: Required
/**********************************************/
//Main Menu Items
//basically, these set all the default properties, most obviously for children of menu
HALIGN="center";			//may be "left", "center", or "right"
LayerColor="#00a5c6";			//color of child backgrounds, unselected;63b8ff 
LayerRollColor="#08215A";		//color when mouse scolls over child;08215A
FONT="verdana,times";			//style of font; list several, divided by comma
FONTSIZE="13px";			//font-size in pixels: i.e.- "12px"
FONTSTYLE="normal";			// "normal" , "italic" , "oblique"
FONTWEIGHT="normal";			// "normal" , "bold" , "lighter", "bolder"
FONTCOLOR="#ffffff";			//font-color
START_CHAR=""; 			//Starting Characters

TEXT_LINE="none";			//underlines text/hyperlink: "none" or "underline"


/**********************************************/
//Main Parent Settings: Optional 
// leave empty "", if you would like to use 
// the Global Menu Settings above
/**********************************************/
Main_Parent_LayerColor="#08215A";	//normal background color of parent; 08215A
Main_Parent_LayerRollColor="#63b8ff"; 	//color of parent when mouse scrolls on parent;63b8ff
Main_Parent_FONT="verdana,times";	//style of font; list several, divided by comma
Main_Parent_FONTSTYLE="normal";		// "normal" , "italic" , "oblique"
Main_Parent_FONTWEIGHT="bold";	// "normal" , "bold" , "lighter", "bolder"
Main_Parent_FONTSIZE="14px";		//font-size in pixels: i.e.- "12px"
Main_Parent_FONTCOLOR="#ffffff";
Main_Parent_START_CHAR="";


/**********************************************/
//Layer Border Properties
/**********************************************/
LayerBorderSize="1";
LayerBorderStyle="solid";
LayerBorderColor="#08215A";		//grid/border color; 08215A


/**********************************************/
//Menu Children Offsets
/**********************************************/
TOP_OFFSET=0;
LEFT_OFFSET=3;
