    var STYLE = {
        border:0,              // item's border width, pixels; zero means "none";
        shadow:0,              // item's shadow size, pixels; zero means "none"
        color:{
            border:"#333333",  // color of the item border, if any;
            shadow:"#333333",  // color of the item shadow, if any;
            bgON:"#330000",      // background color for the items;
            bgOVER:"#330000"   // background color for the item
                               // which is under mouse right now;
        },
        css:{
            ON:"on",           // CSS class for items;
            OVER:"over"          // CSS class  for item which is under mouse;
        }
    };
    var SUBMENUSTYLE = {
        border:1,              // item's border width, pixels; zero means "none";
        shadow:0,				// item's shadow size, pixels; zero means "none"
        color:{
            border:"#FFCC00",  // color of the item border, if any;
            shadow:"#330000",  // color of the item shadow, if any;
            bgON:"#330000",      // background color for the items;
            bgOVER:"#330000"   // background color for the item
                               // which is under mouse right now;
        },
		
        css:{
            ON:"sub_on",           // CSS class for items;
            OVER:"sub_over"          // CSS class  for item which is under mouse;
        }
		
    }; 