function flirInit() {
  FLIR.init( { path:'/FIR/' } );

FLIR.onreplaced = function(el) {
    $(el).find("img").load(function(){
        el.style.visibility = 'visible';
    }).error(function(){
        el.style.visibility = 'visible';
    });
}
                            
  $(".sifr").each( function()       { FLIR.replace(this, new FLIRStyle({ cFont:'hu' })); } );        
  $(".cms_title").each( function()  { FLIR.replace(this, new FLIRStyle({ cFont:'hu' })); } );        
  
}
