/* 
	US Geotrax 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
*/

        //We need to have safari ignore some sifr styling, so...
        //Browser name: BrowserDetect.browser
        //Browser version: BrowserDetect.version
        //OS name: BrowserDetect.OS

var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();

        //Back to our regular schedule...

		// 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/fr/geotrax/swf/LubalGraphBkBT.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_geotrax_sifr_init() {

			// Activate sIFR
			// Note: without this line, sIFR will not run, which is good for localized sites
	sIFR.activate(
		fp_script_sifr_headlines);

if (BrowserDetect.browser=="Safari")
{
			// Perform the replacements
	sIFR.replace(
		fp_script_sifr_headlines, {
	    selector : 'h2, h3.product-name a',
	    css: '.sIFR-root { color: #000000; }',
		wmode: 'transparent'
		}
	);
}
else
{
			// Perform the replacements
	sIFR.replace(
		fp_script_sifr_headlines, {
	    selector : 'h2, h3.product-name a, dt.name a',
		css: '.sIFR-root { color: #000000; }',
		wmode: 'transparent'
		}
	);
}
	

}

		// Run the init function
fp_section_geotrax_sifr_init();