/*****************************************************************************
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 sentinel = {
  src: '/stylesheets/sentinel-semibolditalic.swf'
};
var archer = {
  src: '/stylesheets/archer-medium.swf'
};

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(sentinel,archer);

// sentinel italic dark
sIFR.replace(sentinel, {
	wmode: 'transparent', 
	selector: '.sentinel',
	preventWrap: true,
	css: ['.sIFR-root { color:#1c3953; }','a { color:#1c3953;text-decoration:none; }','a:hover { color:#1c3953; }'],
	forceWidth: true,
	fitExactly: true,
	tuneHeight: '-5'
});

// archer standard dark
sIFR.replace(archer, {
	wmode: 'transparent', 
	selector: '.archer',
	preventWrap: true,
	css: ['.sIFR-root { color:#1c3953; }','a { color:#1c3953;text-decoration:none; }','a:hover { color:#1c3953; }'],
	forceWidth: true,
	fitExactly: true,
	tuneHeight: '-5'
});

// archer standard green
sIFR.replace(archer, {
	wmode: 'transparent', 
	selector: '.archer-green',
	preventWrap: true,
	css: ['.sIFR-root { color:#7c9f29; }','a { color:#7c9f29;text-decoration:none; }','a:hover { color:#7c9f29; }'],
	forceWidth: true,
	fitExactly: true,
	tuneHeight: '-5'
});