
function mouseOver(id) {
    document.getElementById(id).src = "img/" + "bucket" + "2.gif";
}

function mouseOut(id) {
    document.getElementById(id).src = "img/" + "bucket" + "1.gif";
}

