﻿function swapImage(img, replacement, showText) {
    
    document.getElementById(img).src = replacement;
    
    videoButtonText.style.display= showText ? 'block' : 'none';
}
