// 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_ITEMS1 = [
	['εταιρία', , null,
		['ιστορία', "g011.htm", null,	
		],
		// 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'
		['επικοινωνία', "g012.htm", null,
		],
		
	],
	['υπηρεσίες', , null,
		['τεχν.υποστήριξη', "g021.htm", null,	
		],	
		['συμβουλές & οδηγοί', "g022.htm", null,
		],
			],
	['εγγύηση', "g03.htm", null,
	],
	['κατάλογοι', "g04.htm", null,
	],

];

