function swapImg(id,swap)
{
	org = document.getElementById(id);

	isrc = org.src;

	org.src = swap;

}
