/*****************************************************************************
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.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.

var GoodLFLight = { src: 'goodLF_Light.swf' };

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

// sIFR.useStyleCheck = true;

//sIFR.activate(GothamRoundedBook, Font2, Font3 etc.);
sIFR.activate(GoodLFLight);


sIFR.replace(GoodLFLight, {
  selector: 'h2',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #1f1f1f; font-size:26px;}'
});

sIFR.replace(GoodLFLight, {
  selector: 'h3',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #ffffff; font-size:20px; text-align:center}'
});

sIFR.replace(GoodLFLight, {
  selector: '.nav_item',
  offsetTop: 2,
  preventWrap: true,
  wmode: 'transparent', 
  css: ['.sIFR-root { color: #ffffff; font-size:26px; cursor:pointer;}', 'a {text-decoration:none; color:#ffffff}', 'a:hover {text-decoration:none; color:#4c0000}', 'a:active {text-decoration:none; color:#7e0505}']
});

sIFR.replace(GoodLFLight, {
  selector: '.nav_item_active',
  offsetTop: 2,
  wmode: 'transparent', 
  preventWrap: true,
  css: ['.sIFR-root { color: #4c0000; font-size:26px; cursor:pointer;}', 'a {text-decoration:none; color:#4c0000}', 'a:hover {text-decoration:none; color:#4c0000}', 'a:active {text-decoration:none; color:#4c0000}']
});

sIFR.replace(GoodLFLight, {
  selector: '.titel',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #1f1f1f; font-size:26px;}'
});

sIFR.replace(GoodLFLight, {
  selector: '.subtitel',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #ed1b2e; font-weight:bold; font-size:18px;}'
});

sIFR.replace(GoodLFLight, {
  selector: '.sub_nav_item',
  offsetTop: 2,
  preventWrap: true,
  wmode: 'transparent', 
  css: ['.sIFR-root { color: #4c0000; font-size:20px; cursor:pointer;  text-align:center}', 'a {text-decoration:none; color:#4c0000}', 'a:hover {text-decoration:none; color:#4c0000}', 'a:active {text-decoration:none; color:#4c0000}']
});

sIFR.replace(GoodLFLight, {
  selector: '.sub_nav_item_active',
  offsetTop: 2,
  wmode: 'transparent', 
  preventWrap: true,
  css: ['.sIFR-root { color: #ffffff; font-size:20px; cursor:pointer;  text-align:center}', 'a {text-decoration:none; color:#ffffff}', 'a:hover {text-decoration:none; color:#ffffff}', 'a:active {text-decoration:none; color:#ffffff}']
});

sIFR.replace(GoodLFLight, {
  selector: '.naam_bedrijf',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #ed1b2e; font-size:26px;}'
});

sIFR.replace(GoodLFLight, {
  selector: '.plaats_bedrijf',
  wmode: 'transparent', 
  css: '.sIFR-root { color: #1f1f1f; font-size:26px;}'
});


