jQuery(document).ready(function()
{
    var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
    var is_safari = navigator.userAgent.toLowerCase().indexOf('safari') > -1;

    if (is_chrome || is_safari)
    {

    }
    else
    {
        FLIR.init( { path: '/client/sadc/flir/' } );

        FLIR.replace('div.topicitem h2', new FLIRStyle({cFont:'TheSerif Regular',cSize:'25',mode:'wrap',realFontHeight:true}));
        FLIR.replace('div.content h1', new FLIRStyle({cFont:'TheSerif Regular',cSize:'25',mode:'wrap',realFontHeight:true}));
        FLIR.replace('span.pageTitle', new FLIRStyle({cFont:'TheSerif Regular',cSize:'16',mode:'wrap',realFontHeight:true}));
        FLIR.replace('div.result h2', new FLIRStyle({cFont:'TheSerifRegular',cSize:'16',mode:'wrap',realFontHeight:true}));

        FLIR.replace('div.contentitem h2', new FLIRStyle({cFont:'TheSerifRegular',cSize:'16',mode:'wrap',realFontHeight:true}));
        FLIR.replace('div.results h1', new FLIRStyle({cFont:'TheSerifRegular',cSize:'25',mode:'wrap',realFontHeight:true}));
        FLIR.replace('div.column4 ul li a', new FLIRStyle({cFont:'TheSerifRegular',cSize:'16',cColor:'black',realFontHeight:true }, new FLIRStyle({cFont:'TheSerif',cSize:'16',cColor:'red',realFontHeight:true})));
        FLIR.replace('.column4 .title', new FLIRStyle({cFont:'TheSerifRegular',cSize:'16',cColor:'red'}));
        FLIR.replace('.column4 .title_2', new FLIRStyle({cFont:'TheSerifBold',cSize:'16',cColor:'white'}));
        FLIR.replace('.tickertitle', new FLIRStyle({cFont:'TheSerifBold',cSize:'16',cColor:'white'}));
        FLIR.replace('.tickersubtitle', new FLIRStyle({cFont:'TheSerifLight',cSize:'16',cColor:'white'}));
    }
});
