// Menu Styles
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:"#CAB985",    // background color for the items;
        bgOVER:"#CD9934"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:"menuItem",          // CSS class for items;
        OVER:"menuItemOver"     // CSS class  for item which is under mouse;
    }
};

var STYLE2 = {
    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:"#CAB985",    // background color for the items;
        bgOVER:"#CD9934"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:"subMenuItem",          // CSS class for items;
        OVER:"subMenuItemOver"     // CSS class  for item which is under mouse;
    }
};

var VERT_BOX = {
    border:1,              // item's border width, pixels; zero means "none";
    shadow:0,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#CAB985",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON:"white",      // background color for the items
        bgOVER:"#CAB985"   // background color for the item which is under mouse right now
    },
    css:{
        ON:"projItem",     // CSS class for items;
        OVER:"projItem"    // CSS class for item which is under mouse;
    }
};
