/*****************************************************************************
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 futura = { src: 'swf/sifr2.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>.
//, ratios:[7, 1.6, 9, 1.56, 10, 1.49, 14, 1.5, 15, 1.46, 20, 1.47, 25, 1.45, 28, 1.44, 32, 1.43, 35, 1.44, 43, 1.43, 63, 1.42, 65, 1.41, 66, 1.42, 110, 1.41, 111, 1.4, 115, 1.41, 116, 1.4, 120, 1.41, 121, 1.4, 122, 1.41, 123, 1.4, 124, 1.41, 1.4]
// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(futura);
sIFR.replace(futura, {
  selector: 'h1',
  wmode: 'transparent',
    css:['.sIFR-root {  color: #2a2a2a; font-size:24px;}'
	,'a { color: #2a2a2a; font-size:20px; text-decoration: none;}'
  ,'.active { color: #2a2a2a;  }'
        ,'a:hover { color: #2a2a2a; cursor:pointer; text-decoration: underline; font-size:20px;}'
	   ], selectable: true
  
});
sIFR.replace(futura, {
  selector: 'h2,',
  wmode: 'transparent',
  css: ['.sIFR-root {  color: #2a2a2a; font-size:18px; height:20px;}'
		  ,'a { text-decoration: none;  }'	
  ,'a:link { color: #2a2a2a;  }'
  ,'.active { color: #2a2a2a;  }'
        ,'a:hover { color: #2a2a2a; cursor:pointer; text-decoration: underline; }'
	   ], selectable: true

});



