var current = "hm";

function clicked(tgt)
{
   highlight(tgt);
   parent.topFrame.accordian('main',10,-19,10,2,20);
   parent.topFrame.accordian('main2',10,-19,10,2,20);
}

function highlight(tgt)
{
   document.getElementById(current).style.color = "000000";
   document.getElementById(current).style.letterSpacing = "0pt";
   current = tgt;
   document.getElementById(tgt).style.color = "ffff00";
   document.getElementById(tgt).style.letterSpacing = "2pt";
}