// This function replaces the swapImage function
function swapImageNew(mouseevent, id, overImg, origImg) {

    if (mouseevent == 'over'){
        document.getElementById(id).setAttribute('src',overImg);
    }
    
    else if (mouseevent == 'out') {
        document.getElementById(id).setAttribute('src',origImg);
    }
    
    else {
        return;
    }
}



