//--------------------------------------------------------
// javascript slide show "clicker"
// v 3.0 July 2002
// created by alan levine, maricopa community colleges
// alan.levine@domail.maricopa.edu                                  
// http://www.mcli.dist.maricopa.edu/proj/jclicker/
// use without with these credits is not very nice
//--------------------------------------------------------

// This external .js file contains the editable configuration
// data for a jClicker slide show.

//  Below are the 7 sections that are edited to customize
//  the slide show.

//--------------------------------------------------------
//  (1) SET UP THE SLIDES
//  One array holds preferred order that the slides will 
//  appear. For each one enter the file name of the image
//  that is inside the "images" folder. They should
//  be sequentially numbered "slides[1]", "slides[2]",
//  "slides[3]", etc. The other array holds the names
//  that will appear in the lower pop-up menu to identify
//  each slide (these should be kept to a short length so
//  the menu does not grow overly wide)
//
//  Note that you can now include HTML file names to display
//  other kinds of content.
  
var slides = new Array();
var menus = new Array();

// --------- start the image & menu names ---------------//
slides[1] = '11.gif';
slides[2] = '12.gif';
slides[3] = '13.gif';
slides[4] = '14.gif';
slides[5] = '15.gif';
slides[6] = '21.gif';
slides[7] = '22.gif';
slides[8] = '31.gif';
slides[9] = '32.gif';
slides[10] = '33.gif';
slides[11] = '34.gif';
slides[12] = '35.gif';
slides[13] = '36.gif';
slides[14] = '41.gif';
slides[15] = '42.gif';
slides[16] = '43.gif';
slides[17] = '44.gif';
slides[18] = '51.gif';
slides[19] = '52.gif';
slides[20] = '53.gif';
slides[21] = '54.gif';
slides[22] = '55.gif';
slides[23] = '61.gif';
slides[24] = '71.gif';
slides[25] = '72.gif';
slides[26] = '81.gif';
slides[27] = '82.gif';
slides[28] = '83.gif';
slides[29] = '84.gif';
slides[30] = '85.gif';
slides[31] = '86.gif';
slides[32] = '91.gif';
slides[33] = '92.gif';
slides[34] = '93.gif';
slides[35] = '94.gif';
slides[36] = '95.gif';
slides[37] = '96.gif';
slides[38] = '97.gif';

menus[1] = 'TestBank Editing Window';
menus[2] = 'Select Test Item Type';
menus[3] = 'Editing Options';
menus[4] = 'Embedding Media Files';
menus[5] = 'Linking Media Files';
menus[6] = 'Building Student Tests';
menus[7] = 'Setting Test Time Limit';
menus[8] = 'Student Screen Test';
menus[9] = 'Student Paper Test';
menus[10] = 'Paper Test Print Options';
menus[11] = 'Send Tests Directly to MS Word';
menus[12] = 'Upload Web Test Files to Server';
menus[13] = 'Student Internet Test';
menus[14] = 'Auto Grade Test';
menus[15] = 'Grade Test Report';
menus[16] = 'Answer Key Display';
menus[17] = 'Review Completed Student Test';
menus[18] = 'Test Item Analysis Editor';
menus[19] = 'Test Item Analysis Report 1';
menus[20] = 'Test Item Analysis Report 2';
menus[21] = 'Test Performance Report';
menus[22] = 'Test Performance Review';
menus[23] = 'Test Building Options';
menus[24] = 'Text To Speech Options';
menus[25] = 'Available Speech Characters';
menus[26] = 'System Password Login Feature';
menus[27] = 'Modifying Test Values';
menus[28] = 'Password Protecting Files';
menus[29] = 'Using Font Symbols';
menus[30] = 'Spell Checking';
menus[31] = 'Using Thesaurus';
menus[32] = 'Create Login Accounts';
menus[33] = 'Assign Tests to Login Accounts';
menus[34] = 'Viewing Activity Log';
menus[35] = 'Get Quick Help Info';
menus[36] = 'Group test Items Together';
menus[37] = 'Import Test Data';
menus[38] = 'Bubble Answer Sheets and Keys';
// ----------- end of image & menu names ----------------//


//--------------------------------------------------------
//  (2) SET UP THE TITLE PAGE
//  Enter a name for the slide show and a line for the
//  credits. Avoid funky HTML here, they go in h1, h2 tags
//  and are formatted in style sheets

