var STYLE = {
    border:0,              // item's border width, pixels; zero means "none";
    shadow:0,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#666666",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON:"#cbd9ed",      // background color for the items;
        bgOVER:"#cbd9ed"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON: "clsCMTopOn_header",           // CSS class for items;
        OVER: "clsCMTopOver_header"          // CSS class  for item which is under mouse;
    }
};

var STYLE1 = {
    border:0,              // item's border width, pixels; zero means "none";
    shadow:0,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#666666",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON:"#cbd9ed",      // background color for the items;
        bgOVER:"#3166b6"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON: "clsCMTopOn",           // CSS class for items;
        OVER: "clsCMTopOver"          // CSS class  for item which is under mouse;
    }
};