BLANK_IMAGE = 'immagini/spacer.gif';

var STYLE = {
	border:0,			// 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:"#DBD8D1",	// color of the item shadow, if any
		bgON:"red",		    // background color for the items
		bgOVER:"#DBD8D1"	// 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 IMAGED_STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:2,			// 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:"white",		// background color for the items
		bgOVER:"#DBD8D1"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOnImaged",	// CSS class for items
		OVER:"clsCMOverImaged"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[0,10], itemoff:[0,99], leveloff:[21,0], style:IMAGED_STYLE, size:[22,100]},
	{code:"Home", url:"index.aspx"
	},
	{code:"Azienda", url:"#", 
		sub:[
			{itemoff:[21,0]},
			{code:"Chi siamo", url:"chisiamo.aspx"
			},
			{code:"Dove siamo", url:"#",
				sub:[
					{leveloff:[0,99]},
					{code:"Cuneo", url:"cuneo.aspx"},
					{code:"Carmagnola", url:"carmagnola.aspx"},
					{code:"Pinerolo", url:"pinerolo.aspx"},
					{code:"Mondov&igrave;", url:"mondovi.aspx"},
					{code:"Alba", url:"alba.aspx"}
				]
			},
			{code:"Contatti", url:"contatti.aspx"
			}
		]
	},
	{code:"Servizi", url:"pagina.aspx?ID=1"},
	{code:"Prodotti", url:"pagina.aspx?ID=2"},
	{code:"Gallery", url:"gallery.aspx"},
	{code:"Links", url:"links.aspx"}
];

