  /*****************************************************************************
    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 dax = {
      src: 'calibri.swf'
    };

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

    sIFR.replace(dax, {
      selector: 'h1.opdracht'
      ,css: [
        '.sIFR-root { color: #74b547; }'
        ,'span { color: #74b547; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #74b547; }'
        ,'a:hover { color: #74b547; }'
      ]
	,wmode: 'transparent'
    });

    sIFR.replace(dax, {
      selector: 'h1.zzp'
      ,css: [
        '.sIFR-root { color: #e36c0a; }'
        ,'span { color: #e36c0a; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #e36c0a; }'
        ,'a:hover { color: #e36c0a; }'
      ]
	,wmode: 'transparent'
    });

    sIFR.replace(dax, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { color: #4e5441; }'
        ,'span { color: #4e5441; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #4e5441; }'
        ,'a:hover { color: #4e5441; }'
      ]
	,wmode: 'transparent'
    });

    sIFR.replace(dax, {
      selector: 'h2'
      ,css: [
        '.sIFR-root { color: #fbf5f0; background-color: #575D4B; }'
        ,'span { color: #fbf5f0; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #fbf5f0; }'
        ,'a:hover { color: #fbf5f0; }'
      ]
	,wmode: 'transparent'
    });

    sIFR.replace(dax, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { color: #ffffff; }'
        ,'span { color: #fbf5f0; }'
        ,'a { text-decoration: underline; }'
        ,'a:link { color: #fbf5f0; }'
        ,'a:hover { color: #fbf5f0; }'
      ]
	,wmode: 'transparent'
    });

    sIFR.replace(dax, {
      selector: 'div#gegevens strong'
      ,css: [
        '.sIFR-root { color: #575d4b; font-weight: bold; }'
        ,'span { color: #575d4b; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #575d4b; }'
        ,'a:hover { color: #575d4b; }'
      ]
    });

    sIFR.replace(dax, {
      selector: 'div#documenten strong'
      ,css: [
        '.sIFR-root { color: #575d4b; font-weight: bold; }'
        ,'span { color: #575d4b; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #575d4b; }'
        ,'a:hover { color: #575d4b; }'
      ]
    });
