/*****************************************************************************
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`.
*****************************************************************************/
// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var tahoma = { src: './sifr3/js/tahoma.swf' };
var lucida = { src: './sifr3/js/lucida.swf' };

sIFR.useDomLoaded = false;

sIFR.activate(tahoma, lucida);

sIFR.replace(tahoma, {
  selector: 'h2',
  wmode: 'transparent',
  css: ['.sIFR-root{color: #b2a578; letter-spacing: +1; font-size: 20px; }']
});

sIFR.replace(tahoma, {
  selector: 'h3.feel',
  wmode: 'transparent',
  css: ['.sIFR-root{color: #b2a578; letter-spacing: +1; text-align: right; font-size: 34px; }'],
  tuneWidth: 5,
  forceSingleLine: true
});

sIFR.replace(lucida, {
  selector: 'h3.difference',
  wmode: 'transparent',
  css: ['.sIFR-root{color: #b2a578; letter-spacing: +1; font-size: 20px; }']
});

sIFR.replace(tahoma, {
  selector: 'h3',
  wmode: 'transparent',
   css: ['.sIFR-root{color: #ffffff; letter-spacing: +1;}']
});
