// JavaScript Document
function SwapOut(id, imageURL)
{
	var img = document.getElementById(id)
	img.src = "images/" + imageURL

	return true;
}