How to modify my code to use next and previous with iPad images

How to modify my code to use next and previous with iPad images

Presently this is working with the swipe on the iPad. 

  1.   $(document).bind("zoom.swipeleft", function (e) {
  2.             $("#mybook").turn('next');
  3.         });
  4.         $(document).bind("zoom.swiperight", function (e) {
  5.             $("#mybook").turn('previous');
  6.         });
my second code is not working right.

  1.         $("#nextPg").click(function (e) {
  2.             e.turn($("#mybook").turn('next'));
  3.             });

  4.             $("#prvPg").click(function (e) {
  5.                 $("#mybook").turn('previous');
  6.             });
      
turns pages like this on next > 1,2,4,6,8 
but on the previous < 6,5,4,3,2,1 works perfectly.

Can I bind document.bind(to my "#nextPg" from div to get the same effect as the swipe code.)