/*****************************************************************************
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 sinfonietta = { 
	src: '/frutiger.swf' 
};

var sinfoniettabold = { 
	src: '/sinfoniettabold.swf' 
};


sIFR.autoInitialize = false;
sIFR.activate(sinfonietta);
sIFR.activate(sinfoniettabold);

$(function() {	
	
	sIFR.replace(sinfonietta, {
  		selector: '.sifrtarget',
		transparent: true,
		tuneWidth: 1,
		forceSingleLine: true,
		css: {'.sIFR-root' : {'text-transform': 'uppercase', 'color': '#000000'}, 'a': { 'color': '#ffffff', 'text-decoration': 'none', 'font-size': '11px', 'text-transform': 'uppercase'}, 'a:hover': {'color': 'inherit'}, '.active': {'color': '#000000'}, '.red': {'color': '#ac2f36'}, '.black': {'color': '#000000'}, '.rm': {'color': '#ac2f36', 'font-size': '10px'}}
	});
	sIFR.replace(sinfoniettabold, {
  		selector: '.sifrtargetbold',
		transparent: true,
		tuneWidth: 1,
		forceSingleLine: true,
		css: {'.sIFR-root' : {'text-transform': 'uppercase', 'color': '#000000'}, 'a': { 'color': '#ffffff', 'text-decoration': 'none', 'font-size': '11px', 'text-transform': 'uppercase'}, 'a:hover': {'color': 'inherit'}, '.active': {'color': '#000000'}, '.red': {'color': '#ac2f36'}, '.black': {'color': '#000000'}, '.rm': {'color': '#ac2f36', 'font-size': '10px'}}
	});
	sIFR.initialize();
	
});
