The Jquery Slideshow will not work

The Jquery Slideshow will not work

I'm building my first Responsive Web Design project, I added a simple slide show using jQuery on the front page. However, when I test the page, the show does not show up. 

Here is the link, html, and css code


  1.  <div class="hero-unit">
  2.     <ul id="s3sliderContent">
  3.         <li class="s3sliderImage">
  4.         <img src="slideshow/images/cisco-access-point.jpg" alt="merakibanner">
  5.         <span class="left"><strong>100% Cloud Managed Networking</strong>Cloud services are becoming the norm due to its robust and affordable technology. Meraki delivers the top-notch services by cutting the cost of long term maintenance<br />
  6.         <p><a href="#" class="btn btn-primary btn-large">Learn more »</a></p></span>
  7.         </li>
  8.         
  9.         <li class="s3sliderImage">
  10.         <img src="slideshow/images/webdesign.jpg" alt="webbanner">
  11.         <span class="left"><h1>Professional Web Design & Development</h1>Rodriguez Studios would like to help your company or business to succed by presenting to your customers a professional looking website<br /><p><a href="#" class="btn btn-primary btn-large">Learn more »</a></p></span>
  12.         </li>
  13.         
  14.         
  15.         <li class="s3sliderImage">
  16.         <img src="slideshow/images/facebook-reseller-cover-photo.jpg" alt="wifibanner">
  17.        <a href="#" class="btn btn-primary btn-large">Learn more »</a></p></span>
  18.        </li>
  19.         
  20.         
  21.         <div class="clear s3sliderImage"></div>
  22.         </ul>
  23.       </div><!--end of slider unit-->


  1. .hero-unit {
  2.   padding-top: 0px;
  3.   padding-right: 0px;
  4.   padding-bottom:0px;
  5.   padding-left:0px;
  6.   margin-bottom: 0px;
  7.   font-size: 18px;
  8.   font-weight: 200;
  9.   line-height: 30px;
  10.   color: inherit;
  11.   background-color: #eeeeee;
  12.   -webkit-border-radius: 0px;
  13.      -moz-border-radius: 0px;
  14.           border-radius: 6px;
  15. }

  16. .hero-unit h1 {
  17.   margin-bottom: 0;
  18.   font-size: 60px;
  19.   line-height: 1;
  20.   letter-spacing: -1px;
  21.   color: inherit;
  22. }

  23. .hero-unit li {
  24.   line-height: 30px;
  25. }

  26. #s3slider {
  27. width: 836px; /* important to be same as image width */
  28. height: 244px; /* important to be same as image height */
  29. position: absolute; /* important */
  30. overflow: hidden; /* important */
  31. margin: 300px 0 0 206px;
  32. left: 211px;
  33. }
  34.  
  35. #s3sliderContent {
  36.     width: 836px; /* important to be same as image width or wider */
  37.     position: absolute; /* important */
  38.     top: 0; /* important */
  39.     margin-left: 0; /* important */
  40. }
  41.  
  42. .s3sliderImage {
  43.     float: left; /* important */
  44.     position: relative; /* important */
  45.     display: none; /* important */
  46. }
  47.  
  48. .s3sliderImage span {
  49.     position: absolute; /* important */
  50.     left: 0;
  51.     font: 12px/15px Arial, Helvetica, sans-serif;
  52.     padding: 10px 13px;
  53.     width: 836px;
  54.     background-color: #85a3b3;
  55.     filter: alpha(opacity=70); /* here you can set the opacity of box with text */
  56.     -moz-opacity: 0.7; /* here you can set the opacity of box with text */
  57.     -khtml-opacity: 0.7; /* here you can set the opacity of box with text */
  58.     opacity: 0.7; /* here you can set the opacity of box with text */
  59.     color: #fff;
  60.     display: none; /* important */
  61.    
  62. }

  63. .left {
  64. top: 0;
  65.     left: 0;
  66. width: 180px !important;
  67. height: 280px;



  68. .clear {
  69.     clear: both;
  70. }

  71. .sliderImage span strong {
  72.     font-size: 14px;
  73. }
Please help, thanks in advanced!