// Used to swap the product images by clicking on their thumbnails.

function doImageSwap(newImage, doTiming) {
  if (doTiming == true)
		setTimeout("doImageSwap('"+newImage+"', false);", 50);
	else
	 document.getElementById('proImage').src = newImage;
	return true;
}