I'd love an update on this also.
I'm using the following:
Cufon.set('fontFamily', 'ITC Avant Garde Std Bk').replace('a')('h1')('h2')('h3')('h4')('p')('li')('#access .menu')('#access div.menu ul')('#couples h3')('#pros h3')('.textwidget');
Cufon.set('fontFamily', 'ITC Avant Garde Std Md').replace('strong')('h3')('#footer h4')('#footer h3')('h1.entry-title');
I would like to be able to set hover states for my links. I added changed to the following:
Cufon.set('fontFamily', 'ITC Avant Garde Std Bk').replace('a', {hover: true})('h1')('h2')('h3')('h4')('p')('li')('#access .menu')('#access div.menu ul')('#couples h3')('#pros h3')('.textwidget');
Cufon.set('fontFamily', 'ITC Avant Garde Std Md').replace('strong')('h3')('#footer h4')('#footer h3')('h1.entry-title');
This hasn't made any difference. I was able to get a hover effect working by adding:
Cufon('a', {hover: {color: 'aqua'}});
... to the top of the code. However this was very buggy. The links would change color but also turn bold.
Cufon('a', {hover:true});
means that the color doesn't change, but again the links turn bold.
Can someone please shed some light on this!