 function rollOverIn(owner,toName)
    {
      if (owner.className != 'clicked_' + toName)
      {
        owner.className = toName + "_hover";
        //toname = sectiontitle
      }
    }
    function rollOverOut(owner,toName)
    {
      if (owner.className == toName + '_hover')
      {
        owner.className = toName;
        //toName = 'sectiontitle';
      }
    }