if (document.images) {

pic01 = new Image();
pic01.src = "/images/gallery/01.jpg";

pic02 = new Image();
pic02.src = "/images/gallery/02.jpg";

pic03 = new Image();
pic03.src = "/images/gallery/03.jpg";

pic04 = new Image();
pic04.src = "/images/gallery/04.jpg";

pic05 = new Image();
pic05.src = "/images/gallery/05.jpg";

pic06 = new Image();
pic06.src = "/images/gallery/06.jpg";

pic07 = new Image();
pic07.src = "/images/gallery/07.jpg";
}

function swapImage(imgid,imgnew) {
	if (navigator.appVersion.substring(0,1) >=3) {
			document.images[imgid].src=eval(imgnew + ".src");
	}
}

