
function movein(src) {
if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = '000080';
  }
}
function moveout(src) {
if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = '#3C68AE';
  }
}

