Adding ease effect - am I doing it right?

Adding ease effect - am I doing it right?

I installed the ease script on my website it but it doesn't seem to work.. The code I'm using is below. Have I made a mistake?

  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3. $("#myController").jFlow({
  4. slides: "#mySlides",
  5. controller: ".jFlowControl", // must be class, use . sign
  6. slideWrapper : "#jFlowSlide", // must be id, use # sign
  7. selectedWrapper: "jFlowSelected",  // just pure text, no sign
  8. easing: "easeOutBounce",
  9.                         duration: 'slow',
  10. width: "100%",
  11. height: "100%",
  12. prev: ".jFlowPrev", // must be class, use . sign
  13. next: ".jFlowNext" // must be class, use . sign
  14. });

  15. });
  16. </script>