// 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 = [
	['קישורים', 'links.htm',{'tw' : 'cwindow'}],				  
	['צור קשר', 'mail4/contact.html',{'tw' : 'cwindow'}],				  
	['מקרקעין','real-estate.htm',{'tw' : 'cwindow'}],	
	['תאונות', null, null,
		['תאונות דרכים',null,null,
			['הנחיות שימושיות', 'usful-advice.html',{'tw' : 'cwindow'}],
			['תאונת דרכים-עבודה', 'road-accident.htm',{'tw' : 'cwindow'}],
			['מקדמה על חשבון הפיצוי', 'frequent-payment.htm',{'tw' : 'cwindow'}],
		],	
		['תאונות  אחרות', null, null,
			['תאונות עבודה', 'work-accident.htm',{'tw' : 'cwindow'}],
			['תאונות  שאינן תאונת דרכים', 'reqular-accident.htm',{'tw' : 'cwindow'}],
		],
		['פגיעות רכוש', 'property-damage.htm',{'tw' : 'cwindow'}]		
	],
	['פירסומים', 'lightwindow/iframe2.html',{'tw' : 'cwindow'}],
	['אודות', 'about-mini.html	',{'tw' : 'cwindow'}],
	['דף הבית', 'home.php?flag=close',{'tw' : 'cwindow'}]
];


