// JavaScript Document
/*
	// !!! IMPORTANT !!!!
	============================
	Ensure that you alter ALL required settings within this javascript
	If you are unsure, ASK!
	============================
*/

// -- declare the swf objects
// -- if you change the font in the swf, recalculate the ratios: http://wiki.novemberborn.net/sifr3/Ratio+Calculation
var demo = {
	src: '/swf/sIFR3Source/example.swf',
	ratios: [8,1.42,9,1.33,12,1.35,21,1.3,31,1.27,44,1.26,45,1.24,51,1.25,58,1.24,59,1.25,87,1.24,90,1.23,91,1.24,94,1.23,95,1.24,103,1.23,104,1.24,1.23]
	};

// -- settings and activation
sIFR.delayCSS  = false;
sIFR.domains = ['*', 'localhost'] // Change these to match all domains the code runs in
sIFR.activate(demo);	// activate the font swfs

/* -- Apply Here -- */
// -- add in the elements to be replaced here

sIFR.replace(demo, {
	selector: 'h1.smoothfont', 
	css: ['.sIFR-root {color:#FFFFFF;}'],
	filters: {
		DropShadow: {
		knockout: false,
		distance: 0,
		color: '#000000',
		strength: 3
		}
	},
	wmode:'transparent' 
});