/**
*	Description: 	Rules for replacing headers with nicer flash-text.
*
*/

function initSIFR() {
	if( typeof sIFR == "function" ) {
		sIFR.replaceElement(named({sSelector:".content h1", sFlashSrc: "/semler/ext/flash/headers/h1.swf", sColor: "#49545f", sWmode : "transparent"}));
		//sIFR.replaceElement(named({sSelector:"body h2", sFlashSrc: "/flash/headers/h2.swf", sColor: "#3d4750", sWmode : "transparent"}));
	} else { 
		// this means no flashplayer is installed, which is ok
	};
}

document.observe("dom:loaded", function() {
	initSIFR();
});