var fontin = 
{
  src: 'flash/fontin.swf'
};

sIFR.activate(fontin);

sIFR.replace(fontin,{
 	selector: 'h2'
 	,css: [
       '.sIFR-root { color: #FAC421; background-color: #FFFC7F; font-size:40px; } '
 ]
	

});

sIFR.replace(fontin,{
	selector: 'h3.multicolor'
	,css: [
		'.sIFR-root { color: #775555; background-color: #010101; font-size:40px; }'
		,'em { font-style: italic; color: #444477; }'
		,'strong { color: #44aa44; }'
		,'.bold { font-style:bold; text-decoration:underline; '
		,'a { color: #aa4444; }'
		,'a:hover { color: #bbbb44; }'
	]
	
});

sIFR.replace(fontin,{
	selector: 'h3.glow'
		,css: [
		'.sIFR-root { font-size:40px;}'
	]
	,wmode: 'transparent'	//wmode - used to set wmode for <object> params
	,filters: {
		Glow: {
		knockout:1			//knockout - set to "true" or "1" to disable sIFR main color (it becomes white)
		,strength: 5
		,quality: 1
		,color: '#AFBDD4'
		,distance: 2
		}
  	}
	
});

sIFR.replace(fontin,{
	selector: 'h3.shadow'
	,css: [
		'.sIFR-root { color: #0C4B52; font-size:40px;}'
	]
	,wmode: 'transparent'	//wmode - used to set wmode for <object> params
	,filters: {
		DropShadow: {
           distance: 1
		  ,angle:90
          ,color: '#ffffff'
          ,strength: 1
          ,alpha: .5
          ,blurX: 1
          ,blurY: 1
		}
  	}
	
});




