// Menu.js for Applications (/disc/applications)

function writeMenu(currentPage){

	var html = '';
	var i;

	html += '<h2><a href="default.php">Applications</a></h2>';

	// Define menu contents here
	
	menus[0] = new menuSection('Applications of DISC','applications');
	menus[0].addItem('disc/applications/problems.php','Addressing Specific Problems');
	menus[0].addItem('disc/applications/assessment.php','Assessment');
	menus[0].addItem('disc/applications/careers.php','Career Development');
	menus[0].addItem('disc/applications/integration.php','Cultural Integration');
	menus[0].addItem('disc/applications/recruitment.php','Recruitment');
	menus[0].addItem('disc/applications/redeployment.php','Redeployment');

	for (i = 0; i < menus.length; i++) {
		html += menus[i].render(currentPage);
	}
	
	document.getElementById('menu').innerHTML = html;
	
}
