/*****************************************************************************
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 frontgdqp = { src: 'gdqp.swf' };
var gdqp = { src: '../gdqp.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;

// Next, activate sIFR:
sIFR.activate(frontgdqp, gdqp);
sIFR.replace(frontgdqp, {
  selector: '#title',
  css: ['.sIFR-root { background-color: #d8d8d8; color: #000000; text-align:center;line-height:45px; font-size:30px;}']
  ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#ffffff'
        ,strength: 2
      }
	 }
});

sIFR.replace(gdqp, {
  selector: 'h2',
  css: ['.sIFR-root { background-color: #000000; color: #ffffff; text-align:left;height:38px;padding:0;margin:0; font-size:23px;}']
  ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#000000'
        ,strength: 2
      }
	 }
});
sIFR.replace(gdqp, {
  selector: 'h3',
  css: ['.sIFR-root { background-color:#B698D8;color: #000000; text-align:left;padding:0;margin:0; font-size:20px;}']
  ,filters: {
      DropShadow: {
        knockout: false
        ,distance: 1
        ,color: '#ffffff'
        ,strength: 2
      }
	 }
});

