<!--
// configuration settings
var npics = 36 ; // number of pictures
var mypix = new Array() 
var isIE=document.all?true:false;
var isNS4=document.layers?true:false; 
var isNS6=navigator.userAgent.indexOf("Gecko")!=-1?true:false;

// load photos 
mypix[1] = new Image(); mypix[1].src = "gallery/large1.jpg";
mypix[2] = new Image(); mypix[2].src = "gallery/large2.jpg";
mypix[3] = new Image(); mypix[3].src = "gallery/large3.jpg";
mypix[4] = new Image(); mypix[4].src = "gallery/large4.jpg";
mypix[5] = new Image(); mypix[5].src = "gallery/large5.jpg";
mypix[6] = new Image(); mypix[6].src = "gallery/large6.jpg";
mypix[7] = new Image(); mypix[7].src = "gallery/large7.jpg";
mypix[8] = new Image(); mypix[8].src = "gallery/large8.jpg";
mypix[9] = new Image(); mypix[9].src = "gallery/large9.jpg";
mypix[10] = new Image(); mypix[10].src = "gallery/large10.jpg";
mypix[11] = new Image(); mypix[11].src = "gallery/large11.jpg";
mypix[12] = new Image(); mypix[12].src = "gallery/large12.jpg";
mypix[13] = new Image(); mypix[13].src = "gallery/large13.jpg";
mypix[14] = new Image(); mypix[14].src = "gallery/large14.jpg";
mypix[15] = new Image(); mypix[15].src = "gallery/large15.jpg";
mypix[16] = new Image(); mypix[16].src = "gallery/large16.jpg";
mypix[17] = new Image(); mypix[17].src = "gallery/large17.jpg";
mypix[18] = new Image(); mypix[18].src = "gallery/large18.jpg";
mypix[19] = new Image(); mypix[19].src = "gallery/large19.jpg";
mypix[20] = new Image(); mypix[20].src = "gallery/large20.jpg";
mypix[21] = new Image(); mypix[21].src = "gallery/large21.jpg";
mypix[22] = new Image(); mypix[22].src = "gallery/large22.jpg";
mypix[23] = new Image(); mypix[23].src = "gallery/large23.jpg";
mypix[24] = new Image(); mypix[24].src = "gallery/large24.jpg";
mypix[25] = new Image(); mypix[25].src = "gallery/large25.jpg";
mypix[26] = new Image(); mypix[26].src = "gallery/large26.jpg";
mypix[27] = new Image(); mypix[27].src = "gallery/large27.jpg";
mypix[28] = new Image(); mypix[28].src = "gallery/large28.jpg";
mypix[29] = new Image(); mypix[29].src = "gallery/large29.jpg";
mypix[30] = new Image(); mypix[30].src = "gallery/large30.jpg";
mypix[31] = new Image(); mypix[31].src = "gallery/large31.jpg";
mypix[32] = new Image(); mypix[32].src = "gallery/large32.jpg";
mypix[33] = new Image(); mypix[33].src = "gallery/large33.jpg";
mypix[34] = new Image(); mypix[34].src = "gallery/large34.jpg";
mypix[35] = new Image(); mypix[35].src = "gallery/large35.jpg";
mypix[36] = new Image(); mypix[36].src = "gallery/large36.jpg";

function doimg(obj,n) {
	var obj = document.getElementById('myimg');
	if (isIE){
		obj.style.filter="blendTrans(delay=.5)";
		obj.filters.blendTrans.Apply();
		obj.src = mypix[n].src;
		obj.filters.blendTrans.Play();
  	} else {
		crossfade(obj, mypix[n].src, '1', '');		
	} 
}

function initImgs() {
	doimg('myimg',1);
}
