Uncaught Error : Function not defined

Uncaught Error : Function not defined

I am trying to embed scrollbox in my webpage http://svanubhuti.in/core/itad/corbod1.php with include method. . When i load that webpage, each jquery library gets loaded but scrolling effect is not working. 
When i check it in console, it shows Uncaught error : function not defined 
Please help. I'm really confused.  
Source code of embedded file is as follows..

  1. <link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet">
  2. <link href="demo.css" rel="stylesheet">
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  4. <script src="jquery.scrollbox.js"></script>
  5. <script>
  6. $(function () {
  7.   $('#demo5').scrollbox({
  8.     direction: 'h',
  9.    autoPlay: false,
  10. switchItems: 5,
  11. distance:1235
  12.     
  13.   });
  14.   $('#demo5-backward').click(function () {
  15.     $('#demo5').trigger('backward');
  16.   });
  17.   $('#demo5-forward').click(function () {
  18.     $('#demo5').trigger('forward');
  19.   });
  20. });
  21. </script>
  22. <div class="container">
  23.   <div class="body-content">
  24.     <div id="demo5" class="scroll-img">
  25.       <ul>
  26.               <li>
  27. <a href="#">
  28. <div class="in">
  29.                        <img src="../image2.jpg" />
  30. <h2 class="lesson_name" >Divine Quality</h2>
  31.                        <h1 class="lesson_sum">dtjngiu dgi nt ugige rtghin rgnnn thrnhnr rtnrn ngnrg rjnri.</h1>
  32. </div>
  33. </a>
  34.                         </li>
  35.         <li>
  36. <a href="#">
  37. <div class="in">
  38.                         <img src="../image2.jpg" />
  39. <h2 class="lesson_name" >Divine Quality</h2>
  40.                        <h1 class="lesson_sum">dtjngiu dgi nt ugige rtghin rgnnn thrnhnr rtnrn ngnrg rjnri.</h1>
  41. </div>
  42. </a>
  43.                         </li>
  44.          </ul>
  45.     </div>
  46.     <div id="demo5-btn" class="text-center">
  47.       <button class="btn" id="demo5-backward"><i class="icon-chevron-left"></i> Backward</button>
  48.       <button class="btn" id="demo5-forward">Forward <i class="icon-chevron-right"></i></button>
  49.     </div>
  50.   </div>
  51. </div>