// 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 = [

	['Orange News', 'http://orangelampsoftware.com/blog/blogger.html'],

	['Products', '/products.shtml', null,
	    ['KillProcess', '/products_killprocess.php'],
	    ['TimeStamp', '/products_timestamp.shtml'],
	    ['QuickEnv', '/products_quickenv.shtml']		
	],
	
	['Product Support', 'support_faq.shtml', null,
	    ['FAQ', '/support_faq.shtml'],
	    ['e-Learning Videos', '/support_elearning.shtml'],
	    ['Ask a Question', '/support_question.shtml'],
	    ['Submit a Bug', '/support_spr.shtml']
	],
	
	['Contact Us', '/contact.shtml', null,
	    ['Contact Information', '/contact.shtml'],
	    ['Suggest Improvements', '/contact_improvements.shtml'],
	    ['Submit a Bug', '/support_spr.shtml'],		
		['Submit KillList', '/register_killlist.php']
	],
	
	['About Us', '/about_us.shtml', null,
	    ['Company Information', '/about_us.shtml'],
	    ['About KillProcess', '/about_app.shtml'],
	    ['About Roger', '/about_roger.shtml'],
	    ['Consulting Services', '/about_consulting.shtml']
	],
	
	['Support Us', '/register.shtml', null,
	    ['Donate Money', '/register.shtml']
	]
];

