// JavaScript Document

  var i=0;
  function Over(i){
  document.getElementById("a"+i).style.backgroundColor='#721d0b';
  document.getElementById("b"+i).style.backgroundColor='#951805';
  document.getElementById("b"+i).style.borderRight='#9A471E solid 9px';
  } 
  function Out(i){
  document.getElementById("a"+i).style.backgroundColor='#621A09';
  document.getElementById("b"+i).style.backgroundColor='#621A09';
  document.getElementById("b"+i).style.borderRight='#7c2a06 solid 9px';
  } 



