var current_child = 0;
speed = 700 // Milliseconds
showtime = 5000 // 5 Seconds
next_jackpot = function(){
	var max = $('#jackpot_list').children().length;
	if(current_child >= max) current_child = 0;
	newhtml = $('#jackpot_list').children().eq(current_child).html();
	$('#jackpot_display').html(newhtml).slideDown(speed);
	current_child++;
	setTimeout('update_jackpot()',showtime);
	}
	
update_jackpot = function(){
	$('#jackpot_display').slideUp(speed);
	setTimeout('next_jackpot()',speed);
	}
next_jackpot();