// 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 = [
	['','',null,null],
	['Home', 'index.php', null, null],
	['Join Us', null, null,
		['Register', 'register.php', null, null],
		['Reactivate', 'reactivate.php', null, null],
		['Forgot Password', 'reset_passwd.php', null, null],
		['Getting Started', 'getting_started.php', null, null]
	],
	['Resources', null, null,
		['News','news.php', null, null],
		['Blog','http://blog.cashiksha.com', null, null],
		['Path to CA','cacourse.php', null, null],
		['Useful Links','links.php', null, null],
		['FAQ', 'faq.php', null, null],
		['Reference Material', 'material.php', null, null]

	],
	['About Us', 'aboutus.php', null, null],
	['Contact Us', 'contactus.php',null, null]
];


