@CincyPlanet,
I’ve made some modifications to code in next thread: http://www.genuitec.com/support-genuitec/viewtopic.php?p=8909#p8909
var index=0;
function selNext(){
// Note: m1-unselect-list1 is an ID
// of <ul> element, taken from TC/Tools/DOM Inspector
var selListId = 'm1-unselect-list1';
var listName = 'list1';
var totalItems= $('#' + selListId + '> li').size();
//check if final item is selected, if yes, select the first item making index 0 again
if(totalItems-1==index){
index =0;
}
else{
index++;
}
var itemToSelect = index;
var selId = $('#' + selListId + '> li').each(
function (i) {
$(this)[i == itemToSelect ? 'addClass' : 'removeClass'](m1Design.css("selected"));
});
// This line updates hidden select, for the case the whole
// design will be used as a form
phoneui.preprocessDOM('#' + selListId);
}
So, you should call a similar function like this one, when you want to select the next item in your listitems. Hope this make sense, let me know how it goes for you.