    /*****************************************************************************
    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 shareregular = {
      src: '/shareregular.swf', wmode: 'transparent'
    };

	  var arialblack = {
      src: '/arialblack.swf', wmode: 'transparent'
    };

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

    sIFR.replace(shareregular, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #3987c0; font-size: 24px; letter-spacing: -1;}'
      ]
    });

    sIFR.replace(shareregular, {
      selector: 'h2'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #3a3938; font-size: 20px; letter-spacing: -1;}'
	]
    });

    sIFR.replace(shareregular, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #9ccbf0; font-size: 22px;}'
      ]
    });
	
	  sIFR.replace(shareregular, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #ffffff; font-size: 22px;}'
      ]
    });



	    sIFR.replace(shareregular, {
      selector: 'h5'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: normal; color: #175f94; font-size: 20px; letter-spacing: -1;}'
      ]
    });


	    sIFR.replace(arialblack, {
      selector: 'h6'
      ,css: [
        '.sIFR-root {font-weight: normal; color: #10578b; font-size: 12px;}'
      ]
    });





