// ------------------
// clas color
// ------------------

// Defines for colors
var colorBody = 0;
var colorHead = 1;
var colorTabNav = 2;
var colorHeadline = 3;

// public colorObject
var colors = new Array ();

// ----------------------
// define all colors here
// ----------------------

function color (color,bgColor)
{
    this.color = color;
    this.backgroundColor = bgColor;
}

function GetBackgroundColor (idx)
{
debugger
    return colors [idx].backgroundColor;
}
function GetHoverColor ()
{
debugger
//    return "#e1e4f3";			//"#fdffec";
    return GetBackgroundColor (colorBody);
}