// 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 dinot = { src: '/include/dinot.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(dinot);

sIFR.replace(dinot, {
  selector: 'em',
  wmode: 'transparent',
  fitExactly: true,
  //css: [ '.sIFR-root { color: #FFFFFF; cursor: pointer; }', 'a { color: #FFFFFF; text-decoration: none; }', 'a:hover { color: #FFFFFF; text-decoration: none;' ]
  css: '.sIFR-root { color: #AEAEAE; cursor: pointer; }'
});