// 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 = [
	['Otros', null, null,
		['Reseñas', 'home.php?opt=res', null], 
		['Artículos','home.php?opt=dir',null],
		['Noticias','home.php?opt=not',null],
		['Enlances','home.php?opt=enl',null],
		['Colaboradores','home.php?opt=col',null],
		['Cine y Tv','home.php?opt=cin',null],
		['Cond.Generales','http://www.todovertical.com/congenerales.htm','_blank']
	],
    ['BLOGs', null, null,
		['Freeride Team','http://www.todovertical.com/freeride/','_blank'],
		['Running Team','http://www.todovertical.com/running/','_blank'],
		['Jon y Unai','http://www.todovertical.com/jon_unai/','_blank'],
		['Club V+','http://www.todovertical.com/blogclub/','_blank']
	],
	['CLUB', null, null,
		['Web Club','http://www.todovertical.com/club','_blank'],
		['Foro Club','http://www.todovertical.com/club-foro/index.php','_blank'],
		['Blog Club','http://www.todovertical.com/blogclub/','_blank']
	]
];

