// INFOMAN Progress Day 2003

// Javascript written by Anthony A. Perlas



// Set folder

var folder = "picsprogday08/";



// Initialize Array of pictures

var pic = new Array();
var inclusion = new Array();


// Set the number of pictures

var n=20;
var index=0;


// Set the width and height of the big picture

var w=160;

var h=130;



//Since pictures are logicaly arranged and consistent in numbering we can use a single loop

//This means pic[n][0] is the thumbnail while pic[n][1] is the large picture

//for (i=0; i < n; i++) pic[i] = new Array("pd08pic" + (i+1) +"sm.jpg", "pd08pic" + (i+1) +".jpg");

for (i=1; i <= 57; i++) {pic[index] = new Array("pd08pic" + i +"sm.jpg", "pd08pic" + i +".jpg"); index++}




