var gallery=new Array();
gallery[0]=new Array("The Diamond, Londonderry","diamond.js");
gallery[1]=new Array("Spittal Quarry","quarry.js");
gallery[2]=new Array("Other Work","other.js");
var gallselhtml = '<form name="galleries"><select onchange="JavaScript:gonewgallery();" size="1"><option>Choose A Gallery</option>';
for (galleriesloop=0; galleriesloop<gallery.length; galleriesloop++){
gallselhtml += '<option>&#149; '+gallery[galleriesloop][0]+'</option>';
}
gallselhtml += '</select></font></td></tr>';
function gonewgallery(){
	if (document.galleries.elements[0].selectedIndex != 0){
		self.location.href = 'thumbs.htm?0?'+(document.galleries.elements[0].selectedIndex-1);
	}
}


var thispage=self.location.href.split('?');
var thisgallery=0;
if (thispage.length>2){
	thisgallery=parseInt(thispage[2]);
}
document.write('<scri'+'pt language="JavaScrip'+'t" src="'+gallery[thisgallery][1]+'"></scri'+'pt>');
