 /*****************************************************************************
    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 serifa = {
      src: '/images/serifa.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(serifa);
	sIFR.activate(myriad);


    sIFR.replace(serifa, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'letter-spacing': -3 }
      }
    });


	sIFR.replace(serifa, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#305F92', 'letter-spacing': -1, 'text-transform': 'uppercase' }
      }
    });


    sIFR.replace(myriad, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#B2B23F', 'letter-spacing': -.5 }
      }
    });
	
