$(function(){
/***************************/
if(typeof sIFR == "function"){

	// replacement calls
	sIFR.replaceElement(named({
		sSelector:"#content h1",
		sFlashSrc:"scripts/sifr/montara_gothic.swf",
		sBgColor:"#000000",
		sWmode:"transparent",
		sColor:"#ffffff"
	}));
	sIFR.replaceElement(named({
		sSelector:"#content h2",
		sFlashSrc:"scripts/sifr/montara_gothic.swf",
		sBgColor:"#000000",
		sWmode:"transparent",
		sColor:"#ffdf76"
	}));
	sIFR.replaceElement(named({
		sSelector:"#nav .contact dt",
		sFlashSrc:"scripts/sifr/montara_gothic.swf",
		sWmode:"transparent",
		sColor:"#000000"
	}));
	
};
/***************************/
});
/*
Replacement Syntax
To replace the fonts you call sIFR.replaceElement. This method takes the following arguments, in this specific order:
	* sSelector: This is the CSS selector you use to select the elements you want to replace. The supported CSS selectors are #, > and .. Whitespace is used to select descendants. Please use whitespace only for this, so instead of #foo > p use #foo>p. You can use multiple selectors by seperating them with a comma (",").
	* sFlashSrc: location of the Flash movie. You might need to use a relative (./movie.swf) or absolute (/movie.swf) here.
	* sColor: Text color. All colors are in hex notation (#000000).
	* sLinkColor: Text color for links.
	* sHoverColor: Color for hovered links.
	* sBgColor: Background color.
	* nPaddingTop, nPaddingRight, nPaddingBottom, nPaddingLeft: if you use padding in the elements you want to replace, you have to set the amount of padding here (in pixels, but without the px part).
	* sFlashVars: extra variables you want to pass on to the Flash. These variables are seperated by &. You can use:
		o textalign=center: Center text horizontally
		o offsetLeft=5: Pushes text 5px to the right. Of course you can use any number here.
		o offsetTop=5: Pushes text 5px down.
		o underline=true: Adds underline to links on hover
	* sCase: Use upper to transform the text to upper-case, use lower to transform the text to lower-case. Depending on the browser this might give problems when you want to change the casing of special characters.
	* sWmode: Set this argument to transparent if you want to use a transparent background. If you want to stack elements above the Flash movies, you need to set it to opaque. Mozilla browsers can have some difficulty rendering Flash movies with the wmode set. Therefore setting this is not recommended.
	Transparency is not supported in Opera 7.x, Safari < 1.2 & Flash 6, in Linux, and in very old (pre 1.0) Mozilla versions. In these browsers sIFR will fall back to the background color instead of using transparency.
*/
