  /*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/
  
    var mujfont = {
      src: './fonty/helvetica65.swf'
    };
    
    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(mujfont);
    
    sIFR.replace(mujfont, {
      selector: 'h1'
      ,css: {
        '.sIFR-root': { 'color': '#161616', 'font-size': '20px', 'height': '20px', 'line-height': '20px', 'font-weight': 'normal'}
      }
    });
    
    sIFR.replace(mujfont, {
      selector: 'h2.malyNadpis'
      ,css: {
        '.sIFR-root': { 'color': '#161616', 'font-size': '15px', 'text-transform': 'uppercase'}
      }
    });  
    
    sIFR.replace(mujfont, {
      selector: 'h1.nadpisRepasovaneDily'
      ,css: {
        '.sIFR-root': { 'color': '#161616', 'font-size': '16px', 'text-transform': 'uppercase', 'font-weight': 'normal'}
      }
    });      

