//Author: Younes Bouab
//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:
/**********************************************/
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
/**********************************************/

var Browser = navigator.userAgent.toLowerCase();
if (Browser.search(/msie\s(\d+(\.?\d)*)/) != -1)
{
	TOP=220;
}
else TOP=200;
{
}
if (window.screen.width < 1024) {
LEFT=110;
}
if (window.screen.width > 1020) {
LEFT=230	;
}
if (window.screen.width > 1200) {
LEFT=360;
}




/**********************************************/
//Menu item Dimension
/**********************************************/
WIDTH=140;
HEIGHT=20;

/**********************************************/
//Global Menu Settings for all: Required
/**********************************************/
//Main Menu Items
HALIGN="Left";
LayerColor="#FFFFFF";
LayerRollColor="#CCCCCC"
/*LayerRollColor="#1688BC"*/
FONT="Arial";
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="Arial";
Main_Parent_FONTSTYLE="B";
Main_Parent_FONTSIZE="";
Main_Parent_FONTCOLOR="";
Main_Parent_START_CHAR="<img src='images/arrow.gif' border='0' width='13' height='10'>&nbsp;";


/**********************************************/
//Layer Border Properties
/**********************************************/
LayerBorderSize="1";
LayerBorderStyle="solid";
LayerBorderColor="#000000";


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