function swapImg(img1,img2) {
	if (document.images) {
		document[img1].src = img2;
	}
}
