// Part 1 - Styles
var STYLE = {
    border:1,              // item's border width, pixels; zero means "none";
    shadow:2,              // 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:"white",      // background color for the items;
        bgOVER:"#D9EAED"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:"menuCrumb",           // CSS class for items;
        OVER:"menuCrumbHover"          // CSS class  for item which is under mouse;
    }
};
