    /*****************************************************************************
    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 infomedium = {
      src: 'http://www.fwc.co.nz/infomedium.swf', wmode: 'transparent'
    };



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

    sIFR.replace(infomedium, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #343434;}'
      ]
    });
	
	sIFR.replace(infomedium, {
      selector: 'h2'
      ,css: {
        '.sIFR-root': { 'color': '#9e0824', 'font-weight': 'normal'}
      }
    
    });
	

  
    sIFR.replace(infomedium, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #c1af00;}'
      ]
    });
	
    sIFR.replace(infomedium, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #ffffff;}'
      ]
    });
	
    sIFR.replace(infomedium, {
      selector: 'h6'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #9e0824;}'
      ]
    });
