/*script type="text/javascript"*/
/* pname contains the path to the image files. Files are 6:4 ratio, max width of 800 */
/* pwidth are the picture widths - some are smaller than 800 pixels */
/* pheight is the picture height */
/* offset is used to try to center the smaller pictures in the window */


function picInfo( pname, pwidth, pheight, ptitle ) { 
    this.pname = pname; 
    this.pwidth = pwidth; 
    this.pheight = pheight; 
	this.title = ptitle;
} 
var eventName = "First Wednesday in December 2008";
var j = 0;
var picarray = new Array();

picarray[j++] = new picInfo( "101_1159.JPG", 800, 533, "101_1159" );
picarray[j++] = new picInfo( "101_1160.JPG", 800, 533, "101_1160" );
picarray[j++] = new picInfo( "101_1161.JPG", 800, 533, "101_1161" );
picarray[j++] = new picInfo( "101_1163.JPG", 800, 533, "101_1163" );
picarray[j++] = new picInfo( "101_1164.JPG", 800, 533, "101_1164" );
picarray[j++] = new picInfo( "101_1165.JPG", 800, 533, "101_1165" );
picarray[j++] = new picInfo( "101_1166.JPG", 800, 533, "101_1166" );
picarray[j++] = new picInfo( "DS2_4128.JPG", 800, 533, "DS2_4128" );
picarray[j++] = new picInfo( "DS2_4129.JPG", 800, 533, "DS2_4129" );
picarray[j++] = new picInfo( "DS2_4130.JPG", 800, 533, "DS2_4130" );
picarray[j++] = new picInfo( "DS2_4131.JPG", 800, 533, "DS2_4131" );
picarray[j++] = new picInfo( "DS2_4132.JPG", 800, 533, "DS2_4132" );
picarray[j++] = new picInfo( "DS2_4133.JPG", 800, 533, "DS2_4133" );

function props(o){
	var str = "";
	for ( prop in o ) str += prop +"=" + o[prop]+"; ";
	return str; 
}
/*end script*/