// 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', '/'],
['About us', null, null,
    ['Our Company', '/about.aspx'],
    ['Our Mission', '/mission.aspx'],
    ['Our Vision', '/vision.aspx'],
    ['Our Team', '/team.aspx'],
    ['Locate us', '/locate.aspx']
],
['Portfolio', null, null,
    ['Moursel SMS', '/moursel.aspx'],
    ['MourselMailer', '/mourselmailer.aspx'],
    ['B-Alert', '/balert.aspx'],
    ['MourselCard', '/mourselcard.aspx'],
    ['Oreka', '/oreka.aspx'],
    ['ActiveChem', '/activechem.aspx']
],
['Training', '/Training.aspx'],
['Careers', '/career.aspx'],
['Contact us', '/contactus.aspx']

];


