
// function to swap image on mouse over

function swapimage(image, newimage) {

path = "images/buttons/" + newimage;

document.getElementById(image).src = path;

}
