//--------------------------------------------------------
// 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] = '01-visit.jpg';
slides[2] = '02-visit.jpg';
slides[3] = '03-visit.jpg';
slides[4] = '04-visit.jpg';
slides[5] = '05-visit.jpg';
slides[6] = '06-visit.jpg';
slides[7] = '07-visit.jpg';
slides[8] = '08-visit.jpg';
slides[9] = '09-visit.jpg';
slides[10] = '10-visit.jpg';
slides[11] = '11-visit.jpg';
slides[12] = '12-visit.jpg';
slides[13] = '13-visit.jpg';
slides[14] = '14-visit.jpg';
slides[15] = '15-visit.jpg';
slides[16] = '16-visit.jpg';
slides[17] = '17-visit.jpg';

menus[1] = 'Gulick Bros. Hair';
menus[2] = 'Come Right In!';
menus[3] = 'Welcome!';
menus[4] = 'Neat and Cozy';
menus[5] = 'All Services Available';
menus[6] = 'Shampoo Area';
menus[7] = 'Modern Facilities';
menus[8] = 'Feel at Home';
menus[9] = 'Beautiful Salon';
menus[10] = 'In Its Place';
menus[11] = 'To the HairWiz';
menus[12] = 'At Your Service!';
menus[13] = 'Sweets';
menus[14] = 'Ready To Go';
menus[15] = 'World is Waiting';
menus[16] = 'Thank You!';
menus[17] = 'Come Again!';
// ----------- 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 = 'A Visit to the HairWiz!';
var showCredits = 'The show will start automatically';
//--------------------------------------------------------
//  (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] = 'Gulick Bros. Hair';
cap[2] = 'Come Right In!';
cap[3] = 'The HairWiz Welcomes You!';
cap[4] = 'Neat and Cozy!';
cap[5] = 'All Services Available';
cap[6] = 'Shampoo Area';
cap[7] = 'Modern Facilities';
cap[8] = 'Feel at Home';
cap[9] = 'A Beautiful Salon!';
cap[10] = 'Everything in Its Place!';
cap[11] = 'On the Way to The HairWiz';
cap[12] = 'The HairWiz, At Your Service';
cap[13] = 'Sweets for the Sweet!';
cap[14] = 'Ready To Go';
cap[15] = 'The World is Waiting for You';
cap[16] = 'Thank You for Coming!';
cap[17] = 'Thank You - Come Again!';
// ------------- 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, multiply the number of seconds desired
//  by 1000. If you are unsure, try a value of 8000.
var delay_time = 5000;
//--------------------------------------------------------
//  (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
//--------------------------------------------------------