function itemOn(id) {

    // Highlight menu item
    var item = document.getElementById(id);
    item.src = 'img/' + id + '-on.gif';

}
function itemOff(id) {

    // Remove highlighting
    var item = document.getElementById(id);
    item.src = 'img/' + id + '.gif';

}
