 /*****************************************************************************
    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 helveticacondensedblack = {
      src: '/images/helveticacondensedblack.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(helveticacondensedblack);
	sIFR.activate(myriad);

    sIFR.replace(helveticacondensedblack, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'font-weight': 'bold', 'letter-spacing': -4, 'leading': '-20' }
      }
    });	

	sIFR.replace(helveticacondensedblack, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#A6B937', 'letter-spacing': -1, 'font-weight': 'bold', 'text-transform': 'uppercase', 'leading': '-4' }
      }
    });

    sIFR.replace(myriad, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#A6B937', 'font-weight': 'bold', 'letter-spacing': -.5, 'leading': '2' }
      }
    });
	
