// INFOMAN Progress Day 2003
// Javascript written by Anthony A. Perlas

// Set folder
var folder = "picsprogday07/";

// Initialize Array of pictures
var pic = new Array();
var inclusion = new Array();

// Set the width and height of the big picture
var w=160;
var h=130;

// Set the number of pictures
var n=114; // Just the number on the last picture
var index=0;



/* ** This creates an list of picture filenames ** */
// Since pictures missing and inconsistencies in names it must be done manually
// This means pic[n][0] is the thumbnail while pic[n][1] is the large picture

// The first picture have small letter extension.
// Javascript seems to be case sensitive in the case of URLs unlike HTML

/* Note. */
// 54 is missing thumbnail
// 55 is missing large picture
// 57 is missing thumbnail

// Rest are all cap extension

for (i=1; i <= 30; i++) {pic[index] = new Array("pd07pic" + i +"sm.jpg", "pd07pic" + i +".jpg"); index++}

// 31 is missing
for (i=32; i <= 53; i++) {pic[index] = new Array("pd07pic" + i +"sm.jpg", "pd07pic" + i +".jpg"); index++}

pic[index] = new Array("pd07pic" + 56 +"sm.jpg", "pd07pic" + 56 +".jpg"); index++;

// 54 is missing
for (i=58; i <= 67; i++) {pic[index] = new Array("pd07pic" + i +"sm.jpg", "pd07pic" + i +".jpg"); index++;}

// 67 to 96 is missing
for (i=97; i <= n; i++) {pic[index] = new Array("pd07pic" + i +"sm.jpg", "pd07pic" + i +".jpg"); index++}
