//Author: Younes Bouab
//Date:   05-02-02
//Title:  Menu Configuration: Config.js
//
//Copyright: Younes Bouab 2001 
//Technical Support: bouaby@SUPEReDITION.com
//
/////////////////////////////////////////////////////////////////////////////////////
//Copyright (c) 2002 Younes Bouab (www.SUPEReDITION.com) Version 1.0
//
//Eperience the DHTML Menu - Get it at www.SUPEReDITION.com
//
//This script can be used freely as long as all copyright messages are intact.
//
//Menu HomePage: http://www.superedition.com/Main.asp?Page=Tutorials&query=Javascript
//////////////////////////////////////////////////////////////////////////////////////
//Menu Configuration File
//
// 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=2;   //1: Horiz   2: Vert

Sort=0;   //Sort: When set to 1, the items are sorted by 
          //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 may not always be in order.  

//Menu Starting point
TOP=413;
LEFT=36;

//Main Parent item Dimension
MP_WIDTH=162;
MP_HEIGHT=51;

//Menu item Dimension
WIDTH=162;
HEIGHT=20;

//Layers Alignment
HALIGN="LEFT";
VALIGN="80";

//Global Menu Settings for all
/**********************************************/
//Main Menu Items
LayerColor="#FFFF99";
LayerRollColor="#66CC33";
FONT="Arial";
FONTSIZE="3";
FONTSTYLE="B"   // "": Normal, "B": Bold, "I": Italic
FONTCOLOR="#006600";   // If menu item has URL, page def link color overrides this
ROLL_FONTCOLOR="#FF6666";  // If menu item has URL, page def link color overrides this
START_CHAR="&nbsp;&nbsp;> "; //Starting Character

//Main Parent Settings: Optional 
// leave empty "" to use the Global Menu Setting
/**********************************************/
Main_LayerColor="#FFFF99";
Main_LayerRollColor="#66CC33"; 
Main_FONT="Arial";
Main_FONTSTYLE="B";
Main_FONTSIZE="3";
Main_FONTCOLOR="#006600";  // If menu item has URL, page def link color overrides this
Main_ROLL_FONTCOLOR="#FF6666";  // If menu item has URL, page def link color overrides this
Main_START_CHAR="";

//Layer Border Properties
/**********************************************/
LB_Size="0";
LB_Style="solid";
LB_Color="#000000";

//Menu Offsets from Main Parent or Horiz Menu
/**********************************************/
M_TOP=1; //180
M_LEFT=1; //154

//Child Offsets from "regular" Parent or Vert menu
/**********************************************/
C_TOP=28;  //28
C_LEFT=5;  //5

//Netscape Offsets for layer positioning
/**********************************************/
NS_TOP=-22;
NS_LEFT=-2;


