/**********************************************/
//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 (MENU CENTRED Dynamicly)
/**********************************************/

TOP=85;
menuWidth=756;
margin=10;
 screenWidth=document.documentElement.offsetWidth-20;

if (screenWidth> (menuWidth+(margin*2))) {
	LEFT=((screenWidth/2)-(menuWidth/2));
} else {
	LEFT=margin;
}
 
// Why 378?: In this example, I have 4 Parent menus
// That have each 189 width, 189*4=756 (menu width)
// so to have the menu centered I take 
// the center of the screen (screen.width/2) 
// and I subtract 378, which is IN THIS EXAMPLE
// the center point of the menu
                              


/**********************************************/
//Menu item Dimension
/**********************************************/
WIDTH=189;
HEIGHT=17;

/**********************************************/
//Global Menu Settings for all: Required
/**********************************************/
//Main Menu Items
HALIGN="LEFT";
LayerColor="#DBDBDB";
LayerRollColor="#E6E6E6";
FONT="verdana";
FONTSIZE= "1";
FONTSTYLE="" // "": Normal, "B": Bold, "I": Italic
FONTCOLOR="#666666";
START_CHAR="&nbsp;"; //Starting Character


/**********************************************/
//Main Parent Settings: Optional 
// leave empty "", if you would like to use 
// the Global Menu Settings above
/**********************************************/
Main_Parent_LayerColor="#007EC1";
Main_Parent_LayerRollColor="#007EC1"; 
Main_Parent_FONT="verdana";
Main_Parent_FONTSTYLE="B";
Main_Parent_FONTSIZE="1";
Main_Parent_FONTCOLOR="#FFFFFF";
Main_Parent_START_CHAR="";         //"<img src='arrow.jpg' border='0' width='13' height='10'>&nbsp;";


/**********************************************/
//Layer Border Properties
/**********************************************/
LayerBorderSize="0";
LayerBorderStyle="solid";
LayerBorderColor="#000000";


/**********************************************/
//Menu Children Offsets
/**********************************************/
TOP_OFFSET=0;
LEFT_OFFSET=0;