// invisiblemonki.com nav script

function grow(y) {
  if (!document.getElementById) return;
  var p=document.getElementById(y);
  p.style.fontSize="150%";
  p.style.textAlign="center";
}
 
function highlight(x) {
  if (!document.getElementById) return;
  var o=document.getElementById(x);
  o.style.color="#ffff00";
}

function unHighlight(x) {
  if (!document.getElementById) return;
  var o=document.getElementById(x);
  o.style.color="#ffffff";
}
