// 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 = [
	['CMS', null, null,
		['CMS Sections', '/index.php?action=cms'],
		['Add New', '/index.php?action=cmsEdit'],
	],
    ['Newsletter', null, null,
		['Email Single property', '/index.php?action=emailProperty'],
	],
    ['Projector', null, null,
		['Template1', 'javascript:popup(\'/index.php?action=projector&t=1\',1200,800)'],
	],
    ['Tools', null, null,
        ['Languages', '/index.php?action=languages'],
        ['Translation', null, null,
    		['Translations', '/index.php?action=translation'],
    		['Add New', '/index.php?action=transEdit'],
    	],
        ['Tutorial', null, null,
    		['CMS - Add section', 'javascript:popup(\'/tutorial/cms_add.htm\',860,780)'],
    		['CMS - Edit section', 'javascript:popup(\'/tutorial/cms_edit.htm\',860,760)'],
            ['Translation - Add section', 'javascript:popup(\'/tutorial/translation_edit.htm\',860,780)'],
    	],
    ],
    ['Logout', '/index.php?action=logout'],
];


var MENU_LIVINSTONE = [
	['CMS', null, null,
		['CMS Sections', '/index.php?action=cms'],
		['Add New', '/index.php?action=cmsEdit'],
	],
	['Properties', null, null,
        ['Import XML', null, null,
    		['1- Download Full XML', '/actions/downloadFullXML.php'],
    		['2- Start Full Import', '/index.php?action=import'],
    		['', null],		
    		['1- Download Update XML', 'http://www.livingstone-estates.com/cron/downloadUpdateXML.php'],
    		['2- Start Update', 'http://www.livingstone-estates.com/cron/manual_update.php'],
    		['', null],	
    		['Empty New Developments', '/index.php?action=deleteNewDev'],
        ],
        ['Google Maps', '/index.php?action=maps'],
	],
    ['Newsletter', null, null,
		['Email Single property', '/index.php?action=emailProperty'],
	],
    ['Projector', null, null,
		['Template1', 'javascript:popup(\'/index.php?action=projector&t=1\',1200,800)'],
	],
    ['Tools', null, null,
        ['Languages', '/index.php?action=languages'],
        ['Translation', null, null,
    		['Translations', '/index.php?action=translation'],
    		['Add New', '/index.php?action=transEdit'],
    	],
        ['Tutorial', null, null,
    		['CMS - Add section', 'javascript:popup(\'/tutorial/cms_add.htm\',860,780)'],
    		['CMS - Edit section', 'javascript:popup(\'/tutorial/cms_edit.htm\',860,760)'],
            ['Translation - Add section', 'javascript:popup(\'/tutorial/translation_edit.htm\',860,780)'],
    	],
    ],
    ['Logout', '/index.php?action=logout'],
];

var MENU_USERS = [
	['CMS', null, null,
		['CMS Sections', '/index.php?action=cms'],
		['Add New', '/index.php?action=cmsEdit'],
	],
    ['Newsletter', null, null,
		['Email Single property', '/index.php?action=emailProperty'],
	],
    ['Projector', null, null,
		['Template1', 'javascript:popup(\'/index.php?action=projector&t=1\',1200,800)'],
	],
	['Properties', null, null,
		['1- Download Update XML', 'http://www.livingstone-estates.com/cron/downloadUpdateXML.php'],
		['2- Start Update', 'http://www.livingstone-estates.com/cron/manual_update.php'],
		['', null],	
		['Empty New Developments', '/index.php?action=deleteNewDev'],
	],
    ['Tools', null, null,
        ['Translation', null, null,
    		['Translations', '/index.php?action=translation'],
    		['Add New', '/index.php?action=transEdit'],
    	],
        ['Tutorial', null, null,
    		['CMS - Add section', 'javascript:popup(\'/tutorial/cms_add.htm\',860,780)'],
    		['CMS - Edit section', 'javascript:popup(\'/tutorial/cms_edit.htm\',860,760)'],
            ['Translation - Add section', 'javascript:popup(\'/tutorial/translation_edit.htm\',860,780)'],
    	],
    ],
    ['Logout', '/index.php?action=logout'],
];

