 /*****************************************************************************
    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 avenir = {
      src: '/images/avenir.swf'
    };


    var myriad = {
      src: '/images/myriad.swf'
    };


    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(avenir);
	sIFR.activate(myriad);


    sIFR.replace(avenir, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'letter-spacing': -1, 'leading': '-25' }
      }
	  	  ,filters: {
        DropShadow: {
           distance: 1
          ,color: '#000000'
          ,strength: 2
          ,alpha: .3
          ,blurX: 0
          ,blurY: 0
        }
	  }
    });

	sIFR.replace(avenir, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#A27834', 'letter-spacing': -.5, 'text-transform': 'uppercase', 'leading': '-4' }
      }

    });

    sIFR.replace(avenir, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#A27834', 'letter-spacing': -.2, 'leading': '2' }
      }
    });




