/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/

var helvetica = {
      src: '/flash/helvetica.swf'
};

var frutiger = {
  src: '/flash/frutiger.swf'
};

// You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
// sIFR.useStyleCheck = true;
sIFR.activate(helvetica, frutiger);

sIFR.replace(frutiger, {
  wmode: 'transparent',
  selector: '#full h1'
  ,css: [
	'.sIFR-root { text-align: center; font-weight: normal; font-size:42px; color:#ffffff; }'
	,'a { text-decoration: none; }'
	,'a:link { color: #000000; }'
	,'a:hover { color: #CCCCCC; }'
  ]
});

sIFR.replace(helvetica, {
  wmode: 'transparent',
  selector: 'h4'
  ,css: [
	'.sIFR-root { text-align: center; font-weight: bold; font-size:18px; color:#ffd204; }'
	,'a { text-decoration: none; }'
	,'a:link { color: #000000; }'
	,'a:hover { color: #CCCCCC; }'
  ]
});


sIFR.replace(helvetica, {
  wmode: 'transparent',
  selector: '#left h1, #leftAlg h1, #leftSitemap h1, #rightAlg h1, #leftNews h1, #personeel h1, #left-zout h1, #right-zout h1'
  ,css: [
	'.sIFR-root { text-align: left; font-weight: bold; font-size:22px; color:#ffffff; }'
	,'a { text-decoration: none; }'
	,'a:link { color: #000000; }'
	,'a:hover { color: #CCCCCC; }'
  ]
});

sIFR.replace(helvetica, {
  wmode: 'transparent',
  selector: 'h2'
  ,css: [
	'.sIFR-root { text-align: left; font-weight: bold; font-size:18px; color:#ffd204; }'
	,'a { text-decoration: none; }'
	,'a:link { color: #000000; }'
	,'a:hover { color: #CCCCCC; }'
  ]
});

sIFR.replace(helvetica, {
  wmode: 'transparent',
  selector: 'h3'
  ,css: [
	'.sIFR-root { text-align: left; font-weight: bold; font-size:18px; color:#0968ac; }'
	,'a { text-decoration: none; }'
	,'a:link { color: #000000; }'
	,'a:hover { color: #CCCCCC; }'
  ]
});
