// Menu.js for News and Features (/features)

function writeMenu(currentPage){

	var html = '';
	var i;

	html += '<h2><a href="default.php">News and Features</a></h2>';

	// Define menu contents here

	menus[0] = new menuSection('Featured articles','featured');
	menus[0].addItem('features/engine.php','Adding Profiling to Your Own Site');
	menus[0].addItem('features/automating.php','Automating Your Recruitment Process');
	menus[0].addItem('features/teambuilding.php','Bringing Technology to Team-building');
	menus[0].addItem('features/mishiring.php','The Criminal Cost of Mishiring');
	menus[0].addItem('features/knowyourself.php','How Well Do You Know Yourself?');
	menus[0].addItem('features/training.php','An Introducion to Training with DISC');
	menus[0].addItem('features/matching.php','Job Matching with Discus');
	menus[0].addItem('features/personal.php','Personal Profiling: Discover Yourself Online');
	menus[0].addItem('features/business.php','Powerful, Professional, Affordable');
	menus[0].addItem('features/challenges.php','Rising to New Challenges');
	menus[0].addItem('features/strengths.php','Strengths and Career Matching');

	menus[1] = new menuSection('Product news','products');
	menus[1].addItem('features/languages.php','Axiom\'s Discus Software Breaks Down Language Barriers');
	menus[1].addItem('features/discus3.php','Discus 3.0 - More Revealing, More Powerful, Even Better Results');
	menus[1].addItem('features/discus4.php','Discus 4 - A New Dimension in Profiling');
	menus[1].addItem('features/discusoct2004.php','Discus Update for October 2004');
	menus[1].addItem('features/discusmay2004.php','Discus Update for May 2004');
	menus[1].addItem('features/discusoct2005.php','Discus Update for October 2005');
	menus[1].addItem('features/newdol.php','The New Discus Online Revealed');
	menus[1].addItem('features/dolfeatures.php','New Features for Discus Online');
	menus[1].addItem('features/updater.php','New Updater Service for Discus Users');
	menus[1].addItem('features/launchpad.php','On the Launchpad: Discus 3.1');
	menus[1].addItem('features/archive102.php','Product Launch: myDISCprofile from Axiom Software');

	menus[2] = new menuSection('Website features','website');
	menus[2].addItem('features/evolution.php','The Evolution of the Axiom Website');

	menus[3] = new menuSection('Reviews','reviews');
	menus[3].addItem('features/archive109.php','Important Information for Recruitment Websites');
	menus[3].addItem('features/archive72.php','Software Source: JobQ Sorts the Job-seekers');
	menus[3].addItem('features/ukrecruiter.php','UKRecruiter.co.uk Reviews Discus Online');
	
	menus[4] = new menuSection('Client news','clients');
	menus[4].addItem('features/archive3.php','Discus Online on Jobsin.co.uk');
	menus[4].addItem('features/archive8.php','fish4 Wish For Discus Online');
	menus[4].addItem('features/archive107.php','fish4jobs: Top UK Recruitment Site');
	menus[4].addItem('features/archive4.php','Hays Personnel Services to Deploy Discus Online');
	menus[4].addItem('features/archive108.php','Morgan Cole Launches Online Recruitment System');

	menus[5] = new menuSection('Press archive','press');
	menus[5].addItem('features/archive99.php','Axiom Employee Profiles');
	menus[5].addItem('features/archive92.php','Axiom Launches Job Application System');
	menus[5].addItem('features/archive91.php','Axiom Press Coverage, August 2001');
	menus[5].addItem('features/archive92.php','Axiom Press Coverage, October 2001');
	menus[5].addItem('features/archive105.php','Axiom Research: Graduate Ethics');
	menus[5].addItem('features/jobqpress.php','Axiom\'s JobQ in the Press');
	menus[5].addItem('features/archive105.php','Graduate Ethics');
	menus[5].addItem('features/archive85.php','Graduate Research: Graduates Impatient for a Quick Response');
	menus[5].addItem('features/archive84.php','Graduate Research: Graduating with Ethics');
	menus[5].addItem('features/archive94.php','Graduates Demand Better Online Application Response');
	menus[5].addItem('features/archive105.php','Graduates Drawn to \'ethically sound\' Companies');
	menus[5].addItem('features/archive93.php','Helping Human Capital in a Global Market');
	menus[5].addItem('features/archive104.php','HR Systems One Step at a Time');
	menus[5].addItem('features/archive92.php','I Want More');
	menus[5].addItem('features/archive92.php','Join the JobQ');
	menus[5].addItem('features/archive91.php','Lessons Pay Dividends');
	menus[5].addItem('features/archive103.php','Measuring Up: Staff Appraisals');
	menus[5].addItem('features/archive60.php','New HR Software Matches Skills with Experience');
	menus[5].addItem('features/archive91.php','New Software Matches Skills with Experience');
	menus[5].addItem('features/archive92.php','Numbers Up - How good is the application process?');
	menus[5].addItem('features/archive89.php','Screen Tests');
	menus[5].addItem('features/archive98.php','Staffing HR: Graduate Conundrum');
	menus[5].addItem('features/archive90.php','Survey Says: There\'s a New Idealism Among Modern Day Students');
	menus[5].addItem('features/archive59.php','System Sorts Wheat From Chaff in Search for Staff');
	
	for (i = 0; i < menus.length; i++) {
		html += menus[i].render(currentPage);
	}
	
	document.getElementById('menu').innerHTML = html;
	
}
