/*****************************************************************************
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 quicksand = { src: '/wp-content/themes/optimisaresearch/images/sifr_quicksand.swf' };
    var quicksandbold = { src: '/wp-content/themes/optimisaresearch/images/sifr_quicksandbold.swf' };
    var fabulous50s = { src: '/wp-content/themes/optimisaresearch/images/sifr_boopee.swf' };

    // You probably want to switch this on, but read http://wiki.novemberborn.net/sifr3/DetectingCSSLoad first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(quicksand);
    sIFR.activate(quicksandbold);

    sIFR.replace(quicksandbold, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { color:#830283; text-align:left; font-weight:bold; leading:-5; letter-spacing:-2; }'
      ],
      wmode: 'transparent'
    });

    sIFR.replace(quicksand, {
      selector: 'h2'
      ,css: [
        '.sIFR-root { color:#666666; text-align:left; font-weight:bold; leading:0; letter-spacing:-1; }'
        ,'a { color:#830283; text-decoration:underline; }'
        ,'a:hover { color:#830283; text-decoration:none; }'
      ],
      wmode: 'transparent'
    });

    sIFR.replace(quicksandbold, {
      selector: 'h3'
      ,css: [
        '.sIFR-root { color:#000000; text-align:left; font-weight:bold; leading:-5; letter-spacing:0; }'
        ,'a { color:#830283; text-decoration:none; }'
        ,'a:hover { color:#830283; text-decoration:underline; }'
      ],
      wmode: 'transparent'
    });

    sIFR.replace(quicksand, {
      selector: 'h4'
      ,css: [
        '.sIFR-root { color:#666666; text-align:left; leading:0; letter-spacing:0; }'
      ],
      wmode: 'transparent'
    });



