// 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', 'default.aspx', { 'tw': '_self', 'sb': 'Home' },
		['Site Map', '_Home/SiteMap.aspx', { 'tw': '_self', 'sb': 'Site Map'}]
	],
	['About HCC', null, null,
		['Who We Are', '_About/WhoWeAre.aspx', { 'tw': '_self', 'sb': 'Who We Are'}],
		['Alliances', '_About/Alliances.aspx', { 'tw': '_self', 'tt': 'Alliances', 'sb': 'Alliances'}],
		['News', '_About/News.aspx', { 'tw': '_self', 'sb': 'News'}],
		['Event Calendar', '_About/Events.aspx', { 'tw': '_self', 'sb': 'Event Calendar'}],
		['Contact Us', '_About/Contact.aspx', { 'tw': '_self', 'sb': 'Contact Us'}],
        ['Career Center', '_About/Career.aspx', { 'tw': '_self', 'sb': 'Career Center'}],
        ['&#9656; Legal', null, null,
            ['Privacy Policies', '_About/Privacy.aspx', { 'tw': '_self', 'sb': 'Privacy Policies'}],
            ['Site Usage', '_About/SiteUsage.aspx', { 'tw': '_self', 'sb': 'Site Usage'}]
        ]
	],
	['Products', null, null,
		['&nbsp; Quick View', '_Products/QuickView.aspx', { 'tw': '_self', 'sb': 'Quick View'}],
		['&#9656; Pharmacy Management', null, null,
            ['RX-1', '_Products/RX-1.aspx', { 'tw': '_self', 'sb': 'RX-1'}],
            ['Visual', '_Products/Visual.aspx', { 'tw': '_self', 'sb': 'Visual'}],
            ['Synercom', '_Products/Synercom.aspx', { 'tw': '_self', 'sb': 'Synercom'}],
            ['Alpha-PC', '_Products/Alpha.aspx', { 'tw': '_self', 'sb': 'Alpha-PC'}]
        ],
		['&#9656; Point of Sale', null, null,
		    ['RX-1 POS', '_Products/RX-1POS.aspx', { 'tw': '_self', 'sb': 'RX-1 POS'}],
		    ['Visual POS', '_Products/VisualPOS.aspx', { 'tw': '_self', 'sb': 'Visual POS'}],
            ['Alpha-POS', '_Products/Alpha-POS.aspx', { 'tw': '_self', 'sb': 'Alpha-POS'}]
        ],
        ['&#9656; Professional Tools', null, null,
            ['Workflow System', '_Products/Workflow.aspx', { 'tw': '_self', 'sb': 'Workflow System'}],
            ['Signature Capture', '_Products/SigCapture.aspx', { 'tw': '_self', 'sb': 'Signature Capture'}],
            ['Remote Fill', '_Products/RemoteFill.aspx', { 'tw': '_self', 'sb': 'Remote Fill'}],
            ['DVR Security', '_Products/DVR.aspx', { 'tw': '_self', 'sb': 'DVR Security'}],
            ['Electronic Prescribing', '_Products/ePrescribing.aspx', { 'tw': '_self', 'sb': 'Electronic Prescribing'}],
            ['Pharmaceutical Care', '_Products/PharmCare.aspx', { 'tw': '_self', 'sb': 'Pharmaceutical Care'}],
            ['Telepharmacy', '_Products/Telepharmacy.aspx', { 'tw': '_self', 'sb': 'Telepharmacy'}],
            ['Time Clock', '_Products/TimeClock.aspx', { 'tw': '_self', 'sb': 'Time Clock'}]
        ],
        ['&nbsp; Add-Ons & Interfaces', '_Products/Interfaces.aspx', { 'tw': '_self', 'sb': 'Add-Ons'}],
        ['&nbsp; FDS - Data Services', '_Products/FDS.aspx', { 'tw': '_self', 'sb': 'FDS'}],
        ['&nbsp; DME Management', '_Products/DME.aspx', { 'tw': '_self', 'sb': 'EZ-DME'}],
        ['&nbsp; Testimonials', '_Products/Testimonials.aspx', { 'tw': '_self', 'sb': 'Testimonials'}],
        ['&nbsp; Product Support', '_Products/ProductSupport.aspx', { 'tw': '_self', 'sb': 'Product Support'}]
	],
    ['Downloads', '_Downloads/Downloads.aspx', { 'tw': '_self', 'sb': 'Logins and Demos'}],
    ['Support', '_Support/Support.aspx', { 'tw': '_self', 'sb': 'HCC Support'}]
];


