BLANK_IMAGE = '/java/b.gif';

var STYLE1 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#ffffff",	// color of the item border, if any
		shadow:"#efefef",	// color of the item shadow, if any
		bgON:"#A9A9A9",		// background color for the items
		bgOVER:"#3A4A60"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"Style1MOn",		// CSS class for items
		OVER:"Style1MOver"	// CSS class  for item which is under mouse
	}
};

var STYLE2 = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:1,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		shadow:"#666666",	// color of the item shadow, if any
		bgON:"#E6D8BD",		// background color for the items
		bgOVER:"#726241"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"Style2MOn",		// CSS class for items
		OVER:"Style2MOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[0,0], itemoff:[0,125], leveloff:[0,99], style:STYLE1, size:[25,125]},

	{code:'', url:'/index.html',
		format:{image:"/image/btn_home.gif", oimage:"/image/btn_home.gif", imgsize:[25,125]}
	},
	{code:'', url:'/main/about_us.html',
		format:{image:"/image/btn_aboutus.gif", oimage:"/image/btn_aboutus.gif", imgsize:[25,125]}

	},

	{code:'', url:'/furniture/ca_warehouse.html',
		format:{image:"/image/btn_products.gif", oimage:"/image/btn_products.gif", imgsize:[25,125]},
		sub:[
			{leveloff:[25,15], style:STYLE2, size:[20,150], itemoff:[19,0]},
			{code:"California Warehouse", url:'/furniture/ca_warehouse.html', format:{image:"", oimage:"", imgsize:[0,0]}},
			{code:"Container Order", url:'/furniture/living_room.html', format:{image:"", oimage:"", imgsize:[0,0]},
				sub:[
					{leveloff:[2,140], style:STYLE2, size:[20,100], itemoff:[19,0]},
					{code:"Living Room", url:'/furniture/living_room.html', format:{image:"", oimage:"", imgsize:[0,0]}},
					{code:"Dinign Room", url:'/furniture/dining_room.html', format:{image:"", oimage:"", imgsize:[0,0]}},
					{code:"Bedrooms", url:'/furniture/bedroom.html', format:{image:"", oimage:"", imgsize:[0,0]}},
					{code:"Accent", url:'/furniture/accent.html', format:{image:"", oimage:"", imgsize:[0,0]}},
				]
			},
		]
	},

	{code:'', url:'/main/contact_us.html',
		format:{image:"/image/btn_customer.gif", oimage:"/image/btn_customer.gif", imgsize:[25,160]},
		sub:[
			{leveloff:[25,35], style:STYLE2, size:[20,100], itemoff:[19,0]},
			{code:"Contact Us", url:'/main/contact_us.html', format:{image:"", oimage:"", imgsize:[0,0]}},
			{code:"Dealer Only", url:'/main/dealer_only.html', format:{image:"", oimage:"", imgsize:[0,0]}},
			{code:"RMA Policy", url:'/main/rma_policy.html', format:{image:"", oimage:"", imgsize:[0,0]}},
			{code:"Open Account", url:'/main/open_account.html', format:{image:"", oimage:"", imgsize:[0,0]}},
		]
	},

];



