/*****************************************************************************
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.
*****************************************************************************/

// Use sIFR for <html dir="ltr"> *ONLY*.
//$direction = $('html').first().attr('dir');

// Make an object pointing to the location of each Flash movie.
var eurostile = { src: '/scripts/sifr/eurostile-hr.swf' };

// Activate sIFR
//sIFR.activate(eurostile);
// There must be *only one* sIFR.activate()! Use comma-separated for multiples.

// Set the replacements. You can do as many as you like.
	sIFR.replace(eurostile,{
	  selector:'h1.sIFR-Me',
	  wmode:'transparent',
	  css:['.sIFR-root {color: #6D6F72; leading: -5; text-transform: uppercase; }',
		'.sIFR-root a { color: #6D6F72; text-decoration: none; }',
		'.sIFR-root a:hover { color: #FF0000; text-decoration: none; }',
		'.sIFR-root a:visited { color: #6D6F72; text-decoration: none; }']
	});
	sIFR.replace(eurostile,{
	  selector:'h1.sIFR-red',
	  wmode:'transparent',
	  css:['.sIFR-root {color: #FF0000; leading: -5; text-transform: uppercase; }',
		'.sIFR-root a { color: #FF0000; text-decoration: none; }',
		'.sIFR-root a:hover { color: #6D6F72; text-decoration: none; }',
		'.sIFR-root a:visited { color: #FF0000; text-decoration: none; }']
	});
	sIFR.replace(eurostile,{
	  selector:'h2.sIFR-Me',
	  wmode:'transparent',
	  css:['.sIFR-root {color: #6D6F72; leading: -5; text-transform: uppercase; }',
		'.sIFR-root a { color: #6D6F72; text-decoration: none; }',
		'.sIFR-root a:hover { color: #FF0000; text-decoration: none; }',
		'.sIFR-root a:visited { color: #6D6F72; text-decoration: none; }']
	});
	
	sIFR.replace(eurostile,{
	  selector:'h2.sIFR-red',
	  wmode:'transparent',
	  css:['.sIFR-root { color: #FF0000; leading: -5; text-transform: uppercase }',
	  	'.sIFR-root a { color: ##FF0000; text-decoration: none; }',
		'.sIFR-root a:hover { color: #6D6F72; text-decoration: none; }',
		'.sIFR-root a:visited { color: #FF0000; text-decoration: none; }']
	});
	sIFR.replace(eurostile,{
	  selector:'h3.sIFR-Me',
	  wmode:'transparent',
	  css:['.sIFR-root {color: #6D6F72; leading: -5; text-transform: uppercase; }',
		'.sIFR-root a { color: #6D6F72; text-decoration: none; }',
		'.sIFR-root a:hover { color: #FF0000; text-decoration: none; }',
		'.sIFR-root a:visited { color: #6D6F72; text-decoration: none; }']
	});
		
