
	var hp_ticker_index = 1;
	var hp_ticker_timer;
	
	function next_hp_ticker() {
		hp_ticker_index++;
		if (hp_ticker_index > 5) { hp_ticker_index = 1; }
		move_hp_ticker_to(hp_ticker_index);
	}
	
	function start_hp_ticker() {
		next_hp_ticker();
		hp_ticker_timer = window.setInterval("next_hp_ticker()", 6000);
	}
	
	function stop_hp_ticker() {
		window.clearInterval(hp_ticker_timer);
	}
	
	function select_hp_ticker(ind) {
		stop_hp_ticker();
		move_hp_ticker_to(ind);
	}
	
	
	function move_hp_ticker_to(ind) {
		var xx = 450 * (ind-1);
		new Effect.Move('hp_tickers_container', { x: -xx, y: 0, mode:'absolute' });
		for (var a = 0; a < 10; a++) { 
			if (document.getElementById("hp_ticker_numbers_"+a)) {
				document.getElementById("hp_ticker_numbers_"+a).className = ''; 
			}
		}
		document.getElementById("hp_ticker_numbers_"+ind).className = 'hp_ticker_numbers_selected';
		document.getElementById("hp_ticker_numbers_"+ind).blur();
	}

	
	
	
	window.setTimeout("start_hp_ticker()", 6000)
