BLANK_IMAGE = 'images/b.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:"#666666",	// color of the item border, if any
		//shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#969678",		// background color for the items
		bgOVER:"#969678"	// 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:"#C9C9B9",	// color of the item border, if any
		//shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#D6FFBE",		// background color for the items
		bgOVER:"#C9C9B9"	// 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
	}
};

var MENU_ITEMS = [
	{pos:'relative', itemoff:[0,190], leveloff:[30,0], style:STYLE, size:[30,180]},
	{code:"Personal Loans",
		sub:[
			{itemoff:[30,0], style:SUB_STYLE},
			{code:"Cash Loan",
			},
			{code:"Salary Loan",			
			}
		]
	},
	{code:"Auto Loans",
		sub:[
			{itemoff:[30,0], style:SUB_STYLE},
			{code:"New Vehicle Loan",
			},
			{code:"Used Vehicle Loan",			
			},
			{code:"Auto Refinance",				
			}
		]
	},
	{code:"Home Loans",
		sub:[
			{itemoff:[30,0], style:SUB_STYLE},
			{code:"Home Refinance Loan",
			},
			{code:"Home Equity Loan",			
			},
			{code:"Home Purchase Loan",				
			}
		]
	}
];
