function imgOver(img) {
  obj = document.getElementById('img_ref');
  obj.src = img;
}

function imgOut() {
  obj = document.getElementById('img_ref');
  obj.src = 'images/img_right.jpg';
}
