// 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 = [

['Home Page', '/'],
['Services',null,null,
    ['Developers', '/mrDeveloperInfo.aspx'],
    ['Solutions', '/mrSolutions.aspx'],
    ['Downloads', '/download.aspx'],
    ['Advertise', '/mrAdvertisment.aspx']
],
['Coverage', '/mrDeffOperators.aspx'],
['About us', '/mrAboutUs.aspx'],
['Contact us', '/mrContactUs.aspx'],
['FAQ', '/mrFAQ.aspx'],
['Help', '/mrhelp.aspx']
];


