<!--	
	function Picture(filename, landscape) {
		this.img = new Image();
		this.img.src = filename; 
		this.landscape = landscape;
	}

	var pictures = new Array(
								 new Picture("band_photos/01.jpg",true,""),
								 new Picture("band_photos/02.jpg",true,""),
								 new Picture("band_photos/03.jpg",true,""),
								 new Picture("band_photos/04.jpg",true,""),
								 new Picture("band_photos/05.jpg",true,""),
								 new Picture("band_photos/06.jpg",true,""),
								 new Picture("band_photos/07.jpg",true,"")
								);

	function swapImageX(n) {
		curImage = n;
		swapImage(n);	
	}
	
	function swapImage(n) {
		if(pictures[n].landscape == true) {
			if(nn) {
			  document.displayc.document.display.src = pictures[n].img.src;
			} else {
			  document.images.display.src = pictures[n].img.src;
			}

				objDisplay.css.visibility = "visible";
		} 
		
       if(dom) objCaption.obj.pictures[n];
       else if(nn) {
         objCaption.obj.document.write(pictures[n]);
         objCaption.obj.document.close();
       }
   	}
	
//-->