I am currently using the following for every element I want to change the class of on touch:
ontouchstart=\"$(this).addClass(\'select\');\" ontouchend=\"$(this).
I ended up just using this:
$('#nav li').bind('touchstart', function(){ $(this).addClass('select'); }).bind('touchend', function(){ $(this).removeClass('select'); });