(function($) {
    var fontFamily = 'Strait',
        selector = [
            'h1, h2, h3, h4, h5',
            '#quote p'
        ];
    
    if (!$.browser.msie || parseInt($.browser.version) > 6) {
        selector.push('#footer nav ul li a');
    }
    else {
        $(function() {
            $('#footer nav ul li a').addClass('nocufon');
        });
    }
    
    Cufon.replace(selector.join(', '), {fontFamily: fontFamily});
    jQuery(function() {
        $(selector.join(', ')).addClass('cufoned');
    });
    
    
})(jQuery);


