﻿function swapImage(imgID, path)
{
    img = document.getElementById(imgID);
    img.src = path;
}
