// JavaScript Document
Cufon.replace('h1, h2, h3, .producttext, #mainMenu', { fontFamily: 'Omnes', hover: true });  


 /* Cufon does not replace button text so use workaroubd below */
$(function() {
    $('input.button').each(function(){
        $(this).after(unescape('%3Cspan class="button"%3Eaa%3C/span%3E'));
        $(this).hide();
        $(this).next('span.button').text($(this).val()).click(function(){
            $(this).prev('input.button').click();
        });
    });
    Cufon.replace('.button', { fontFamily: 'Omnes', hover: true }); 
});



