BLANK_IMAGE = 'images/b.gif';

var NOSTYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"",		// color of the item border, if any
		shadow:"",		// color of the item shadow, if any
		bgON:"#8BC16F",		// background color for the items
		bgOVER:"#8BC16F"	// 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 STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#8CC170",	// color of the item border, if any
		shadow:"#89BC69",	// color of the item shadow, if any
		bgON:"#A0CF8C",		// background color for the items
		bgOVER:"#A0CF8C"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"green_submenu",		// CSS class for items
		OVER:"green_submenu_over"	// CSS class  for item which is under mouse
	}
};


var MENU_ITEMS = [
	{pos:'relative', itemoff:[0,50], leveloff:[29,0], style:NOSTYLE, size:[29,60]},
	{code:'<img src="images/office.gif" width="60" height="29" />', url:"office.php",
	ocode:'<img src="images/office-over.gif" width="60" height="29" />',
		sub:[
			{itemoff:[21,0], style:STYLE, size:[29,196]},
			{code:"LOCATIONS", url:"location.php"},
			{code:"INSURANCE/BILLING/FINANCING", url:"financing.php"},
			{code:"PATIENT FORMS", url:"patient_forms.php"},
		]
	},

];

					