Auto/Manual Scrolling Issue

Auto/Manual Scrolling Issue

Hi,


I am using jQuery plugin BXSlider.But i am facing an issue in it.Actually i want slider to move automatically and at the same time i can move the slides manually as well.But in my slider it slides automatically but when i click next/previous buttons it stops automatic slides.

i am doing this.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BX Slider</title>

 
 <!-- jQuery library (served from Google) -->
<script src="js/jquery.min.js"></script>
<!-- bxSlider Javascript file -->
<script type="text/javascript" src="js/jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->
<link href="lib/jquery.bxslider.css" rel="stylesheet" />


 
 <script type="text/javascript">
         
         $(document).ready(function(){
          $('.bxslider').bxSlider(
          {
         
          captions: true,
          auto: true
         
          }
          );});

    </script>
 
</head>

<body>
   
<ul class="bxslider">
  <li><img src="images/pic1.jpg" title="pic1" /></li>
  <li><img src="images/pic2.jpg" title="pic2" /></li>
  <li><img src="images/pic3.png" title="pic3" /></li>
 
</ul>

</body>
</html>