// 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 = [
    ['Αρχική', 'index.html'],
    ['Προφίλ', 'company_profile.html'],
    ['Προϊόντα', null, null,
		// this is how item scope settings are defined
		['AGiLETEQ CRM. Σύστημα Διαχείρισης Πελατειακών Σχέσεων ', 'agileteq_crm.html'],
		['AGiLETEQ INTERTRACER. Σύστημα Ιχνηλασιμότητας & Διαχείρισης Παραγωγής', 'agileteq_intertracer.html'],
		// this is how multiple item scope settings are defined
		['AGiLETEQ CONNECT. Εφαρμογές Διασύνδεσης', 'connect.html'],
		['AGiLETEQ WEB. Εφαρμογές Διαδικτύου', 'web_applications.html'],
		['AGiLETEQ CUSTOM. Εφαρμογές Ανάπτυξης Προσαρμοσμένου Λογισμικού', 'custom.html'],
		 ,
	],
    ['AGiLETEQ eShop', 'http://www.securepaynet.net/default.aspx?prog_id=agileteq', {'tw':'_blank'}],
    ['Συνεργάτες', 'partners.html'],
    ['Επικοινωνία', 'contact_us.html']
    
	
	
];


