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('WFLD080727-001',''),
	new Array('WFLD080727-002',''),
	new Array('WFLD080727-003',''),
	new Array('WFLD080727-004',''),
	new Array('WFLD080727-005',''),
	new Array('WFLD080727-006',''),
	new Array('WFLD080727-007',''),
	new Array('WFLD080727-008',''),
	new Array('WFLD080727-009',''),
	new Array('WFLD080727-010',''),
	new Array('WFLD080727-011',''),
	new Array('WFLD080727-012',''),
	new Array('WFLD080727-013',''),
	new Array('WFLD080727-014',''),
	new Array('WFLD080727-015',''),
	new Array('WFLD080727-016',''),
	new Array('WFLD080727-017',''),
	new Array('WFLD080727-018',''),
	new Array('WFLD080727-019',''),
	new Array('WFLD080727-020',''),
	new Array('WFLD080727-021',''),
	new Array('WFLD080727-022',''),
	new Array('WFLD080727-023',''),
	new Array('WFLD080727-024',''),
	new Array('WFLD080727-025',''),
	new Array('WFLD080727-026',''),
	new Array('WFLD080727-027',''),
	new Array('WFLD080727-028',''),
	new Array('WFLD080727-029',''),
	new Array('WFLD080727-030',''),
	new Array('WFLD080727-031',''),
	new Array('WFLD080727-032',''),
	new Array('WFLD080727-033',''),
	new Array('WFLD080727-034',''),
	new Array('WFLD080727-035',''),
	new Array('WFLD080727-036',''),
	new Array('WFLD080727-037',''),
	new Array('WFLD080727-038',''),
	new Array('WFLD080727-039',''),
	new Array('WFLD080727-040',''),
	new Array('WFLD080727-041',''),
	new Array('WFLD080727-042',''),
	new Array('WFLD080727-043',''),
	new Array('WFLD080727-044',''),
	new Array('WFLD080727-045',''),
	new Array('WFLD080727-046',''),
	new Array('WFLD080727-047',''),
	new Array('WFLD080727-048',''),
	new Array('WFLD080727-049',''),
	new Array('WFLD080727-050',''),
	new Array('WFLD080727-051',''),
	new Array('WFLD080727-052',''),
	new Array('WFLD080727-053',''),
	new Array('WFLD080727-054',''),
	new Array('WFLD080727-055',''),
	new Array('WFLD080727-056','')
);

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);
