/*

  Example "photo album"/"slide show" entry...
  
  var arrayName=new Array(
    "Name of Picture Show (for link, and title sections)",
    "pic1.jpg", //Note: leave off the file extension... it's .jpg by default
    "pic2.gif", 
    "pic3.png",
    "path"
  );
  picture_shows[picture_shows.length]=arraYName; // this line adds the item on to the link menu (uncomment it and use the name of the array... it must be unique.)

  Notes:
    0. Must load "slide_show.js" before this file.
    1. "path" needs to be absolute, OR relative to the location of the file you are including the slide show in.
    2. pic.push() isn't supported in IE5 so pic[pic.length] was used to accomplish the same thing

*/


window.pic=new Array();
var index=0;



window.pic[window.pic.length]=new Array(
"About Web Services",
"aws-canyon-scoot-2003.jpg",
"../about-web-services-2003",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



window.pic[window.pic.length]=new Array(
"Arches National Park",
"alister-aella-andrew-thomas.jpg",
"thomas-relaxing-where-hulk-was-turned-into-parking-lot.jpg",
"alister-climbing2.jpg",
"andrew-aella-brittany.jpg",
"andrew-alister.jpg",
"balanced-rock.jpg",
"alister-climbing1.jpg",
"../arches-2003",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



window.pic[window.pic.length]=new Array(
"Goshute",
"thomas-alister-and-aella-descending.jpg",
"alister-caroline.jpg",
"alister-ethan-andrew.jpg",
"andrew.jpg",
"andrew-and-ethan-mudroom.jpg",
"andrew-front-of-goshute-not-entry.jpg",
"andrew-thomas-alister-at-the-bell.jpg",
"caroline-mike.jpg",
"column.jpg",
"columns.jpg",
"dave-and-ethan.jpg",
"goshute-marker-not-entry-though.jpg",
"thomas-aella-alister.jpg",
"aella.jpg",
"../goshute-2003",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



window.pic[window.pic.length]=new Array(
"New York (2000)",
"tunnelbig.jpg",
"empirestate2big.jpg",
"empirestatebig.jpg",
"jetbluebig.jpg",
"lateshowbig.jpg",
"longmeetingbig.jpg",
"panarama2.jpg",
"rockafellerbig.jpg",
"saccibig.jpg",
"timesquarebig.jpg",
"authentictagwatchesbig.jpg",
"../new-york-2000",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



window.pic[window.pic.length]=new Array(
"Work Of Angels",
"20.JPG",
"21.JPG",
"22.JPG",
"23.JPG",
"24.JPG",
"3.JPG",
"30.JPG",
"15.JPG",
"../workofangels.info",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



window.pic[window.pic.length]=new Array(
"Zoo (2003)",
"andrew-aella-alister.jpg",
"alister-before-cotton-candy.jpg",
"alister-after-cotton-candy.jpg",
"../zoo-2003",
""); picture_shows[picture_shows.length]=window.pic[window.pic.length-1];



// misc globals

window.current_array = window.pic[1];

window.create_shortcut_keys = true;  
      // true   = program will automatically try to create Alt-[key] shortcut keys to items in the link menu
      // false  = no shortcuts

window.report_broken_links_to = 'thomas2003'+'@esqsoft'+'.c'+'om';
      // set this to the email address you want your visitors to report broken links to
      // (if empty, "report broken links" doesn't show up.
      // break email string up to combat spam bots trying to harvest addresses
