jQuery 'playing'

jQuery 'playing'

Hello,
at the mobile webiste www.jvp-gmbh.de , I have placed the Slider.js (You have to use your smartphone if you want to visit the mobile version)
The Slider is working. How I can use the 'previous'; 'next', 'stop/play' button as it is shown in the example 'playing' at http://www.slidesjs.com ?



 <!DOCTYPE html>
<html lang="de">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Robots" content="index, follow">
<meta name="Description" content="JvP GmbH">
<meta name="Keywords" content="Deine Keywords">
<title>JvP GmbH</title>


<link rel="stylesheet" href=" http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src=" http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src=" http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="./jquery.slides.min.js"></script>

<style>

  a#meinlink:hover {color:white;}

</style>
</head>

<body>

<div data-role="page">

<!-- Header -->
<div data-role="header">
<h1>JvP GmbH</h1>
<span style="font-size:1.5em">
</div><!-- /header -->

<!-- Content -->
<div data-role="content">

<!-- Accordion -->
<div data-role="collapsible-set" data-content-theme="c">

<!-- Tab 1 Home -->
<div data-role="collapsible" data-theme="b" data-content-theme="b" data-collapsed="false">
<h3>Home</h3>

<center>
<p><span style="color:blue"><b>Herzlich Willkommen auf der mobilen Website von JvP GmbH</b></span></p>
</center>
<br>

<p>
Die JvP GmbH ist ein herstellerunabhängiger Systemdienstleister im Bereich Robotik.<br>
Wir bieten Ihnen unsere langjährigen Erfahrungen und Wissen als ganzheitliche Lösung.</p>

<style>
    /* Prevents slides from flashing */
    #slides {
      display:none;
    }
</style>


<script>

$(function(){
  $("#slides").slidesjs({

    play: {
      active: true,
        // [boolean] Generate the play and stop buttons.
        // You cannot use your own buttons. Sorry.
      effect: "fade",
        // [string] Can be either "slide" or "fade".
      interval: 5000,
        // [number] Time spent on each slide in milliseconds.
      auto: true,
        // [boolean] Start playing the slideshow on load.
      swap: true,
        // [boolean] show/hide stop and play buttons
      pauseOnHover: false,
        // [boolean] pause a playing slideshow on hover
      restartDelay: 2500
        // [number] restart delay on inactive slideshow
    }
  });
});

</script>

<div id="slides">
    <img src="images/SlideShow1.JPG">
    <img src="images/SlideShow2.JPG">
</div>