function activate(id) {
    document.getElementById(id).src = "img/" + id + "_on.jpg";
}

function deactivate(id) {
    document.getElementById(id).src = "img/" + id + "_off.jpg";
}
