// colorflow - fade the background color of a given link element
// color1 initial values - Tim Reeves, 2007-11-14

function myrgb (R, G, B) {
	this.R = R;
	this.G = G;
	this.B = B;
}

var lnbase = new myrgb(255,234,184);	/* alles-hg, 8 Zyklen */
var lnpeak = new myrgb(255,246,230);	/* Cream */
var lnup = new myrgb(0,2,8);
var lndn = new myrgb(0,-2,-8);

// flyout menu has the current / hover items darker, not lighter
var fobase = new myrgb(255,234,184);	/* alles-hg, 8 Zyklen */
var fopeak = new myrgb(255,222,138);
var foup = new myrgb(0,-2,-8);
var fodn = new myrgb(0,2,8);

// var fobase = new myrgb(255,243,214);	/* Lighter than surrounding area; 8 cycles */
// var fopeak = new myrgb(255,251,238);	/* Off-White (lighter than cream in middle) */
// var foup = new myrgb(0,1,3);
// var fodn = new myrgb(0,-1,-3);

