 /*****************************************************************************
    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 viteau = {
      src: '/sifr/sifr.swf'
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(viteau);

    sIFR.replace(viteau, {
      selector: 'h1.groen'
	,wmode: 'transparent'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#64a830; font-size:20px}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });
	
	sIFR.replace(viteau, {
      selector: 'h1'
	,wmode: 'transparent'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#015688; font-size:20px}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });
	
	sIFR.replace(viteau, {
      selector: 'h2.groen'
	,wmode: 'transparent'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#64a830; font-size:18px}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });
	
	sIFR.replace(viteau, {
      selector: 'h2'
	,wmode: 'transparent'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#015688; font-size:18px}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });
	
	sIFR.replace(viteau, {
      selector: 'h3'
	,wmode: 'transparent'
      ,css: [
        '.sIFR-root { text-align: left; font-weight: bold; color:#ffffff; font-size:18px}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });