BLANK_IMAGE = '/menu/images/px.gif';

var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#fff",	// color of the item border, if any
		shadow:"#fff",	// color of the item shadow, if any
		bgON:"D39414",		// background color for the items
		bgOVER:"#D39414"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver"	// CSS class  for item which is under mouse
	}
};

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

