// USE WORDWRAP AND MAXIMIZE THE WINDOW TO SEE THIS FILE
c_styles={};c_menus={}; // do not remove this line

// You can remove most comments from this file to reduce the size if you like.




/******************************************************
	(1) GLOBAL SETTINGS
*******************************************************/

c_hideTimeout=200;		 		// 1000==1 second
c_subShowTimeout=200;
c_keepHighlighted=true;
c_findCURRENT=false; 			// find the item linking to the current page and apply it the CURRENT style class
c_findCURRENTTree=true;
c_overlapControlsInIE=true;
c_rightToLeft=false;			 // if the menu text should have "rtl" direction (e.g. Hebrew, Arabic)




/******************************************************
	(2) MENU STYLES (CSS CLASSES)
*******************************************************/

// You can define different style classes here and then assign them globally to the menu tree(s)
// in section 3 below or set them to any UL element from your menu tree(s) in the page source


c_imagesPath=""; // path to the directory containing the menu images


c_styles['MM']=[ // MainMenu (the shorter the class name the better)
[
 
// MENU BOX STYLE

0,					// BorderWidth
'solid',			// BorderStyle (CSS valid values except 'none')
'#8F90C4',			// BorderColor ('color')
5,					// Padding
'#CBCBEF',			// Background ('color','white','[image_source]')
'',					// IEfilter (only transition filters work well - not static filters)
''					// Custom additional CSS for the menu box (valid CSS)
],[

// MENU ITEMS STYLE

'0',					// BorderWidth
'none',					// BorderStyle (CSS valid values except 'none')
0,					// OVER BorderStyle
'#000000',					// BorderColor ('color')
0,					// OVER BorderColor
0,					// Padding
'',			        // Background ('color','white','[image_source]')
'transparent',		// OVER Background
'#cecece',			// Color
'#ffc600',			// OVER Color
'12px',				// FontSize (values in CSS valid units - %,em,ex,px,pt)
'Trebuchet MS',			// FontFamily
'normal',			// FontWeight (CSS valid values - 'bold','normal','bolder','lighter','100',...,'900')
'none',				// TextDecoration (CSS valid values - 'none','underline','overline','line-through')
'none',				// OVER TextDecoration
'left',				// TextAlign ('left','center','right','justify')
0,					// ItemsSeparatorSize
'solid',			// ItemsSeparatorStyle (border-style valid values)
'#CBCBEF',			// ItemsSeparatorColor ('color','white')
0,					// ItemsSeparatorSpacing
true,				// UseSubMenuImage (true,false)
'',	// SubMenuImageSource ('[image_source]')
'',	// OverSubMenuImageSource
5,					// SubMenuImageWidth
3,					// SubMenuImageHeight
'8',				// SubMenuImageVAlign ('pixels from item top','middle')
'solid',			// VISITED BorderStyle
'#white',			// VISITED BorderColor
'',			        // VISITED Background
'',			        // VISITED Color
'none',				// VISITED TextDecoration
'',	                // VISITED SubMenuImageSource
'solid',			// CURRENT BorderStyle
'#CBCBEF',			// CURRENT BorderColor
'#FFFBF0',			// CURRENT Background
'#white',			// CURRENT Color
'none',				// CURRENT TextDecoration
'',	                // CURRENT SubMenuImageSource
'',					// Custom additional CSS for the items (valid CSS)
'',					// OVER Custom additional CSS for the items (valid CSS)
'',					// CURRENT Custom additional CSS for the items (valid CSS)
''					// VISITED Custom additional CSS for the items (valid CSS)
]];

