Seguramente tenés esto dentro de un bucle:
Código PHP:
_this.items[i].onclick = function() {
window.location.href = listaItems[i][1];
}
Podrías probar así:
Código PHP:
(function(){
var _i=i;
_this.items[_i].onclick = function() {
window.location.href = listaItems[_i][1];
}
})();