
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:"419CB9",		// background color for the items
		bgOVER:"#419CB9"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"menuOn",		// CSS class for items
		OVER:"menuOver"	// CSS class  for item which is under mouse
	}
};


var STYLEsub = {
	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:"757575",		// background color for the items
		bgOVER:"#EBB02F"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"subOn",		// CSS class for items
		OVER:"subOver"	// CSS class  for item which is under mouse
	}
};


