var init = function() {
	var text = [
		'Prevent Runaway Heaters',
		'Mold Doctor - Advanced Diagnostics',
		'Predict Heater Failure',
		'Field Calibrator',
		'Identify Leaks Immediately',
		'Interlocks for &quot;Lights Out&quot; Molding',
		'Change Fewer Fuses',
		'One Year of Controller Performance Stored',
		'Superior Control',
		'Global Support',
		'Competitive Pricing',
		'Have Fewer Heater Failures',
		'Proven Reliability'
	];
	
	var textIndex = 0;
	var changeText = function() {
		if (textIndex >= text.length) {textIndex = 0;}
		
		if (document.all) {
			document.all.swapper.innerHTML = text[textIndex];
		} else {
			document.getElementById('swapper').innerHTML = text[textIndex];
		}
		
		textIndex++;
	};
	
	setInterval(changeText, 3000);
};
