var base, high;

function init()
{  high="#DDFFCC";
   base="";
}

function highlight(nd)
{  
   base=nd.style.backgroundColor;
   nd.style.backgroundColor=high;
}

function normal(nd)
{ 
   nd.style.backgroundColor=base;
}

init();
