/*
  cmiMenuSettings.js
  by Michael Fleming 
  for Constructive Media Inc.
  created: September 07, 1999
*/

    menuVersion = 4;  
    menuWidth = 140;  //a default setting, each individual parent menu width can be set in cmiMenuArray
    
	//variables affecting child display
	  childOverlap = -2;
    childOffset = 0;
    perCentOver = null;
    secondsVisible = .15;
    
	//font variables for default type, additional changes can be made using html tags in the cmiMenuArray 336699
    fntCol = "#336699";
    fntSiz = "7";
    fntBold = false;
    fntItal = false;
    fntFam = "verdana";
    
	//menu items
    backCol = "#FED1A0";  //background colour, normal DDEEFF
	overCol = "#336699";  //background colour, mouseover 336699
    overFnt = "#FFFFFF";  //font colour, mouseover
    
	//menu box borders and spacing
    borWid = 1;
    borCol = "#E4571B";
    borSty = "solid";
    itemPad = 3;
    
	//arrows
    imgSrc = "images/arrowsubnav.gif";  //image to indicate a child menu exists, usually an arrow of some sort
    imgHt = 7;  // width & height of pointer image
    imgWd = 9;  //
	
	//separators
    separator = 1;  //separator size
    separatorCol = "#E4571B";  //seperator colour 336699
    
    isFrames = false;      
    navFrLoc = "left";     
    
    keepHilite = true; 
    NSfontOver = true;
    clickStart = false;  //set to true to require a click to bring up menu, false for mouseovers
    clickKill = false;
    
	  isCentered = true;
	  templateWidth = 773;
    netscapeOffset = 0;
    thisPage = document.location.href;
