


/**********************************************/
//Menu Type: Do Not Change! 
/**********************************************/
MENU_TYPE=1; //1: Horizontal
             //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 (MENU CENTRED Dynamicly)
/**********************************************/

TOP=83;
LEFT=140;
 
// Why 325?: In this example, I have 5 Parent menus
// That have each 130 width, 130*5=650 (menu width)
// so to have the menu centered I take 
// the center of the screen (screen.width/2) 
// and I subtract 325, which is IN THIS EXAMPLE
// the center point of the menu
                              


/**********************************************/
//Menu item Dimension
/**********************************************/
WIDTH=123;
HEIGHT=21;

/**********************************************/
//Global Menu Settings for all: Required
/**********************************************/
//Main Menu Items
HALIGN="LEFT";
LayerColor="";
LayerRollColor="";
FONT="verdana";
FONTSIZE="2";
FONTSTYLE="" // "": Normal, "B": Bold, "I": Italic
FONTCOLOR="#000000";
START_CHAR="-"; //Starting Character


/**********************************************/
//Main Parent Settings: Optional 
// leave empty "", if you would like to use 
// the Global Menu Settings above
/**********************************************/
Main_Parent_LayerColor="";
Main_Parent_LayerRollColor=""; 
Main_Parent_FONT="verdana";
Main_Parent_FONTSTYLE="";
Main_Parent_FONTSIZE="";
Main_Parent_FONTCOLOR="";
Main_Parent_START_CHAR="<img src='arrow.gif' border='0' width='13' height='10'>&nbsp;";


/**********************************************/
//Layer Border Properties
/**********************************************/
LayerBorderSize="0";
LayerBorderStyle="solid";
LayerBorderColor="";


/**********************************************/
//Menu Children Offsets
/**********************************************/
TOP_OFFSET=0;
LEFT_OFFSET=0;

