//custom course data

//Assessment Questions
var assessmentQuestions = new Array();
var question = "";

//klo 1
assessmentQuestions[0] = new Array();

question = "To answer the following questions you should be at this site:<br><A href=\"<https://www.afmc-mil.wpafb.af.mil/pdl/afmc/pd/21series/21-137.pdf>\" target=\"_blank\">https://www.afmc-mil.wpafb.af.mil/pdl/afmc/pd/21series/21-137.pdf</a>. <br><br> AFMCI 21-137 should be open in the separate window. <br><br> To which processes does the process improvement instruction apply? Hint: Search the key words \"production processes.\" Learn more by reading page 1 of the Depot Maintenance Process Improvement Instruction.";
question = "To which processes does the process improvement instruction apply?";
assessmentQuestions[0][0] = new Question("singleSelect",question,null);
assessmentQuestions[0][0].addAnswer(new Answer("Managerial processes only",false,"Incorrect. The correct answer is C. Administrative as well as Production processes."));
assessmentQuestions[0][0].addAnswer(new Answer("Organizational processes only",false,"Incorrect. The correct answer is C. Administrative as well as Production processes."));
assessmentQuestions[0][0].addAnswer(new Answer("Administrative as well as Production processes",true,"Correct!"));
assessmentQuestions[0][0].addAnswer(new Answer("Construction and Administrative processes only",false,"Incorrect. The correct answer is C. Administrative as well as Production processes."));
assessmentQuestions[0][0].mustGetCorrect = false;
assessmentQuestions[0][0].showFeedback = true;
assessmentQuestions[0][0].disableNext = false;
assessmentQuestions[0][0].grade = true;

question = "Are center Operating Instructions (OIs) for process improvement allowed? Hint: Search the key words \"Operating Instructions.\"  Learn more by reading the Process Improvement Rules of Engagement.";
assessmentQuestions[0][1] = new Question("multiSelect",question,null);
assessmentQuestions[0][1].correctFeedback = "Correct!";
assessmentQuestions[0][1].incorrectFeedback = "That is incorrect. They must be allowed and encouraged as well as comply with AFMCI 21-137.";
assessmentQuestions[0][1].addAnswer(new Answer("Yes, they are allowed and encouraged. ",true,""));
assessmentQuestions[0][1].addAnswer(new Answer("Yes, but they must comply with AFMCI 21-137. ",true,""));
assessmentQuestions[0][1].addAnswer(new Answer("No, follow the guidance in AFMCI 21-137 only. ",false,""));
assessmentQuestions[0][1].mustGetCorrect = false;
assessmentQuestions[0][1].showFeedback = true;
assessmentQuestions[0][1].disableNext = false;
assessmentQuestions[0][1].grade = true;

question = "My favorite color?";
var mcQuestion = new Question("singleSelect",question,null);
mcQuestion.addAnswer(new Answer("Blue",false,"Nope, it is green."));
mcQuestion.addAnswer(new Answer("Green",true,"Yep."));
mcQuestion.addAnswer(new Answer("Yellow",false,"Nope, it is green."));
mcQuestion.mustGetCorrect = true;
mcQuestion.showFeedback = true;
mcQuestion.grade = false;
