Jquery plugin is not working in mvc(view) pattern

Jquery plugin is not working in mvc(view) pattern

Hi ,

I have been working in project for last 1 year, I have been using many pluggins for my project.Last month we convert all the code well structured into mvc pattern(our own),  from that itself the pluggins are not working.
      So to test the pluggin, at the very start of function i have an alert to find whether the pluggin is recognizing .
It works fine but the functionality of plugin is not working . For ex:I have been using fadeslideshow(http://plugins.jquery.com/simplefadeslideshow/).
I have followed another post from the jquery forum too(http://forum.jquery.com/topic/jquery-plugin-not-working-in-a-master) . Still the problem remains. My code follows,

Before my mvc pattern

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/fadeSlideShow.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
    jQuery('#slideshow').fadeSlideShow();
});
</script>

After MY MVC Pattern

      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
      <script type="text/javascript" src="view/js/fadeSlideShow.js"></script>
     <script type="text/javascript">
     jQuery(document).ready(function()
     {
         jQuery('#slideshow').fadeSlideShow();
     });
     </script>