/**
 * List of colors to fade.
 **/
var bgColors = new Array(
	'#aa0505', //Magenta
	'#ebb932', //Gold
	'#82b506', //Army green
	'#0c640c', //Bottle green
	'#077a63', //Turkish
	'#36677e', //Greyish blue
	'#051550', //Indego
	'#571e80', //Deep purple
	'#801e63', //Deep pink?
	'#424242', //Dark grey
	'#8d8d8d'  //Light grey
	);

/**
 * The delay between fades (in seconds).
 **/
var fadeGap = 30;

/**
 * The amount to increase the color with per step.
 * LOW:  Smaller steps, smoother fading.
 * HIGH: Bigger steps, rugged fading.
 **/
var fadeStepping = 3;

/**
 * Delay between each step (in ms). The lower the value,
 * the faster the fading. Too low values will result in
 * SEVERES penalties of increased CPU comsumption.
 **/
var fadeWait = 600;
