/*

SOURCE : http://wiki.novemberborn.net/sifr3/JavaScript+Methods

=======================================================================
forceClear (Boolean) 
	As described in [sIFR.forceClear]. Overrides sIFR.forceClear. 
fitExactly (Boolean) 
	As described in [sIFR.fitExactly]. Overrides sIFR.fitExactly. 
forceWidth (Boolean) 
	As described in [sIFR.forceWidth]. Overrides sIFR.forceWidth. 
tuneWidth (Number) 
	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 (Number) 
	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 (Number) 
	Positive or negative number which specifies the horizontal position of the text inside the Flash movie. 
offsetTop (Number) 
	Positive or negative number which specifies the vertical position of the text inside the Flash movie. 
wmode (String) 
	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! 
gridFitType (String) 
	See Livedoc 2747. If the text is right aligned, subpixel will be used by default. Otherwise pixel will be used. 
thickness (Number) 
	See Livedoc 2788. 
sharpness (Number) 
	See Livedoc 2787. 
blendMode (String) 
	See Livedoc 2444. 
pixelFont (Boolean) 
	(revision 209+) When true rounds the font size to the nearest power of eight. This makes it possible to use bitmap fonts. 
ratios (Array) 
	(revision 209+) Lets you help sIFR guess the height of the Flash movies, see Ratio Calculation 
selectable (Boolean) 
	(revision 220+) Disables text selection inside the Flash movie. Useful if you use a filter which Flash doesn't properly select. 
=======================================================================
*/


var helveticarounded = {
  src: 'helveticarounded.swf'
};

//sIFR.prefetch(cochin, rockwell, vandenkeere);

sIFR.activate(helveticarounded);

//sIFR.activate(cochin, rockwell, vandenkeere);

sIFR.replace(helveticarounded, {
	selector: 'h3'
		,css: [
		  '.sIFR-root { color:#FFFFFF; font-size:14px; background-color:transparent; text-transform:uppercase; letter-spacing:-1; }'
		]
		,wmode: ['transparent']
		,selectable: [false]
		//,fitExactly: [true]
		,offsetTop: [0]
		,offsetLeft: [0]
		,forceClear: [true]
		,tuneHeight: [0]
		,tuneWidth: [0]
	});