/*****************************************************************************
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 blackjack = { src: 'swf/sifr-fonts/black_jack.swf' };
var myriad = { src: 'swf/sifr-fonts/myriad_pro_bc.swf' };

sIFR.activate(blackjack);
sIFR.activate(myriad);


sIFR.replace(blackjack, {
  selector: '.main_title'
  ,css: [
    '.sIFR-root { text-align: right; margin-right: 10px; font-weight: normal; color: #4AA9CC;}',
    'a {color: #C60039; text-decoration: none;}','a:hover {color: #4AA9CC;}'
  ]
  ,wmode: 'transparent'
});

sIFR.replace(blackjack, {
  selector: '.section_title'
  ,css: [
    '.sIFR-root { text-align: left; margin-right: 10px; font-weight: normal; color: #4AA9CC;}'
  ]
  ,wmode: 'transparent'
});
sIFR.replace(blackjack, {
  selector: '.tag-line'
  ,css: [
    '.sIFR-root { text-align: left; margin-right: 10px; font-weight: normal; color: #4AA9CC;}'
  ]
  ,wmode: 'transparent'
});

sIFR.replace(myriad, {
  selector: '.reg-text'
  ,css: [
    '.sIFR-root { text-align: left; margin-right: 0px; font-weight: normal; color: #4AA9CC;}',
    'a {color: #4AA9CC; text-decoration: none;}','a:hover {color: #ABD037;}'
  ]
  ,wmode: 'transparent'
});

sIFR.replace(myriad, {
  selector: '.sponsor-title'
  ,css: [
    '.sIFR-root { text-align: left; margin-right: 0px; font-weight: normal; color: #4AA9CC;}',
    'a {color: #4AA9CC; text-decoration: none;}','a:hover {color: #ABD037;}'
  ]
  ,wmode: 'transparent'
});






