function loadSectionColoredSIFR(replace){
	if(typeof sIFR == "function"){
		// determine the color for refinements title based on site section
		var section = $("body").attr("id");
		var fontColor = "";
		
		if(section == 'seasonal') {
			fontColor = '#004990';
		}
		else if (section == 'newborns') {
			fontColor = '#C4B19A'; 
		}
		else if (section == 'babygirls') {
			fontColor = '#9B89B3';
		}
		else if (section == 'biggirls') {
			fontColor = '#E55070';
		}
		else if (section == 'babyboys') {
			fontColor = '#7fae1e';
		}
		else if (section == 'bigboys') {
			fontColor = '#6DBAE5';
		}
		else if (section == 'shoes') {
			fontColor = '#008DDA';
		}
		else { fontColor = '#000'; }
		
		sIFR.replaceElement("#refinements_wrapper h3", named({sFlashSrc: "http://content.childrensplace.com/www/b/TCP/assets/flash/b_futura_bold.swf", sColor: fontColor, sWmode: "transparent"}));
		if (replace == "both"){
			sIFR.replaceElement(".subcategory_title h3", named({sFlashSrc: "http://content.childrensplace.com/www/b/TCP/assets/flash/b_futura_bold.swf", sColor: fontColor, sWmode: "transparent"}));
		}	
	}
}

