//	swap the background image of the 'images' div to that selected from the gallery list
function swap(image)		{

	if(document.layers)	{ // browser="NN4";
	
		document.layers["images"].style.background = 'url('+ image +')';

	}

	if(document.all){ // browser="IE";

		
		document.all.images.style.background = 'url('+ image +')';
		

	}

	if(!document.all && document.getElementById){ // browser="NN6+ or IE5+ if you're willing to dump the !document.all stuff";
		

		document.getElementById('images').style.background = 'url('+ image +')';
		
	
	}

}