// JavaScript Document
 function MouseOver(id){
document.getElementById(id).style.backgroundColor = "#ffffff";
 }
 
  function MouseOut(id){
document.getElementById(id).style.backgroundColor = "#B6E0D6";
 }
 
