/* 
	Gemz sIFR setup
	If you don't want sIFR, just copy over this file and comment out some code
	If you want a different font, copy over the file, and replace the variable src property with your font
*/


		// Define the prefix in case we're on a localhost
var fp_script_sifr_prefix = (window.location.toString().indexOf('localhost') != -1) ? "/fp" : "";


		// Declare the variables for the swf movies
var fp_script_sifr_headlines = {
	src : fp_script_sifr_prefix + '/content/v5/us/gemz/swf/feltTip.swf'
};

		// Init function - comment out code here, 
		// if you're not using sIFR on this section
		// DO NOT delete the function as it may be called 
		// from someplace else in the section
function fp_section_prepare_sifr_init() {

			// Activate sIFR
			// Note: without this line, sIFR will not run, which is good for localized sites
	sIFR.activate(fp_script_sifr_headlines);

			// Perform the replacements
	sIFR.replace(
		fp_script_sifr_headlines, {
			selector : 'h2#product-name',
			css: '.sIFR-root { color: #662d91; }',
			wmode: 'transparent'
		}
	);

}

		// Run the init function
fp_section_prepare_sifr_init();