/*****************************************************************************
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 dax = {
	src: 'assets/flash/dax.swf'
};

sIFR.useStyleCheck = true;

sIFR.activate(dax);

sIFR.replace(dax, {
	selector: 'h1'
	,wmode: 'transparent'
	,css: [
		'.sIFR-root { font-weight: bold; font-size: 16px; color: #6fb622; outline: none; }'
	]
});
/*
sIFR.replace(dax, {
	selector: '#menu li.active'
	,wmode: 'transparent'
	,css: [
		'a { font-weight: bold; font-size: 15px; color: #ffffff; text-decoration: none; }'
		,'a:hover { color: #ffffff; }'		
	]
});

sIFR.replace(dax, {
	selector: '#menu li'
	,wmode: 'transparent'
	,css: [
		'a { font-weight: bold; font-size: 15px; color: #6fb622; text-decoration: none; }'
		,'a:hover { color: #000000; }'		
	]
});
*/
