/*****************************************************************************
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 thesans = { src: '/flash/sifr.swf' };

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(thesans);

sIFR.replace(thesans, {
    selector: 'h1'
	,wmode: 'transparent'
    ,css: [
      '.sIFR-root { text-align: left; font-weight: normal; color: #003366; font-size:16px; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });
  
  sIFR.replace(thesans, {
    selector: 'h2.fp'
	,wmode: 'transparent'
    ,css: [
      '.sIFR-root { text-align: left; font-weight: normal; color: #996633; font-size:16px; margin-left:9px; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });
  
  sIFR.replace(thesans, {
    selector: 'h2'
	,wmode: 'transparent'
    ,css: [
      '.sIFR-root { text-align: left; font-weight: normal; color: #996633; font-size:16px;}'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });
  
  sIFR.replace(thesans, {
    selector: '.block h3'
	,wmode: 'transparent'
    ,css: [
      '.sIFR-root { text-align: left; font-weight: normal; color: #996633; font-size:14px; padding:0; margin:0; line-height:10px;}'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });

