// INFOMAN Progress Day 2003

// Javascript written by Anthony A. Perlas



// Set folder

var folder = "picsprogday03/";



// Initialize Array of pictures

var pic = new Array();



// Set the number of pictures

var n=20;



// 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("pd03pic" + (i+1) +"sm.jpg", "pd03pic" + (i+1) +".jpg");


