

// Image swapper Pass image as this and url of new image.

function imgSwap(obj, imgSrc)
{
	obj.src = imgSrc;
}
