/*------------------------------------------------------------------------------
 * Module: klquizcfg.js  Version 1.0
 * K&L Quiz 2.0 Configuration File
 * Copyright (c) 2003-2004, K&L Design Productions, All Rights Reserved.
 *----------------------------------------------------------------------------*/
  
var klQuizConfig = {
    quizElements: {
	   name:    'klQuizName',    
       question:'klQuizQuestion',
       answers: 'klQuizAnswers',  
       controls:'klQuizControls',
       stats:   'klQuizStats'},  
	questionAreaStyles: {
	    question: 'klQuizQA',     
	    explanation: 'klQuizQA',  
	    review: 'klQuizQA',       
		repeat: 'klQuizQA'},      
	answersAreaStyles: {
	    question: 'klQuizAA',
		explanation: 'klQuizAA',
		review: 'klQuizAA',
		repeat: 'klQuizAA'}, 
    quizNextAction: {  
        startQuiz:'Start Quiz',       
	    selectAnswer:'Select Answer', 
	    submitAnswer:'Submit Answer', 
	    nextQuestion: 'Next Question',
	    viewResults: 'View Results',  
	    reviewQuiz: 'Review Answers', 
	    reviewNext: 'Review Next',   
	    toWrongRepeat: 'Continue',    
		startWrongRepeat: 'First Wrong Question', 
		nextWrongQuestion: 'Next Wrong Question', 
		toQuizEnd: 'Continue',       
        restartQuiz: 'Start Over'},   	                  
	
	quizReset: 'Reset Quiz', 
	
	promptSelectAnswer: 'Please select an answer', 
	
	quizStatisticsString: {
	    gradeUponSubmission: 'Question: [[QNUM]]/[[QTOTAL]][[NEWLINE]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[NEWLINE]]Quiz Score: [[SCORE]]',
		
		gradeUponCompletion: 'Question: [[QNUM]]/[[QTOTAL]]',
		
		gradeQuiz: 'Total Questions: [[QTOTAL]][[NEWLINE]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[NEWLINE]]Quiz Score: [[SCORE]]',
		
		reviewQuiz: 'Reviewing Question: [[QNUM]]/[[QTOTAL]][[NEWLINE]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[NEWLINE]]Quiz Score: [[SCORE]]',
		
		wrongRepeatPrompt: 'Questions: [[QTOTAL]][[SPACER]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[SPACER]]Quiz Score: [[SCORE]]',

		wrongRepeat: 'Repeating Question: [[QNUM]]/[[QTOTAL]][[NEWLINE]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[NEWLINE]]Quiz Score: [[SCORE]]',
		
	    quizEnd: 'Total Questions: [[QTOTAL]][[NEWLINE]]Correct Answers: [[QCORRECT]][[SPACER]]Percent Correct: [[PERCENTCORRECT]][[NEWLINE]]Quiz Score: [[SCORE]]'},
						  
	defaultResults: {
	    questionAreaText: 'Thank You for Taking This Quiz',
		questionAreaStyle: 'klQuizQA',
		answersAreaText: 'You answered [[QCORRECT]] out of [[QTOTAL]] questions correctly.[[NEWLINE]]You quiz score is [[SCORE]].',
        answersAreaStyle: 'klQuizAA'},
						  
    transitionScreens: {
	     startQuiz:  { 
		    questionArea: {
			    text: 'Start Quiz',
		        style:'klQuizStartQA'},						  
		    answersArea:  {
			    text: 'Start quiz by pressing START QUIZ button below. You will be using the same button to advance through the quiz. The button text will represent the action.',
		        style:'klQuizStartAA'}},
		
		reviewQuiz: {
		    questionArea: {
			    text: 'Proceed to Quiz Review',
		        style:'klQuizReviewQA'},
			answersArea:  {
			    text: 'Now you will be given an opportunity to go over your answers and learn which ones you got right.',
		        style:'klQuizReviewAA'}},
		
		wrongRepeat:{
		    questionArea: {
			    text: 'Repeat Questions That Were Answered Wrong',
		        style:'klQuizWrongRepeatQA'},
			answersArea:  {
			    text: 'Now you will be given another try at questions that you got wrong. You can continue answering them until all questions are answered right or you can reset quiz at any time by clicking the RESET QUIZ button.',
		        style:'klQuizWrongRepeatAA'}},
		
        endQuiz: {
		    questionArea: {
			    text: 'End of Quiz.',
		        style:'klQuizEndQA'},
			answersArea:  {
			    text: 'Thank you for taking the quiz.',
		        style:'klQuizEndAA'}}},
    
	
    reportResults: {					   
        gradeQuiz:null,
		endQuiz:null        					   
		}};
                       
/*File End*/

