// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Inicio', 'index.html', {'tw': '_self'}],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
	['Productos','productos.html', {'tw': '_self'},
		// this is how item scope settings are defined
		//['Product Page', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}],
		['Paneles Solares', 'paneles.html', {'tw': '_self'}],
		// this is how multiple item scope settings are defined
		//['Inversores', '../ReadMeFirst.html', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}],
		['Inversores', 'inversor.html', {'tw': '_self'}],
		['Controladores', 'controlador.html', {'tw': '_self'}],
		['Bater&iacute;as', 'baterias.html', {'tw': '_self'}],
		['Calentadores de Agua', 'calag.html', {'tw': '_self'}],
		['Refrigeradoras Solares', 'refsolar.html', {'tw': '_self'}],
		['Luces', 'luces.html', {'tw': '_self'}],
		['Generadores', 'geneolicos.html', {'tw': '_self'},
		 	['Eolico', 'geneolicos.html', {'tw': '_self'}],
			['Motor', 'genmot.html', {'tw': '_self'}],
			['Microhidroel&eacute;ctricos', null, null]
		 ],
		['Cercas Electricas', 'cercas.html', {'tw': '_self'}],
	],
	['Galer&iacute;a de Im&aacute;genes', 'galeria.php', {'tw': '_self'}],
	['Servicios en Linea', 'online.html', {'tw': '_self'},
     	['Mapa Clim&aacute;tico', 'mapclimat.html', {'tw': '_self'}],
		['Cotizador', 'cotizador.php', {'tw': '_self'}],
		['Blog Electrysol', 'blog.php', {'tw': '_self'}]
	],
	['Contactenos','contactenos.html', {'tw': '_self'}],
	['Acerca de', 'ingv.html', {'tw': '_self'},
		['Ing. Victor Salda&ntilde;a', 'ingv.html', {'tw': '_self'}],
		['Energ&iacute;a Renovable',  'erenov.html', {'tw': '_self'}]
	]
];


