function showMessage(message){
$('#chtext').html(message);
}
var arr = [ "one", "two", "three", "four", "five" ];
var i = 0;
function idTimer(list, i) {
if (!(i >= 0)) {
i= 0;
}
setTimeout((function(msg){
i++;
return function(){
if(i < list.length){
idTimer(list, i);
}
showMessage(msg);
}
})(list[i]), 2000);
}
idTimer(arr);
setInterval(function(){
idTimer(arr)
},12000);