<!--
	var text = new Array( "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PRICE CHECK  ", 
		"&nbsp;&nbsp;&nbsp;&nbsp;<==&nbsp; Enter &nbsp;Here  ==")		
	var count = text.length;

	//randomize the initial point where you start scrolling in the array
	if (Math.random) {
		var i = Math.ceil( Math.random() * count );
	}

	function scroll () {
	
		if (i - 1 < 0) {
			i = count;
		}

		if (document.getElementById) {
			x = document.getElementById('rotation2')
			x.innerHTML = text[--i];
			setTimeout ("scroll()", 900);
		}

	}
// -->
