// JavaScript Document
function swapimages(imgID,imgURL)
{
	document.getElementById(imgID).src=imgURL;
}
