// 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 = [
	['πλύση', "g1.htm", null,
		['πλυντήρια', "g11.htm", null,
			['κάθετης φόρτωσης', "g111.htm", null, 
				
			],
			['εμπρόσθιας φόρτωσης', "g112.htm", null,
		
			],
			['πλυντήρια-στεγνωτήρια', "g113.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'
		['στεγνωτήρια', "g12.htm", null,
		
		],
		['πλυντήρια πιάτων', "g13.htm", null,
		
		],
		
	],
	['ψύξη', "g2.htm", null,
		['ψυγειοκαταψύκτες', "g21.htm", null,
		
		],	
		['δίπορτα', "g22.htm", null,
		
		],
		['καταψύκτες', "g23.htm", null,
		
		],
	],
	['εντοιχιζόμενες συσκευές', "hoover-entix.pdf", null,
		
	],
	

];

