var pgBase = 'photo/';
var pgDiv = document.getElementById('pg_div');
var pgAnchor = document.getElementById('pg_anchor');
var pgAnchor2 = document.getElementById('pg_anchor2');
var pgImg = document.getElementById('pg_image');
var pgTitle = document.getElementById('pg_title');
var pgDesc = document.getElementById('pg_desc');
var pgTmpImage = new Image();
var pgArray = new Array();
var pgTitleArray = new Array();

pgTitleArray[0] = 'Photo Gallery';

pgArray[0] = new Array( 
	new Array('WFLD080728-001',''),
	new Array('WFLD080728-002',''),
	new Array('WFLD080728-003',''),
	new Array('WFLD080728-004',''),
	new Array('WFLD080728-005',''),
	new Array('WFLD080728-006',''),
	new Array('WFLD080728-007',''),
	new Array('WFLD080728-008',''),
	new Array('WFLD080728-009',''),
	new Array('WFLD080728-010',''),
	new Array('WFLD080728-011',''),
	new Array('WFLD080728-012',''),
	new Array('WFLD080728-013',''),
	new Array('WFLD080728-014',''),
	new Array('WFLD080728-015',''),
	new Array('WFLD080728-016',''),
	new Array('WFLD080728-017',''),
	new Array('WFLD080728-018',''),
	new Array('WFLD080728-019',''),
	new Array('WFLD080728-020',''),
	new Array('WFLD080728-021',''),
	new Array('WFLD080728-022',''),
	new Array('WFLD080728-023',''),
	new Array('WFLD080728-024',''),
	new Array('WFLD080728-025',''),
	new Array('WFLD080728-026',''),
	new Array('WFLD080728-027',''),
	new Array('WFLD080728-028',''),
	new Array('WFLD080728-029',''),
	new Array('WFLD080728-030',''),
	new Array('WFLD080728-031',''),
	new Array('WFLD080728-032',''),
	new Array('WFLD080728-033',''),
	new Array('WFLD080728-034',''),
	new Array('WFLD080728-035',''),
	new Array('WFLD080728-036',''),
	new Array('WFLD080728-037',''),
	new Array('WFLD080728-038',''),
	new Array('WFLD080728-039',''),
	new Array('WFLD080728-040',''),
	new Array('WFLD080728-041',''),
	new Array('WFLD080728-042',''),
	new Array('WFLD080728-043',''),
	new Array('WFLD080728-044',''),
	new Array('WFLD080728-045',''),
	new Array('WFLD080728-046',''),
	new Array('WFLD080728-047',''),
	new Array('WFLD080728-048',''),
	new Array('WFLD080728-049',''),
	new Array('WFLD080728-050',''),
	new Array('WFLD080728-051',''),
	new Array('WFLD080728-052',''),
	new Array('WFLD080728-053',''),
	new Array('WFLD080728-054',''),
	new Array('WFLD080728-055',''),
	new Array('WFLD080728-056',''),
	new Array('WFLD080728-057',''),
	new Array('WFLD080728-058',''),
	new Array('WFLD080728-059',''),
	new Array('WFLD080728-060',''),
	new Array('WFLD080728-061',''),
	new Array('WFLD080728-062',''),
	new Array('WFLD080728-063',''),
	new Array('WFLD080728-064',''),
	new Array('WFLD080728-065',''),
	new Array('WFLD080728-066',''),
	new Array('WFLD080728-067',''),
	new Array('WFLD080728-068',''),
	new Array('WFLD080728-069',''),
	new Array('WFLD080728-070',''),
	new Array('WFLD080728-071',''),
	new Array('WFLD080728-072',''),
	new Array('WFLD080728-073',''),
	new Array('WFLD080728-074',''),
	new Array('WFLD080728-075',''),
	new Array('WFLD080728-076',''),
	new Array('WFLD080728-077',''),
	new Array('WFLD080728-078',''),
	new Array('WFLD080728-079',''),
	new Array('WFLD080728-080',''),
	new Array('WFLD080728-081',''),
	new Array('WFLD080728-082',''),
	new Array('WFLD080728-083',''),
	new Array('WFLD080728-084',''),
	new Array('WFLD080728-085','')
);

function forceImage(newurl) { 
	pgTmpImage.onload = function setImage() {pgImg.src = pgTmpImage.src;}
	pgTmpImage.src = newurl;
}

function pg_changeImage(l1,l2) {
	var currArray = pgArray[l1];

	if (pgImg) {
		forceImage(pgBase + currArray[l2][0] + 'm.jpg');
		pgAnchor.href = 'javascript:void(0);';
		pgAnchor.onclick = function() { window.open('enlarge.html?image=' + pgBase + currArray[l2][0] + '.jpg','pg','height=50,width=50,top=0,left=0,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=yes'); } 
		pgAnchor2.href = 'javascript:void(0);';
		pgAnchor2.onclick = function() { window.open('enlarge.html?image=' + pgBase + currArray[l2][0] + '.jpg','pg','height=50,width=50,top=0,left=0,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=yes'); } 
		pgDesc.innerHTML = currArray[l2][1];
	}
}

function pg_drawThumbnail(l1){
	var i,content = '';
	var currArray = pgArray[l1];
	for (i=0;i<currArray.length;i++){
		content += '<div class="gPhoto"><table width="70" height="70" border="0" cellspacing="0" cellpadding="0"><tr><td align="center"><a href="javascript:void(0);" onclick="pg_changeImage('+l1+','+i+')">';
		content += '<img src="'+pgBase+currArray[i][0]+'s.jpg" border="0">';
		content += '</a></td></tr></table></div>';
		if ((i+1)%4==0) content += '<br>';
	}
	pgDiv.innerHTML = content;
	pgTitle.innerHTML = '  <b>'+pgTitleArray[l1]+'</b>';
	pg_changeImage(l1,0);
}

pg_drawThumbnail(0);
