/*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 j = 0;
var picarray = new Array();

picarray[j++] = new picInfo( "101_0994.JPG", 800, 533, "101_0994" );
picarray[j++] = new picInfo( "101_0995.JPG", 800, 533, "101_0995" );
picarray[j++] = new picInfo( "101_0996.JPG", 800, 533, "101_0996" );
picarray[j++] = new picInfo( "101_0997.JPG", 800, 533, "101_0997" );
picarray[j++] = new picInfo( "101_0998.JPG", 800, 533, "101_0998" );
picarray[j++] = new picInfo( "101_0999.JPG", 800, 533, "101_0999" );
picarray[j++] = new picInfo( "101_1000.JPG", 800, 533, "101_1000" );
picarray[j++] = new picInfo( "101_1001.JPG", 800, 533, "101_1001" );
picarray[j++] = new picInfo( "101_1002.JPG", 800, 533, "101_1002" );
picarray[j++] = new picInfo( "101_1003.JPG", 800, 533, "101_1003" );
picarray[j++] = new picInfo( "101_1004.JPG", 800, 533, "101_1004" );
picarray[j++] = new picInfo( "101_1005.JPG", 800, 533, "101_1005" );
picarray[j++] = new picInfo( "101_1007.JPG", 800, 533, "101_1007" );
picarray[j++] = new picInfo( "101_1009.JPG", 800, 533, "101_1009" );
picarray[j++] = new picInfo( "101_1010.JPG", 800, 533, "101_1010" );
picarray[j++] = new picInfo( "101_1012.JPG", 800, 533, "101_1012" );
picarray[j++] = new picInfo( "101_1014.JPG", 800, 533, "101_1014" );
picarray[j++] = new picInfo( "101_1015.JPG", 800, 533, "101_1015" );
picarray[j++] = new picInfo( "101_1016.JPG", 558, 533, "101_1016" );
picarray[j++] = new picInfo( "101_1017.JPG", 800, 533, "101_1017" );
picarray[j++] = new picInfo( "101_1020.JPG", 800, 533, "101_1020" );
picarray[j++] = new picInfo( "101_1021.JPG", 800, 533, "101_1021" );
picarray[j++] = new picInfo( "101_1022.JPG", 800, 533, "101_1022" );
picarray[j++] = new picInfo( "101_1023.JPG", 800, 533, "101_1023" );
picarray[j++] = new picInfo( "101_1024.JPG", 800, 533, "101_1024" );
picarray[j++] = new picInfo( "101_1025.JPG", 800, 533, "101_1025" );
picarray[j++] = new picInfo( "101_1026.JPG", 800, 533, "101_1026" );


function props(o){
	var str = "";
	for ( prop in o ) str += prop +"=" + o[prop]+"; ";
	return str; 
}
/*end script*/