// slidelist.js
//------------------------------
// Called by gallery.html, slideshow.html

/**********************************************
 * Copyright &copy; Trevor Lawrence 2006-2008 *
 *   http://tandcl.homemail.com.au            *
 **********************************************/

/* ========================== *
 * ALTER CODE as per comments *
 * ========================== */

function setPicNames (colln) {
  switch(ssarray [colln]) {
    case 'BVI':
      Picturesx[colln].push(

      // Enter Slideshow picture filenames here
          "BVI01" ,
          "BVI02" ,
          "BVI03" ,
          "BVI04" ,
          "BVI05" ,
          "BVI06" ,
          "BVI07" ,
          "BVI08" ,
          "BVI09" ,
          "BVI10" ,
          "BVI11" ,
          "BVI12" ,
          "BVI13" ,
          "BVI14" ,
          "BVI15" ,
          "BVI16" ,
          "BVI17" ,
          "BVI18" ,
          "BVI19" ,
          "BVI20" );  
 
      // Enter Slideshow name here
      Captionsx[colln].push("BRITISH VIRGIN ISLAND" ) ;

      /*********************************************************
       * Slideshow Captions - Use EITHER of next 2 statements  *
       * (Comment out the statement NOT required)              *
       *********************************************************/
      // 1. Blanks all captions - DO NOT ALTER
    	 blankCaptions(colln);

      // 2. Sets each caption - ALTER NAMES
       Captionsx[colln].push(
      
      // Enter Slideshow picture captions here
        ""  ,
        ""  ,
        "" ,
        "" 
      ) ;
      
      break ;

    case 'PAM':
      Picturesx[colln].push(
	"BI_PLANE_5",
	"BOYS2003",
	"FISH_1",
	"HANS_1",
	"NICK_1",
	"CONSTRUCTION_HANS",
	"FAMILYFEB07_1",
	"FAMILYFEB07_2",
	"HANS_2",
	"HANS_3",
	"HANS_NICK_3",
	"HANS_NICK_2007",
	"HANS_NICK_CREEKSIDE",
	"HANS_XMAS_2003",
	"INGELFINGERS",
	"NICK_2",
	"NICK_3",
	"NICK_4",
	"NICK_2007",
	"NICK_HANS_CREEKSIDE",
	"NICK_HOCKEY_1",
	"NICK_HOCKEY_2",
	"NICK_PEPSI",
	"NICK_XMAS_2003",
	"NICKBEER",
	"PAM_MIKE_DODGE",
	"PAM_BOYS",
	"SNOW_1",
	"SNOW_2",
	"SNOW_3",
	"SNOW_4",
	"SNOWFEB07_1",
	"SNOWFEB07_2",
	"SNOWFEB07_3",
	"VET_1",
	"WATER_RAFT_1",
	"WATER_RAFT_2"
	 );

      // Enter Slideshow name here
      Captionsx[colln].push("PAM MIKE & FAMILY") ;

      /*********************************************************
       * Slideshow Captions - Use EITHER of next 2 statements  *
       * (Comment out the statement NOT required)              *
       *********************************************************/
      // 1. Blanks all captions - DO NOT ALTER
       blankCaptions(colln)

      // 2. Sets each caption - ALTER NAMES

      Captionsx[colln].push(
      
      // Enter Slideshow picture captions here
          "" ,
          "" ) ;
      break ;

    case 'XMAS':
      Picturesx[colln].push(

      // Enter Slideshow picture filenames here
	"WINTER_2008-1",
	"WINTER_2008-2",
	"WINTER_2008-3",
	"XMAS_2008-01",
	"XMAS_2008-02",
	"XMAS_2008-03",
	"XMAS_2008-04",
	"XMAS_2008-05",
	"XMAS_2008-06",
	"XMAS_2008-07",
	"XMAS_2008-08",
	"XMAS_2008-09",
	"XMAS_2008-10",
	"XMAS_2008-11",
	"XMAS_2008-12",
	"XMAS_2008-14",
	"XMAS_2008-15",
	"XMAS_2008-16",
	"XMAS_2008-17",
	"XMAS_2008-18",
	"XMAS_2008-19",
	"XMAS_2008-20",
	"XMAS_2008-21",
	"XMAS_2008-22",
	"XMAS_2008-23",
	"XMAS_2008-24",
	"XMAS_2008-25",
	"XMAS_2008-26",
	"XMAS_2008-39",
	"XMAS_2008-40",
	"XMAS_2008-41",
	"XMAS_2008-42",
	"XMAS_2008-43",
	"XMAS_2008-44",
	"XMAS_2008-45",
	"XMAS_2008-46",
	"XMAS_2008-47",
	"XMAS_2008-48",
	"XMAS_2008-49",
	"XMAS_2008-50",
	"XMAS_2008-51",
	"XMAS_2008-52",
	"XMAS_2008-53"
           );  
 
      // Enter Slideshow name here
      Captionsx[colln].push("CHRISTMAS 2008 " ) ;

      /*********************************************************
       * Slideshow Captions - Use EITHER of next 2 statements  *
       * (Comment out the statement NOT required)              *
       *********************************************************/
      // 1. Blanks all captions - DO NOT ALTER
    	 blankCaptions(colln);

      // 2. Sets each caption - ALTER NAMES
       Captionsx[colln].push(
      
      // Enter Slideshow picture captions here
        ""  ,
        ""  ,
        "" ,
        "" 
      ) ;
      
      break ;


    /**************************************************
     * Add extra case statements for extra Slideshows *
     **************************************************/


    default:
  } // End switch

} // End setPicNames

/* ====================== *
 * DO NOT ALTER THIS CODE *
 * ====================== */
for (var i = 0 ; i < ssarrlen ; i++)
  { setPicNames(i); }
/* ====================== *
 * END DO NOT ALTER       *
 * ====================== */
