/* 
	US Little People 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_section_littlepeople_sifr_prefix = (window.location.toString().indexOf('localhost') != -1) ? "/fp" : "";


		// Declare the variables for the swf movies
var fp_section_littlepeople_sifr_headlines = {
	src : fp_section_littlepeople_sifr_prefix + '/content/v5/us/littlepeople/swf/vagroundedbt.swf'
};

		// Init function - comment out code here, 
		// if you're not using sIFR on this section, but
		// DO NOT delete the function, as it may be called 
		// from someplace else in the section
function fp_section_littlepeople_sifr_init() {

			// Activate sIFR
			// Note: without this line, sIFR will not run, which is good for localized sites
	sIFR.activate(
		fp_section_littlepeople_sifr_headlines);

			// Perform the replacements
	sIFR.replace(
		fp_section_littlepeople_sifr_headlines, {
			selector : 'h2',
			css: '.sIFR-root { color: #23497f; }',
			wmode : 'transparent'
		}
	);
}

		// Run the init function - do not delete
fp_section_littlepeople_sifr_init();
