    /*****************************************************************************
    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 steinemi = {
      src: '/steinemi.swf', wmode: 'transparent'
    };

    var steinemu = {
      src: '/steinemu.swf', wmode: 'transparent'
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    sIFR.useStyleCheck = true;
    sIFR.activate(steinemi, steinemu);

    sIFR.replace(steinemu, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #0a1040;}'
      ]
    });
  
sIFR.replace(steinemu, {
      selector: 'h2,h3,h5'
      ,css: {
        '.sIFR-root': { 'color': '#0a1040', 'text-transform': 'capitalize', 'font-weight': 'normal','font-size': '16'}
      }
    
    });

sIFR.replace(steinemu, {
      selector: 'h4'
      ,css: {
        '.sIFR-root': { 'color': '#22c7c5', 'text-transform': 'capitalize', 'font-weight': 'normal','font-size': '19'}
      }
    
    });
