The event handlers for swiping aren't working too well for me. Swipeleft works fine, swipe only registers right-to-left, and swiperight doesn't work at all.
I'm using an iPhone 3G, and I'm testing with this code:
$('.swipeable').bind('swipe', function(e){
alert('swip swap swoop swipe');
e.stopImmediatePropagation();
return false;
});