BLANK_IMAGE = 'images/spacer.gif';
var STYLE_HERE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	borders:[1,1,1,1],
	color:{
		border:clsColorForBorder,	// color of the item border, if any
		shadow:"black",	// color of the item shadow, if any
		bgON:clsColorForMain,		// background color for the items
		bgOVER:"#EE2222"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn_HERE",		// CSS class for items
		OVER:"clsCMOver_HERE"	// CSS class  for item which is under mouse
	}
};
var STYLE_HERE_TRANSPARENT = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:clsColorForBorder,	// color of the item border, if any
		shadow:"black",	// color of the item shadow, if any
		bgON:clsColorForMain,		// background color for the items
		bgOVER:clsColorForMain	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn_HERE_TRANSPARENT",		// CSS class for items
		OVER:"clsCMOver_HERE_TRANSPARENT"	// CSS class  for item which is under mouse
	}
};
var STYLE_NOT_HERE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:clsColorForBorder,	// color of the item border, if any
		shadow:"black",	// color of the item shadow, if any
		bgON:clsColorForMain,		// background color for the items
		bgOVER:clsColorForMain	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn_NOT_HERE",		// CSS class for items
		OVER:"clsCMOver_NOT_HERE"	// CSS class  for item which is under mouse
	}
};

