if (/Netscape/.test(navigator.appName)) {
	// firefox needs to run sIFR code here
	// Change requests to be sent synchronous
	$.ajaxSetup({ async: false });

	// Loads and executes a local JavaScript file
	$.getScript("js/sifr-text.js");

	// Restore requests to be sent asynchronous
	$.ajaxSetup({ async: true });
}