/********************************************************
Menu Configuration
Created:  29.10.02 18:45
Updated:  07.11.02 13:25

Copyright (c) 2002-03 by Donald Lessau, donald@xbeat.net
********************************************************/

// configuration constructor
function config () {
  // hide combos etc. (csv-listing)
  this.idHideOnCollision="combo,hide1";

  // 20021029: bgcolors of branches (csv-listing)
  this.BgColors = "#ffffff"; //all branches white
  
  // mousing color
  this.clrOver = "#E5F2FF";  //mouseover color: empty to skip mouseover coloring
  this.clrOut = "";  //mouseout color: empty to return to default color
  this.clrOutHard = "#ffffff";  //Opera6 needs a hard coded color
  
  // 20021107: add any URL-parameters, string is appended to *each* link
  this.URLparams = ""; //eg. "&ID=654321"
}

// object is global
var conf = new config();
