//--------------------------------------------------------
// 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] = '1.htm';
slides[2] = '2.htm';
slides[3] = '3.htm';
slides[4] = '4.htm';
slides[5] = '5.htm';
slides[6] = '6.htm';
slides[7] = '7.htm';
slides[8] = '8.htm';
slides[9] = '9.htm';
slides[10] = '10.htm';
slides[11] = '11.htm';
slides[12] = '12.htm';
slides[13] = '13.htm';
slides[14] = '14.htm';
slides[15] = '15.htm';
slides[16] = '16.htm';
slides[17] = '17.htm';
slides[18] = '18.htm';
slides[19] = '19.htm';
slides[20] = '20.htm';
slides[21] = '21.htm';
slides[22] = '22.htm';
slides[23] = '23.htm';
slides[24] = '24.htm';
slides[25] = '25.htm';
slides[26] = '26.htm';
slides[27] = '27.htm';
slides[28] = '28.htm';
slides[29] = '29.htm';
slides[30] = '30.htm';
slides[31] = '31.htm';
slides[32] = '32.htm';
slides[33] = '33.htm';
slides[34] = '34.htm';
slides[35] = '35.htm';
slides[36] = '36.htm';
slides[37] = '37.htm';
slides[38] = '38.htm';
slides[39] = '39.htm';
slides[40] = '40.htm';

menus[1] = 'Nice Hat!';
menus[2] = 'The Miami at Galway';
menus[3] = 'Mick - No Drums!';
menus[4] = 'Johnny at Culdaff';
menus[5] = 'Steve at 19';
menus[6] = 'King of Cool?!';
menus[7] = 'Steve & Steinberger';
menus[8] = 'Steve & The President';
menus[9] = 'Horslips at Wembley';
menus[10] = 'The New Miami Showband';
menus[11] = '...with Gary Eglinton';
menus[12] = 'another Steinberger';
menus[13] = 'Book of Invasions Tour';
menus[14] = 'Steve and The Movies';
menus[15] = 'Johnny and Sunburst';
menus[16] = 'Relaxing at Rochester';
menus[17] = 'Rory Gallagher Mural';
menus[18] = 'The Miami in 1975';
menus[19] = 'Charvel 2 Guitar';
menus[20] = 'Bundoran';
menus[21] = 'DeBarras';
menus[22] = 'New York';
menus[23] = 'Maggie Fean Birthday';
menus[24] = 'Tony Matlon photo';
menus[25] = 'Mick Rowley - Vicar St';
menus[26] = 'Fender photo';
menus[27] = 'Steve 2002';
menus[28] = 'Robert Ellis Photo';
menus[29] = 'The Point';
menus[30] = 'The Crack';
menus[31] = 'The Miami 1975';
menus[32] = 'Zens Postcard';
menus[33] = 'Sun Street Studio Oct06';
menus[34] = 'Cobblestones Sept06';
menus[35] = 'The Great Hunger';
menus[36] = 'Irvine Auditorium May78';
menus[37] = 'From Dave Mc Glouglin';
menus[38] = 'From Myles Lally';
menus[39] = 'Steve Travers Book Launch';
menus[40] = 'Miami Memorial';

// ----------- 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 Pictorial Anthology of <br><i> Fean & Travers</i>';
var showCredits = 'Please use the Forward/Back controls (bottom of page) to browse through the photos.';

//--------------------------------------------------------
//  (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] = '';
cap[2] = '';
cap[3] = '';
cap[4] = '';
cap[5] = '';
cap[6] = '';


// ------------- 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
//--------------------------------------------------------
