/* 
	US Imaginext 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/es/imaginext/swf/VAGRoundedLT.swf'
};

var fp_script_sifr_taglines = {
	src : fp_script_sifr_prefix + '/content/v5/es/imaginext/swf/VAGRoundedBT.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, 
		fp_script_sifr_taglines);

			// Perform the replacements
	sIFR.replace(
		fp_script_sifr_headlines, {
			selector : 'h1#product-name',
			css: '.sIFR-root { color: #ffffff; }',
			wmode: 'transparent'
		}
	);

	sIFR.replace(
		fp_script_sifr_taglines, {
			selector : '.pag',
			css : '.sIFR-root { color: #000000; }',
			wmode: 'transparent'
		}
	);
}

		// Run the init function
fp_section_prepare_sifr_init();
