    /*****************************************************************************
    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 lucida = {
      src: 'flash/lucida.swf'
      ,ratios: [7, 1.32, 11, 1.31, 13, 1.24, 14, 1.25, 19, 1.23, 27, 1.2, 34, 1.19, 42, 1.18, 47, 1.17, 48, 1.18, 69, 1.17, 74, 1.16, 75, 1.17, 1.16]
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(lucida);
  	
  
    sIFR.replace(lucida, {selector: 'h2,h3,h4,h5'});
  
    sIFR.replace(lucida, {
      selector: 'h2.title'
      ,css: {
        '.sIFR-root': { 'color': '#A64008', 'letter-spacing': -1.5, }
      }
    });
    
    
    sIFR.replace(lucida, {
      selector: 'h3.cornered-box'
      ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'background-color': '#D0882B' }
      }
    });
    
    sIFR.replace(lucida, {
      selector: 'h4.mentor'
      ,css: {
        '.sIFR-root': { 'color': '#A64008' }
      }
      ,filters: {
        DropShadow: {
          knockout: true
          ,distance: 1
          ,color: '#330000'
          ,strength: 2
        }
      }
    });
    
    sIFR.replace(lucida, {
      selector: 'h5.hp'
      ,css: {
        '.sIFR-root': { 'color': '#FFFFFF' }
      }
    });
    
    sIFR.replace(lucida, {
      selector: 'h6.hp-greet'
      ,css: {
        '.sIFR-root': { 'color': '#666666' }
      }
    });