

function swapImg(target, src)
{
	image = new Image();
	image.src = src;
	target.src = image.src;
}

function $(id)
{
	return document.getElementById(id);
}