// a variable to represent the department 
var department = "ELT";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 13;

// Total number of option in each question
var TotalNoOfOptions = 5;

// an array that stores the results of each question 
var result =  new Array(TotalNoOfQuestions);

// The question set
var Question = new Array(TotalNoOfQuestions);
// Question 1
	Question[0] = "Able to communicate effectively in English with familiar people in familiar situations.";

// Question 2
	Question[1] = "Able to communicate effectively in English with <b>un</b>familiar people in <b>un</b>familiar situations.";
	
// Question 3
	Question[2] = "Able to give formal presentations in English.";
	
// Question 4
	Question[3] = "Able to use a variety of academic tools to describe and analyse English.";
	
// Question 5
	Question[4] = "Able to identify the professional requirements of individuals from very diverse backgrounds.";
	
// Question 6
	Question[5] = "Able to communicate effectively your own preferences to professional colleagues.";
	
// Question 7
	Question[6] = "Able to bridge effectively professionals from different specialisms and diverse cultural and linguistic backgrounds.";
	
// Question 8
	Question[7] = "Able to act creatively when handling competing professional requirements.";
	
// Question 9
	Question[8] = "Able to lead a team effectively towards achieving its goal.";
	
// Question 10
	Question[9] = "Able to contribute effectively as a member of a team.";
	
// Question 11
	Question[10] = "Be an independent and autonomous life-long learner.";
	
// Question 12
	Question[11] = "Able to exercise creativity, critical thinking and analytical problem-solving skills.";
	
// Question 13
	Question[12] = "Be oriented towards thinking global and acting local.";
	

// Total number of categories in this question set
var TotalNoOfCategory  = 7;

var Category = new Array(TotalNoOfCategory);
	Category[0] = "Professional English Language teachers are expected to be effective and confident in communicating through English.";
	Category[1] = "Professional English Language teachers are expected to be aware of the common socio-linguistic characteristics of English.";
	Category[2] = "Professional teachers in Hong Kong are expected to co-operate with specialists from diverse technical, cultural and linguistic backgrounds.";
	Category[3] = "Professional teachers are expected to be effective team leaders and co-operative team members.";
	Category[4] = "Professional teachers act to keep up with the changing knowledge in their own fields and are committed to continuous professional development (CPD).";
	Category[5] = "Professional teachers are expected to explore alternative solutions to problems.";
	Category[6] = "Local professionals are sensitive to the international role of the HKSAR.";


// Total number of question(s) within each	Category
var QuestionCategory = new Array(TotalNoOfCategory);

// Total number of question(s) in Category[0]
	QuestionCategory[0] = 3;
	
// Total number of question(s) in Category[1]
	QuestionCategory[1] = 1;
	
// Total number of question(s) in Category[2]
	QuestionCategory[2] = 4;
	
// Total number of question(s) in Category[3]
	QuestionCategory[3] = 2;
	
// Total number of question(s) in Category[4]
	QuestionCategory[4] = 1;
	
// Total number of question(s) in Category[5]
	QuestionCategory[5] = 1;
	
// Total number of question(s) in Category[6]
	QuestionCategory[6] = 1;
	


// Which question should belongs to which category	
var QuestionType = new Array(TotalNoOfQuestions);

//e.g. Question 1 is belong to category 0
	QuestionType[0] = 0;
	QuestionType[1] = 0;
	QuestionType[2] = 0;
	QuestionType[3] = 1;
	QuestionType[4] = 2;
	QuestionType[5] = 2;
	QuestionType[6] = 2;
	QuestionType[7] = 2;
	QuestionType[8] = 3;
	QuestionType[9] = 3;
	QuestionType[10] = 4;
	QuestionType[11] = 5;
	QuestionType[12] = 6;
	
