function Over(src,clrOver) { src.style.cursor = 'hand'; src.bgColor = clrOver; }
function Out(src,clrIn) { src.style.cursor = 'default'; src.bgColor = clrIn; }
function Click(src) { src.children.tags('A')[0].click(); }