I am using Cufon to embed tags with the 'Print Clearly' typeface.
On the hover state of the tag I would like the text to change to bold, how can I do this with Cufon?
<script src="js/jquery-1.4.2.js" type="text/javascript"></script>
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/print-clearly_400.font.js" type="text/javascript"></script>
<script type="text/javascript">
Cufon.replace('a', fontWeight: 'normal',
hover: {
fontWeight: 'bold'
});
</script>