var showTitle = 'Random Test Generator-PRO v8.1';
var showCredits = 'Copyright 1998-2003 By Timothy L. Hirtle. All Rights Reserved.';

//--------------------------------------------------------
//  (3) SET UP THE CAPTIONS     
//  Enter text for a set of captions that correspond to the 
//  images. If the slide source is HTML, this string
//  is ignored, so assign blank values of "" to save space

var cap = new Array();                                                           
                                                        
// -------------- start the captions  ------------------//
cap[1] = 'TestBank Editing Window';
cap[2] = 'Select Test Item Type For Test Questions';
cap[3] = 'Allows Many Available Editing Options in a Rich Text Environment';
cap[4] = 'Allows Embedding Multimedia Files Directly in TestBanks';
cap[5] = 'Allows Linking Multimedia Files to Specific Test Items';
cap[6] = 'TEST BUILDER Display Select TestBanks and Identify the Number of Test Items for Each';
cap[7] = 'Set Time Limts for Student Screen Tests';
cap[8] = 'View of Student Screen Test In Progress';
cap[9] = 'View of Student Paper Test Display Ready for Printing';
cap[10] = 'View of Print Dialog Box';
cap[11] = 'View of Created Test Sent Directly to MS Word';
cap[12] = 'View of Built In FTP Software To Send Internet Tests to Web Server';
cap[13] = 'View of MS Internet Explorer of an Internet Student test';
cap[14] = 'View of Automatic Grade Test Feature';
cap[15] = 'View of Grade Test Report';
cap[16] = 'View of Answer Key Display';
cap[17] = 'Allows Reviewing of Completed Student Tests';
cap[18] = 'View of Test Item Analysis Editor';
cap[19] = 'View of Test Item Analysis Report Display 1';
cap[20] = 'View of Test Item Analysis Report Display 2';
cap[21] = 'View of Test Performance Report';
cap[22] = 'Test Performance Review';
cap[23] = 'View of the Many Test Building Options Available';
cap[24] = 'View of the Many Text To Speech Otions Available';
cap[25] = 'View of Some of the 100s of FREE Characters Available';
cap[26] = 'View of System Password Login Feature';
cap[27] = 'Change Already Created Test Values Easily';
cap[28] = 'Password Protect TestBanks and Student Test Files';
cap[29] = 'Use Font Symbols Within TestBanks and Student Tests';
cap[30] = 'Use Built In Spell Checking';
cap[31] = 'Use Built In Thesaurus';
cap[32] = 'Create Instructor and Student Login Accounts';
cap[33] = 'Assign Tests To Login Accounts Tests Will Then Auto Start When Student Logs In';
cap[34] = 'View Who has logged In Including Failed Login Attempts';
cap[35] = 'Get Quick Context Sensitive Help Info By Right Clicking an Object';
cap[36] = 'Group Test Items So They Appear on Student Tests Together';
cap[37] = 'Import Test Data from Other Software Products';
cap[38] = 'Create Student Bubble Answer Sheets and Answer Keys';
// ------------- end of captions -----------------------//


//--------------------------------------------------------
//  (4) SET THE AUTOSHOW DELAY TIME    
//  This is the minimum amount of time between changing of 
//  slides when we are in automatic mode. Values are in 
//  milliseconds, multiple the number of seconds desired
//  by 1000. If you are unsure, try a value of 8000.

var delay_time = 8000;


//--------------------------------------------------------
//  (5) SET THE BACKGROUND MODE   
//  This variable indicates whether to use a light background
//  for the slide screen (light_mode = true;) or a dark
//  background (light_mode = false;)

var light_mode = true;

//--------------------------------------------------------
//  (6) SET THE CAPTION LOCATION  
//  This variable controls the placement of the caption
//  relative to the picture. Valid values are

//    1   above the picture  
//    2   left of the picture
//    3   right of the picture
//    4   below the picture

var cap_align = 4;

//--------------------------------------------------------
//  (7) SET THE STARTING SLIDE 
//  This variable can indicate which is the first slide
//  to show. the default is 0 which starts with the title
//  page

var show_start = 0;

//--------------------------------------------------------
// END OF CONFIGURATION AREA
//--------------------------------------------------------
