/*****************************************************************************
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.
*****************************************************************************/

// 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 futura = { src: '/sifr3/futura.swf' };
sIFR.activate(futura);

var helvetica = { src: '/sifr3/helveticaneue53ex.swf' };
sIFR.activate(helvetica);

var avant = { src: '/sifr3/avantgcnd.swf' };
sIFR.activate(helvetica);

var helultra = { src: '/sifr3/helultra.swf' };
sIFR.activate(helvetica);

sIFR.replace(avant, {
  selector: 'h1',
  fitExactly: true,
  wmode:"transparent",
  css: [
  '.sIFR-root { background-color: #FFF; color: #5de00f; letter-spacing:-1.5; font-weight:900; margin:0; padding:0;  z-index:20;}'
 ,'a {text-decoration:none; color:#5de00f;}'
 ,'a:link {color:#5de00f;}'
 ,'a:hover {color:#5de00f;}'
  ]
  
});


sIFR.replace(avant, {
  selector: 'h2',
  fitExactly: true,
  wmode:"transparent",
  css: [
  '.sIFR-root { background-color: #FFF; color: #5de00f; letter-spacing:-1.5; font-weight:900; margin:0; padding:0; z-index:20;}'
 ,'a {text-decoration:none;}'
 ,'a:link {color:#666666;}'
 ,'a:hover {color:#666666;}'
  ]
  
});


