/*****************************************************************************
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 Bodoni = { src: '/stuff/Bodoni.swf' };
sIFR.useStyleCheck=true;
sIFR.bHideBrowserText=true;
sIFR.activate(Bodoni);

sIFR.replace(Bodoni, {
  selector: 'h1.Title', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #ffffff; font-size: 24px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.Title1', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #ffffff; font-size: 28px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.Title2', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #ffffff; font-size: 21px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.TitleRight', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #ffffff; font-size: 30px; text-align: right; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.TitleRight1', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #ffffff; font-size: 36px; text-align: right; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.SectionTitle', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #a29061; font-size: 24px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.BlackTitle', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #000000; font-size: 24px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.BlackTitle1', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #000000; font-size: 30px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.SectionTitleRight', wmode: 'transparent',
  css: [
    '.sIFR-root { width: 500px; color: #a29061; font-size: 24px; text-align: right; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h1.SubTitle', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #b3a49f; font-size: 24px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h2.SubTitle', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #b3a49f; font-size: 21px; }'
  ]
});

sIFR.replace(Bodoni, {
  selector: 'h3.SubTitle', wmode: 'transparent',
  css: [
    '.sIFR-root { color: #b3a49f; font-size: 41px; }'
  ]
});




