/*****************************************************************************
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 tradegothic = { src: 'http://chicagobooth.edu/businessforecast/2010/images/tradegothic.swf',
	ratios: [7, 1.32, 8, 1.31, 12, 1.27, 20, 1.22, 28, 1.19, 30, 1.17, 31, 1.18, 45, 1.17, 61, 1.16, 62, 1.15, 67, 1.16, 116, 1.15, 117, 1.14, 123, 1.15, 124, 1.14, 1.15]
	};

// 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.activate(tradegothic);

sIFR.replace(tradegothic, {
selector: 'h1',
wmode: 'transparent',
css: [ '.sIFR-root {color: #FFFFFF; font-size: 68px; font-weight: bold; letter-spacing: -1; text-transform: uppercase;}'
	  ,'a {color: #92BD2E; text-decoration: none;}'
	  ,'a:link {color: #92BD2E; text-decoration: none;}'
	  ,'a:visited {color: #92BD2E; text-decoration: none;}'
	  ,'a:hover {color: #FFFF00; text-decoration: none;}'
	  ]
});

sIFR.replace(tradegothic, {
selector: 'h2.sifr',
wmode: 'transparent',
css: [ '.sIFR-root {margin: 0; color: #FFFFFF; font-size: 30px; font-weight: bold; letter-spacing: -1.5; text-transform: uppercase;}'
	  ,'a {color: #92BD2E; text-decoration: none;}'
	  ,'a:link {color: #92BD2E; text-decoration: none;}'
	  ,'a:visited {color: #92BD2E; text-decoration: none;}'
	  ,'a:hover {color: #FFFF00; text-decoration: none;}'
	  ,'strong {color: #92BD2E; text-decoration: none;}'
	  ]

}); 

sIFR.replace(tradegothic, {
selector: 'h3.sifr',
wmode: 'transparent',
css: [ '.sIFR-root { margin-top: 30px; color: #FFFFFF; font-size: 16px; font-weight: bold; letter-spacing: 0; text-transform: uppercase; margin-bottom: 0px;}'
	  ,'a {color: #92BD2E; text-decoration: none;}'
	  ,'a:link {color: #92BD2E; text-decoration: none;}'
	  ,'a:visited {color: #92BD2E; text-decoration: none;}'
	  ,'a:hover {color: #FFFF00; text-decoration: none;}'
	  ]
}); 

sIFR.replace(tradegothic, {
selector: 'h4.sifr',
wmode: 'transparent',
css: [ '.sIFR-root {color: #CCCCCC; font-size: 16px; font-weight: bold; letter-spacing: 0; margin: 0px;}'
	  ,'a {color: #92BD2E; text-decoration: none;}'
	  ,'a:link {color: #92BD2E; text-decoration: none;}'
	  ,'a:visited {color: #92BD2E; text-decoration: none;}'
	  ,'a:hover {color: #FFFF00; text-decoration: none;}'
	  ]
});
/*
sIFR.replace(tradegothic, {
selector: '.link_list',
wmode: 'transparent',
css: [ '.sIFR-root {color: #CCCCCC; text-transform: uppercase; font-size: 12px; font-weight: bold; letter-spacing: 0; margin: 0px;}'
	  ,'a {color: #92BD2E; text-decoration: none;}'
	  ,'a:link {color: #92BD2E; text-decoration: none;}'
	  ,'a:visited {color: #92BD2E; text-decoration: none;}'
	  ,'a:hover {color: #FFFF00; text-decoration: none;}'
	  ]
});
*/