c_styles['SM']=[ // SubMenus
[
// MENU BOX STYLE

0,					// BorderWidth
'solid',			// BorderStyle (CSS valid values except 'none')
'#1a3d8b',			// BorderColor ('color')
0,					// Padding
'#d4d3d3',			// Background ('color','white','[image_source]')
'',					// IEfilter (only transition filters work well - not static filters)
''					// Custom additional CSS for the menu box (valid CSS)
],[

// MENU ITEMS STYLE

1,					// BorderWidth
'solid',			// BorderStyle (CSS valid values except 'none')
'solid',			// OVER BorderStyle
'#ffffff',			// BorderColor ('color')
'#white',			// OVER BorderColor
3,					// Padding
'#b4c4d2',			// Background ('color','white','[image_source]')
'#264c7d',			// OVER Background
'#3c3c3c',			// Color
'#ffffff',			// OVER Color
'12px',				// FontSize (values in CSS valid units - %,em,ex,px,pt)
'Trebuchet MS',			// FontFamily
'normal',			// FontWeight (CSS valid values - 'bold','normal','bolder','lighter','100',...,'900')
'none',				// TextDecoration (CSS valid values - 'none','underline','overline','line-through')
'none',				// OVER TextDecoration
'left',				// TextAlign ('left','center','right','justify')
0,					// ItemsSeparatorSize
'solid',			// ItemsSeparatorStyle (border-style valid values)
'#ffffff',			// ItemsSeparatorColor ('color','white')
0,					// ItemsSeparatorSpacing
false,				// UseSubMenuImage (true,false)
'',		// SubMenuImageSource ('[image_source]')
'',	// OverSubMenuImageSource
3,					// SubMenuImageWidth
5,					// SubMenuImageHeight
'7',				// SubMenuImageVAlign ('pixels from item top','middle')
'solid',			// VISITED BorderStyle
'#white',			// VISITED BorderColor
'',			// VISITED Background
'#3c3c3c',			// VISITED Color
'none',				// VISITED TextDecoration
'',	// VISITED SubMenuImageSource
'solid',			// CURRENT BorderStyle
'#CBCBEF',			// CURRENT BorderColor
'#FFFBF0',			// CURRENT Background
'#white',			// CURRENT Color
'none',				// CURRENT TextDecoration
'',	// CURRENT SubMenuImageSource
'',					// Custom additional CSS for the items (valid CSS)
'',					// OVER Custom additional CSS for the items (valid CSS)
'',					// CURRENT Custom additional CSS for the items (valid CSS)
''					// VISITED Custom additional CSS for the items (valid CSS)
]];


/******************************************************
	(3) MENU TREE FEATURES
*******************************************************/

// Normally you would probably have just one menu tree (i.e. one main menu with sub menus).
// But you are actually not limited to just one and you can have as many menu trees as you like.
// Just copy/paste a config block below and configure it for another UL element if you like.


c_menus['Menu1']=[ // the UL element with id="Menu1"
[
 
// MAIN-MENU FEATURES

'horizontal',	// ItemsArrangement ('vertical','horizontal')
'relative',		// Position ('relative','absolute','fixed')
'16px',			// X Position (values in CSS valid units- px,em,ex)
'3px',			// Y Position (values in CSS valid units- px,em,ex)
false,			// RightToLeft display of the sub menus
false,			// BottomToTop display of the sub menus
-3,				// X SubMenuOffset (pixels)
6,				// Y SubMenuOffset
'10em',			// Width (values in CSS valid units - px,em,ex) (matters for main menu with 'vertical' ItemsArrangement only)
'MM',			// CSS Class (one of the defined in section 2)
false			// Open sub-menus onclick (default is onmouseover)
],[

// SUB-MENUS FEATURES

0,				// X SubMenuOffset (pixels)
0,				// Y SubMenuOffset
'auto',			// Width ('auto',values in CSS valid units - px,em,ex)
'100',			// MinWidth ('pixels') (matters/useful if Width is set 'auto')
'300',			// MaxWidth ('pixels') (matters/useful if Width is set 'auto')
'SM',			// CSS Class (one of the defined in section 2)
false			// Open sub-menus onclick (default is onmouseover)
]];
