
/**********************************************/
//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=76;
if ((screen.width == 800)) 
LEFT=10;
else if ((screen.width == 1024))
LEFT=120;
else if ((screen.width == 1280))
LEFT=250;
else if ((screen.width == 1440))
LEFT=340;
else if ((screen.width == 1680))
LEFT=450;
else 
LEFT=245;

/**********************************************/
//Menu item Dimension
/**********************************************/
WIDTH=130;
HEIGHT=23;


/**********************************************/
//Layers Alignment
/**********************************************/
HALIGN="LEFT";
VALIGN="MIDDLE";


/**********************************************/
//Global Menu Settings for all
/**********************************************/
//Main Menu Items
LayerColor="#DEB57B";
LayerRollColor="#DE7B00";
FONT="verdana, Arial";
FONTSIZE="2";
FONTSTYLE="B" // "": Normal, "B": Bold, "I": Italic
FONTCOLOR="#989888";
ROLL_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_ROLL_FONTCOLOR="";
Main_Parent_START_CHAR=" ";


/**********************************************/
//Layer Border Properties
/**********************************************/
LayerBorderSize="0";
LayerBorderStyle="solid";
LayerBorderColor="#000000";


/**********************************************/
//Menu Children Offsets
/**********************************************/
TOP_OFFSET=0;
LEFT_OFFSET=0;