/*
  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 = .4;
    
	//font variables for default type, additional changes can be made using html tags in the cmiMenuArray
    fntCol = "#ffffff";
    fntSiz = "7";
    fntBold = false;
    fntItal = false;
    fntFam = "verdana";
    
	//menu items
    backCol = "#336699";  //background colour, normal
	  overCol = "#DDEEFF";  //background colour, mouseover
    overFnt = "#336699";  //font colour, mouseover
    
	//menu box borders and spacing
    borWid = 1;
    borCol = "#DDEEFF";
    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 = "#DDEEFF";  //seperator colour
    
    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 = 700;
    netscapeOffset = 0;
    thisPage = document.location.href;
