
// SIFR Flash Text ----------------------------------------------------------------------------------------------------------


    // replace different tags with flash version (using the fantastic sifr 3)
    var neosans = { src: 'swf/neosans.swf' };
	var neosans_bold = { src: 'swf/neosans_bold.swf' };

    //sIFR.useDomLoaded = false;
    sIFR.domains = ['*'];
    sIFR.activate(neosans);
	// sIFR.activate(neosans_bold);

	// replace h1 tags

	sIFR.replace(neosans, {
		onReplacement: function(fi){resetMovie(fi);},
		selector: 'h1',
		css: '.sIFR-root { color: #d59335; font-size:28; letter-spacing:0; leading:2; text-transform:uppercase; }',
		transparent: true,
		antiAliasType: 'advanced'
	});


	// replace h1 tags

	sIFR.replace(neosans, {
		onReplacement: function(fi){resetMovie(fi);},
		selector: 'h2',
		css: '.sIFR-root { color: #d59335; font-size:24; letter-spacing:0; leading:2; text-transform:uppercase; }',
		transparent: true,
		antiAliasType: 'advanced'
	});


	function resetMovie(fi)
	{
		// JQUERY CHECK BROWSER VERSION - IF IE9 BROWSER THEN RESET FLASH MOVIE //
		if(jQuery.browser.msie && jQuery.browser.version >= 7.0)
		{
			fi.resetMovie();
		}
	}

