//
// THE SLIDE SHOW!
// Staring, Your Slides and Captions!
//
// Written by Dave McCullough @ DC Comics, May 30, 2003
//


/* DIRECTIONS:

1.  Save all ofyour images in the same filetype.
2.  Name your images with numbers.  EX:  1.gif, 2.gif, 3.gif, 4.gif, etc.
3.  Place all of your images in the images folder.
4.  Enter your captions below.
5.  Edit the total number of slides, image type, and total time to wait below.
6.  Edit the style sheet file to your liking. (slide_show_style.css)
7.  Open the slideshow in a new window with the following javascript enabled link:

    <a href="#" onClick="slide_show_win_dow = window.open('index.html', 'slide_show','width=400,height=400,screenX=100,screenY=40,left=100,top=40,scrollbars=no,status=no,location=no,resizable=no,')">Launch the Slide Show</a>
    
    An example of this can be seen in launch.html
*/


// Function returns the title of the show.
function getTitle() {
//
// EDIT TITLE HERE
//         ||
//         \/
  return "NYCC 2007 DC FREELANCER DINNER";
}


// Function returns the title of the show.
function getHitboxMLC() {
//
// EDIT HITBOX MLC HERE.
// THIS IS BASICALLY THE SLIDESHOW NAME BUT WITH PLUS SIGNS WHERE YOU WANT SPACES
//          ||
//          \/
  return "nycc+2007+dc+freelancer+dinner";
}


// Function returns the total number of slides in the show.
function getLastSlideNum() {
//
// EDIT TOTAL NUMBER OF SLIDES HERE
//       ||
//       \/
  return 45;
}


// Function returns the type of images in the slide show.
function getImageType() {
//
// EDIT IMAGE TYPE HERE
//        ||
//        \/
  return "jpg";
}


// Function returns the time to wait before loading new slide(time in miliseconds - 1000 miliseconds = 1 second)
function getLagTime() {
//
// EDIT TOTAL TIME TO WAIT HERE
//        ||
//        \/
  return 15000;
}


// Function returns the text caption for a given number
function getCaption(cur_slide) {
  var caption = new Array();
//
// PLACE NEW TEXT CAPTIONS HERE
//
//   SLIDE NUMBERS   CAPTIONS
//        ||           ||
//        \/           \/

	  caption[1]  = "";
	  caption[2]  = "";
	  caption[3]  = "";
	  caption[4]  = "";
	  caption[5]  = "";
	  caption[6]  = "";
	  caption[7]  = "";
	  caption[8]  = "";
	  caption[9]  = "";
	  caption[10]  = "";
	  caption[11]  = "";
	  caption[12]  = "";
	  caption[13]  = "";
	  caption[14]  = "";
	  caption[15]  = "";
	  caption[16]  = "";
	  caption[17]  = "";
	  caption[18]  = "";
	  caption[19]  = "";
	  caption[20]  = "";
	  caption[21]  = "";
	  caption[22]  = "";
	  caption[23]  = "";
	  caption[24]  = "";
	  caption[25]  = "";
	  caption[26]  = "";
	  caption[27]  = "";
	  caption[28]  = "";
	  caption[29]  = "";
	  caption[30]  = "";
	  caption[31]  = "";
	  caption[32]  = "";
	  caption[33]  = "";
	  caption[34]  = "";
	  caption[35]  = "";
	  caption[36]  = "";
	  caption[37]  = "";
	  caption[38]  = "";
	  caption[39]  = "";
	  caption[40]  = "";
	  caption[41]  = "";
	  caption[42]  = "";
	  caption[43]  = "";
	  caption[44]  = "";
	  caption[45]  = "";

  return caption[cur_slide];
}




















