BLANK_IMAGE = 'images/b.gif';

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#66FFFF",	// color of the item border, if any
		//shadow:"#DBD8D1",	 color of the item shadow, if any
		bgON:"black",		// background color for the items
		bgOVER:"#1C71C3"	// 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:[200,106], itemoff:[0,149], leveloff:[21,0], style:STYLE, size:[22,150]},
	{code:"Windscreen Repair",
		sub:[
			{itemoff:[21,0]},
			{code:"Why Windscreen repair?",url:"/index.php?",
			},
			{code:"SubItem 2",
				sub:[
					{leveloff:[0,99]},
					{code:"SubSubItem 1"},
					{code:"SubSubItem 2"},
					{code:"SubSubItem 3"}
				]
			},
		]
	},
	{code:"Menu 2",
		sub:[
			{itemoff:[21,0]},
			{code:"SubItem 1",
				sub:[
					{leveloff:[0,99]},
					{code:"SubSubItem 1"},
					{code:"SubSubItem 2"},
					{code:"SubSubItem 3"}
				]
			},
		]
	},
	{code:"Menu 3",
		sub:[
			{itemoff:[21,0]},
			{code:"SubItem 1",
				sub:[
					{leveloff:[0,99]},
					{code:"SubSubItem 1"},
					{code:"SubSubItem 2"},
					{code:"SubSubItem 3"}
				]
			},
		]
	}
];
var MENU_Cart = [
	{pos:[200,106], itemoff:[0,149], leveloff:[21,0], style:STYLE, size:[22,150]},
	{code:"Home",url:"/index.php?"},
	{code:"Previous Page",url:"JavaScript:history.back(1)"},
	{code:"Empty Basket",url:"/cart.php?act=cart&mode=emptyCart"},
];