BLANK_IMAGE = 'http://www.grahamsorganics.com/menu/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:"#5E976C",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#5E976C",		// background color for the items
		bgOVER:"#FDF7A7"	// 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 MENU_ITEMS = [
	{pos:"relative", itemoff:[0,140], leveloff:[21,0], style:STYLE, size:[22,140]},
	{code:"Home", url:"http://www.grahamsorganics.com/",
		sub:[
			{itemoff:[21,0]},
			]
	},
	{code:"About Us", url:"http://www.grahamsorganics.com/aboutus.php",
		sub:[
			{itemoff:[21,0]},
		]
	},
	{code:"Products", url:"http://www.grahamsorganics.com/products.php",
		sub:[
			{itemoff:[21,0]},
			{code:"Beef", url:"http://www.grahamsorganics.com/beef.php",
				sub:[ ]
			},
			{code:"Eggs", url:"http://www.grahamsorganics.com/eggs.php",
				sub:[ ]
			},
			{code:"Poultry", url:"http://www.grahamsorganics.com/poultry.php",
				sub:[ ]
			},
			{code:"Flour", url:"http://www.grahamsorganics.com/flour.php",
				sub:[ ]
			},
			{code:"Meat Processing", url:"http://www.grahamsorganics.com/processing.php",
				sub:[ ]
			},
			{code:"Feeds", url:"http://www.grahamsorganics.com/feeds.php",
				sub:[ ]
			}
			
		]
	},
	{code:"Contact Us", url:"http://www.grahamsorganics.com/contactus.php",
	sub:[
			{itemoff:[21,0]},
			
		]	
	},
	
];

