function fn_rollover(id, off_on) {
    if(!document.getElementById) { return; }
    img=document.getElementById(id);
    img.src='images/' + id + off_on + '.jpg';
}

