/*****************************************************************************
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 sifr_uni = { src: '/sifr/flash/sifr_uni.swf'  };
var sifr_uni_con = { src: '/sifr/flash/sifr_uni_con.swf'  };

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

//sIFR.useStyleCheck = true;

sIFR.fitExactly = true;
sIFR.forceWidth=true;
sIFR.fixWrap =  true;
// Next, activate sIFR:
sIFR.activate(sifr_uni,sifr_uni_con);
 
sIFR.replace(sifr_uni, {
  selector: '.sifr_uni' ,
 ratios: [9, 1.16, 16, 1.09, 24, 1.06, 37, 1.04, 74, 1.02, 1.01],
  css:  ['.sIFR-root { color: #999999; text-align:left; text-transform:uppercase; cursor:pointer; letter-spacing: 2}',
	'a { text-decoration: none; color: #999999; }',
      'a:link { color: #999999; }',
        'a:hover { color: #000000;  text-decoration: none; }'], wmode: 'transparent', sharpness : -200
});

sIFR.replace(sifr_uni, {
  selector: '.sifr_uni_underline' ,
 ratios: [9, 1.16, 16, 1.09, 24, 1.06, 37, 1.04, 74, 1.02, 1.01],
  css:  ['.sIFR-root { color: #999999; text-align:left; text-transform:uppercase; cursor:pointer; letter-spacing: 2}',
	'a { text-decoration: underline; color: #999999999; }',
      'a:link { color: #999999;text-decoration: underline; }',
        'a:hover { color: #000000;  text-decoration: none; }'], wmode: 'transparent', sharpness : -200
});
 

sIFR.replace(sifr_uni_con, {
  selector: '.sifr_uni_con_large' ,
 ratios: [9, 1.16, 16, 1.09, 24, 1.06, 37, 1.04, 74, 1.02, 1.01],
  css:  ['.sIFR-root { color: #999999; text-align:left; text-transform:uppercase; cursor:pointer; letter-spacing: 2}',
	'a { text-decoration: none; color: #999999; }',
      'a:link { color: #999999; }',
        'a:hover { color: #000000;  text-decoration: none; }'], wmode: 'transparent', sharpness : -200 
}); 

/*

sIFR.debug.ratios({ src: '/sifr/flash/sifr_avenir.swf', selector: '.sifr_avenir_small' });
sIFR.debug.ratios({ src: '/sifr/flash/sifr_avenir.swf', selector: '.sifr_avenir_small_selected' });

sIFR.debug.ratios({ src: '/sifr/flash/sifr_avenir.swf', selector: '.sifr_avenir' });



sIFR.debug.ratios({ src: '/sifr/flash/sifr_avenir.swf', selector: '.sifr_avenir' });
sIFR.debug.ratios({ src: '/sifr/flash/sifr_avenir.swf', selector: '.sifr_avenir_selected' });

sIFR.debug.ratios({ src: '/sifr/flash/sifr.swf', selector: '.sifr_me' });
sIFR.debug.ratios({ src: '/sifr/flash/sifr.swf', selector: '.sifr_me_big' });

sIFR.debug.ratios({ src: '/sifr/flash/sifr.swf', selector: '.sifr_me_selected' });
 */