//<![CDATA[

	/* You can put your replace statement(s) below, or at the very end of the JS file
	
	Example:
	replaceElement(sSelector, sFlashSrc, sColor, sLinkColor, sHoverColor, sBgColor, nPaddingTop, nPaddingRight, nPaddingBottom, nPaddingLeft, sFlashVars, casing);
	
	Here is what goes in your statements:
	
	sSelector = CSS selector you'd like to replace (e.g. 'h1.main' or 'h2' or '#main h3')
	sColor = text color (e.g. '#000000')
	sLinkColor = link color (e.g. '#0000CC')
	sHoverColor = link color on hover (e.g. '#00CC00')
	sBgColor = color of background (e.g. '#CCCCCC', or 'transparent'... transparent not recommended... problems with Opera and Macs)
	
	nPadding parameters = enter 0 in here unless you specifically have padding assigned to the element in CSS
	PADDING MUST MATCH *EXACTLY* TO YOUR CSS... THESE ARE NOT NUMBERS TO TRIFLE WITH
		
	sFlashVars = this is a special parameter which lets you pass other things into Flash. Examples include:
	textalign=center (horizontally centers text)
	offsetLeft=5 (pushes text 5 pixels to the right)
	offsetTop==5 (pushes text 5 pixels down)
	underline=true (adds underline to links on hover)
	--- Example syntax for extra parameters (& delimited): ---
	--- 'textalign=center&offsetTop=2&offsetLeft=4' ---
	
	casing = 'upper' or 'lower' transforms text to upper or lower case... this param is optional and goes at the end
	*/

// Here are the replace statements:

if(sIFR != null && sIFR.replaceElement != null){
	//sIFR.replaceElement("h1", "din.swf", "#ffffff", null, null, null, 0, 0, 0, 0);

sIFR.replaceElement("h1#t-main", named({sFlashSrc: "din.swf", sColor: "#999999", sCase: "upper", sWmode: "transparent", sFlashVars: "offsetTop=0"}));

sIFR.replaceElement("#content h1", named({sFlashSrc: "din.swf", sColor: "#333333", sCase: "upper", sWmode: "transparent"}));

sIFR.replaceElement("#content h2", named({sFlashSrc: "din.swf", sColor: "#666666", sCase: "upper", sWmode: "transparent"}));

sIFR.replaceElement("h3", named({sFlashSrc: "din.swf", sColor: "#006699", sLinkColor: "#006699", sHoverColor: "#69ADD8", sCase: "upper", sWmode: "transparent"}));

sIFR.replaceElement("#nav li.off", named({sFlashSrc: "din.swf", sColor: "#3B759B",  sLinkColor: "#FFFFFF", sHoverColor: "#B8DBF1", sCase: "upper", sWmode: "transparent", nPaddingBottom: 2}));

sIFR.replaceElement("#nav li.off-2", named({sFlashSrc: "din.swf", sColor: "#3B759B",  sLinkColor: "#FFFFFF", sHoverColor: "#D5EAF7", sCase: "upper", sWmode: "transparent", nPaddingBottom: 2}));

sIFR.replaceElement("#nav li.on", named({sFlashSrc: "din.swf", sColor: "#3B759B",  sLinkColor: "#3B759B", sHoverColor: "#3B759B", sCase: "upper", sWmode: "transparent", nPaddingBottom: 2}));

sIFR.replaceElement("#nav li.on-2", named({sFlashSrc: "din.swf", sColor: "#3B759B",  sLinkColor: "#3B759B", sHoverColor: "#3B759B", sCase: "upper", sWmode: "transparent", nPaddingBottom: 2}));

sIFR.replaceElement("#nav li.in", named({sFlashSrc: "din.swf", sColor: "#FFFFFF",  sLinkColor: "#FFFFFF", sHoverColor: "#D5EAF7", sCase: "upper", sWmode: "transparent", nPaddingBottom: 2}));

sIFR.replaceElement("#testi", named({sFlashSrc: "din.swf", sColor: "#FFFFFF",  sLinkColor: "#FFFFFF", sHoverColor: "#BED630", sCase: "upper", sWmode: "transparent"}));

sIFR.replaceElement("#testiref", named({sFlashSrc: "din.swf", sColor: "#FFCC00",  sLinkColor: "#FFCC00", sHoverColor: "#FFCC00", sCase: "upper", sWmode: "transparent"}));
	
	
	//sIFR.replaceElement("h4", "arialnarrow.swf", "#003333", null, null, null, 0, 0, 0, 0);
	//sIFR.replaceElement("h3", "arialnarrow.swf","#003333", "#000000", "#DCDCDC", "#DCDCDC", 0, 0, 0, 0);
	//sIFR.replaceElement("h3", "arialnarrow.swf", "#003333", null, null, null, 0, 0, 0, 0);
};

//]]>

