/* SIFR3 20091003 */

var font = { src: '/site/swf/arialnarrow.swf' }; //Pad tov html doc
sIFR.useStyleCheck = true; /* CSS detection */
sIFR.activate(font);

sIFR.replace(font, {
	selector: '#slogan' //CSS selector
	,css: 	[ //http://wiki.novemberborn.net/sifr3/Styling
			 ".sIFR-root {color: #690F14;font-weight:normal}" //Algemene opmaak voor hele sifr
			]
	,filters:	{ //http://wiki.novemberborn.net/sifr3/Filters
				DropShadowFilter:{
					 hideObject:false
					,strength:1
					,blurY:5
					,blurX:5
					,knockout:false
					,inner:false
					,quality:3
					,alpha:.8 //(decimal: .75 = 75%)
					,color:"#fff" //(ex: color: '#C7E0F5')
					,angle:0
					,distance:0
					}
				}
	,forceClear:true //http://wiki.novemberborn.net/sifr3/JavaScript+Configuration
	,fitExactly:false //true = gebruik afmeting zoals HTML
	,forceWidth:false //true = neemt breedte van film /false=100%
	,tuneWidth:0 //Positive or negative number which is added to the width of the Flash movie. This allows for tuning of the space surrounding the text. 
	,tuneHeight:0 //Positive or negative number which is added to the height of the Flash movie. This allows for tuning of the space surrounding the text. 
	,offsetLeft:0 //Positive or negative number which specifies the horizontal position of the text inside the Flash movie. 
	,offsetTop:0 //Positive or negative number which specifies the vertical position of the text inside the Flash movie. 
	,wmode:"transparent" //Specifies the window mode of the Flash movie. When transparent the movie will be transparent. When opaque elements can be displayed on top of the movie. If transparency is not supported wmode will be set to opaque and the background color specified in the CSS will be used. Therefore, it is important to always specify a background color! 
	,preventWrap:false //Tries to disable word wrap inside the Flash movie, but doesn't always work so well. Not the same as forceSingeLine
	,forceSingleLine:false //Forces the text to be displayed on a single line.
	,pixelFont:true //When true rounds the font size to the nearest power of eight. This makes it possible to use bitmap fonts.
	,ratios: [8, 1.41, 11, 1.31, 15, 1.29, 25, 1.25, 28, 1.23, 32, 1.22, 33, 1.23, 39, 1.22, 56, 1.21, 59, 1.2, 60, 1.21, 91, 1.2, 92, 1.19, 102, 1.2, 103, 1.19, 107, 1.2, 108, 1.19, 110, 1.2, 114, 1.19, 115, 1.2, 119, 1.19, 120, 1.2, 124, 1.19, 1.2] //http://wiki.novemberborn.net/sifr3/Ratio+Calculation
	,selectable:true //Disables text selection inside the Flash movie. Useful if you use a filter which Flash doesn't properly select.
});

