I try to add a jquery plugin named jCarouselLite http://www.gmarwaha.com/jquery/jcarousellite/index.php#demo to my dotnetnuke module
(DNN version 4.8) but it does not work and even the picture does not visible i want to know 2 things the first i want to ask if there is a asp ajax controle toolkit do the same work and the second if the jquery work with Dotnetnuke or no ? if yes please look at the folowing ascx code that i creted and please tell me the wrong .
<<<<<<<<<<<<<<<<<<<<<<<<the ascx pade>>>>>>>>>>>>>>>>>>>>>>>>
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="Jquery.ascx.vb" Inherits="DesktopModules_Jquery_Jquery" %>
<!-- referencing the jquery librarie and the jcarousellite, jquery.easing plugins -->
<script src='<%= page.ResolveUrl("DesktopModules/Jquery/js/jquery-1.3.2.min.js") %>'></script>
<script src='<%= page.ResolveUrl("DesktopModules/Jquery/js/jcarousellite_1.0.min.js") %>'></script>
<script src='<%= page.ResolveUrl("DesktopModules/Jquery/js/jquery.easing.1.1.js") %>'></script>
<button id="Button1" type="button" value="button" class="prev" > >>> </button>
<button id="Button2" type="button" value="button" class="next" > <<< </button>
<div class="anyclass">
<ul>
<li><img src="Images/im1.jpg" alt="" width="100" height="100" ></li>
<li><img src="Images/im2.jpg" alt="" width="100" height="100" ></li>
<li><img src="Images/im3.jpg" alt="" width="100" height="100" ></li>
<li><img src="Images/im4.jpg" alt="" width="100" height="100" ></li>
<li><img src="Images/im5.jpg" alt="" width="100" height="100" ></li>
</ul>
</div>
<script language="text/javascript">
$(function() {
$(".anyClass").jCarouselLite({
btnNext: ".next",
btnPrev: ".prev"
});
});
</script>