//--------------------------------------------------------
// 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 sections that are edited to customize
//  the slide show.

//--------------------------------------------------------
//
//                 SET UP THE SLIDES
//
//  One array holds preferred order that the slides will
//  appear.  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.  You only need to specify the
//  name of HTML files in the slides array.

var slides = new Array();
var snd = new Array();
var snd2 = new Array();
var menus = new Array();

//
//  Set the URL of your home page:
//  Relative URL's are okay.
//
//

 var home = '../index.shtml'

//--------------------------------------------------------
//
//             SET THE NUMBER OF SLIDES:
//
//  Set the variable 'last_slide' equal to the total
//  number of slides.  This number must not be greater than
//  the number of slides in the array below.
//  The name of the images does not need to be specified here.
// 
//
 var last_slide = 21 
//
// --------- start the image & menu names ---------------//
 slides[1] = 'image01.jpg';
 slides[2] = 'image02.jpg';
 slides[3] = 'image03.jpg';
 slides[4] = 'image04.jpg';
 slides[5] = 'image05.jpg';
 slides[6] = 'image06.jpg';
 slides[7] = 'image07.jpg';
 slides[8] = 'image08.jpg';
 slides[9] = 'image09.jpg';
 slides[10] = 'image10.jpg';
 slides[11] = 'image11.jpg';
 slides[12] = 'image12.jpg';
 slides[13] = 'image13.jpg';
 slides[14] = 'image14.jpg';
 slides[15] = 'image15.jpg';
 slides[16] = 'image16.jpg';
 slides[17] = 'image17.jpg';
 slides[18] = 'image18.jpg';
 slides[19] = 'image19.jpg';
 slides[20] = 'image20.jpg';
 slides[21] = 'z-end.html';

// ----------- end of slide names ----------------//
//
//  SET THE NAME OF THE SOUND FILES:
//
//  Set the variable 'snd[#]' equal to the  
//  the sound's filename.
//  
//  For NO sound, set the filename equal to '' 
//
// ----------- start of sound names --------------//

 snd[1] = '';
 snd2[1] = '';
//
 snd[2] = '';
 snd2[2] = '';
//
 snd[3] = '';
 snd2[3] = '';
//
 snd[4] = '';
 snd2[4] = '';
//
 snd[5] = '';
 snd2[5] = '';
//
 snd[6] = '';
 snd2[6] = '';
//
 snd[7] = '';
 snd2[7] = '';
//
 snd[8] = '';
 snd2[8] = '';
//
 snd[9] = '';
 snd2[9] = '';
//
 snd[10] = '';
 snd2[10] = '';
//
 snd[11] = '';
 snd2[11] = '';
//
 snd[12] = '';
 snd2[12] = '';
//
 snd[13] = '';
 snd2[13] = '';
//
 snd[14] = '';
 snd2[14] = '';
//
 snd[15] = '';
 snd2[15] = '';
//
 snd[16] = '';
 snd2[16] = '';
//
 snd[17] = '';
 snd2[17] = '';
//
 snd[18] = '';
 snd2[18] = '';
//
 snd[19] = '';
 snd2[19] = '';
//
 snd[20] = '';
 snd2[20] = '';
//
 snd[21] = '';
 snd2[21] = '';
//
// ----------- end of sound names ----------------//
//
//
// ----------- start of menu names ----------------//
//--------------------------------------------------------
//
//                   MENU NAMES
// 
//  These names will appear in the lower pop-up menu 
//  to identify each slide.  These should be kept to 
//  a short length (less than 30 characters) so that
//  the menu does not grow overly wide.
// 
// 
 menus[1] = '';
 menus[2] = '';
 menus[3] = '';
 menus[4] = '';
 menus[5] = '';
 menus[6] = '';
 menus[7] = '';
 menus[8] = '';
 menus[9] = '';
 menus[10] = '';
 menus[11] = '';
 menus[12] = '';
 menus[13] = '';
 menus[14] = '';
 menus[15] = '';
 menus[16] = '';
 menus[17] = '';
 menus[18] = '';
 menus[19] = '';
 menus[20] = '';
 menus[21] = '';
//
// ----------- end of menu names ----------------//
//
//            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.
//  Set show_start=0 to use the title page.
//  Set show_start=1 to start at slide #1.


 var show_start = 1
 var showTitle = '';
 var showCredits = '';

//--------------------------------------------------------
//
//                 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 values of  to save space
 var cap = new Array();

 // -------------- start the captions  ------------------//

// 
//  Replace menus[#] with a caption if you choose.
//  Enclose caption in 'single quotes.'
//  If you do not specify a caption, then the caption
//  will be the same as the menu name.
// 

 cap[1] = menus[1];
 cap[2] = menus[2];
 cap[3] = menus[3];
 cap[4] = menus[4];
 cap[5] = menus[5];
 cap[6] = menus[6];
 cap[7] = menus[7];
 cap[8] = menus[8];
 cap[9] = menus[9];
 cap[10] = menus[10];
 cap[11] = menus[11];
 cap[12] = menus[12];
 cap[13] = menus[13];
 cap[14] = menus[14];
 cap[15] = menus[15];
 cap[16] = menus[16];
 cap[17] = menus[17];
 cap[18] = menus[18];
 cap[19] = menus[19];
 cap[20] = menus[20];
 cap[21] = menus[21];

// ------------- end of captions -----------------------//

//
//            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.
//  Set autoshow=0 to turn off the autoshow option.
//  Set autoshow=1 to turn on the autoshow option.
//
var delay_time = 5000 
var show_auto = 1 
//
//--------------------------------------------------------
//
//               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;
//
//--------------------------------------------------------
//
//             SET THE CAPTION LOCATION 
//
//  This variable controls the placement of the caption
//  relative to the picture. Valid values are

//    1   above the picture (DEFAULT)
//    2   left of the picture
//    3   right of the picture
//    4   below the picture
//

var cap_align = 1
//
//--------------------------------------------------------
//
// END OF CONFIGURATION FILE


