I\'m a bit out of my depth here and I\'m hoping this is actually possible.
I\'d like to be able to call a function that would sort all the items in my list alphabeti
Put the list in an array, use JavaScript's .sort(), which is by default alphabetical, then convert the array back to a list.
.sort()
http://www.w3schools.com/jsref/jsref_sort.asp