// JavaScript Document
mt=null

var am=0;
function sm(i)
{
if (am) hide(am);
show(i);
am = i;
stpt();
}
function cm()
{
if (am) hide(am);
am = 0;
}

function strtt()
{
mt=window.setTimeout('cm();stpt();', 0);
}

function stpt()
{
window.clearTimeout(mt);
mt=null;
}

function hide(i)
{
eval("document.getElementById('td"+i+"').style.backgroundColor='#003399'")
}
function show(i)
{
eval("document.getElementById('td"+i+"').style.backgroundColor='#0099CC'")
}

