BLANK_IMAGE = 'images/b.gif';

var STYLE = {
  border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#FFFF55",	// color of the item border, if any
		shadow:"#003366",	// color of the item shadow, if any
		bgON:"#003366",		// background color for the items
		bgOVER:"#FFFF55"	// 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 STYLE_SECOND = {
  border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#003366",	// color of the item border, if any
		shadow:"#003366",	// color of the item shadow, if any
		bgON:"#FFFF55",		// background color for the items
		bgOVER:"#003366"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMSOn",		// CSS class for items
		OVER:"clsCMSOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[290,195], style:STYLE},
	{code:"HOME", format:{size:[25,60],itemoff:[0,25]}
    ,url:'index.html'},
	{code:"L'OSTELLO", format:{size:[25,104],itemoff:[0,72]}
    ,url:'ostello.html'},
	{code:"LE CAMERE", format:{size:[25,106],itemoff:[0,116], leveloff:[21,0]}
    ,url:'camere.html'
    ,sub:[
      {itemoff:[21,0],style:STYLE_SECOND},
			{code:"Chiesolina", url:"chiesolina.html"},
			{code:"Stetta", url:"stetta.html"},
			{code:"Casone", url:"casone.html"},
			{code:"Castello", url:"castello.html"},
			{code:"Fontana", url:"fontana.html"},
			{code:"Case Guidi", url:"caseguidi.html"},
			{code:"Cafaggio", url:"cafaggio.html"},
      {code:"Camerata", url:"camerata.html"}		
		]},
	{code:"I PREZZI", format:{size:[25,86]},itemoff:[0,118]
    ,url:'prezzi.html'},
	{code:"CONTATTI", format:{size:[25,96]},itemoff:[0,98]
    ,url:'contatti.html'},
	{code:"CARTINA", format:{size:[25,88]},itemoff:[0,108]
    ,url:'cartina.html'}
];

