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



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



sIFR.replace(cochin, {
  selector: 'h1',
  fitExactly: true,
  css: [
  '.sIFR-root { background-color: #FFF; color: #000;  }'
 ,'a {text-decoration:none;}'
 ,'a:link {color:#666666;}'
 ,'a:hover {color:#666666;}'
  ]
  
});



sIFR.replace(helultra, {
  selector: 'h2',
  fitExactly: true,
  css: [
  '.sIFR-root { background-color: #FFF; color: #FF782D; font-weight:100; line-height:40px; }'
 ,'a {text-decoration:none;}'
 ,'a:link {color:#666666;}'
 ,'a:hover {color:#666666;}'
  ]
  
});


sIFR.replace(cochin, {
  selector: 'h3',
  fitExactly: true,
  css: [
  '.sIFR-root { background-color: #FFF; color: #000; }'
 ,'a {text-decoration:none;}'
 ,'a:link {color:#666666;}'
 ,'a:hover {color:#666666;}'
  ]
  
});


sIFR.replace(cochin, {
  selector: 'h5',
  fitExactly: true,
  css: [
  '.sIFR-root { background-color: #f56b2f; color: #FFFFFF; }'
 ,'a {text-decoration:none; color:#FFFFFF;}'
 ,'a:link {color:#FFFFFF;}'
 ,'a:hover {color:#FFFFFF;}'
  ]
  
});





