Jquery plugin not proper working in inner nested repeater asp.net c#

Jquery plugin not proper working in inner nested repeater asp.net c#

I used nested repeater for thumbnail image gallery slider using asp.net. So outer nested repeater for display names of the category. and inner repeater for thumbnail image gallery slider for different products. so i had used j query plugin for inner repeater for thumbnail but its not working. the plugin i had used for inner repeater. 
http://www.aspsnippets.com/Articles/Implement-Carousel-Image-Gallery-in-ASPNet-using-jQuery-jCarousel-Plugin.aspx 
but simple images are coming like list not thumbnail images slider. some-buddy told me change ul to div . then its working for only one product slider below product slider not working. please suggest me.. out of this problem. following my asp x design code:
<div> <asp:Repeater ID="outerRep" runat="server" OnItemDataBound="outerRep_ItemDataBound"> <ItemTemplate> <asp:Label Font-Size="Large" Font-Bold="true" ID="lblCategoryName" runat="server" Text='<%# Eval("CategoryName") %>' /> <ul id="mycarousel" class="jcarousel-skin-tango"> <asp:Repeater ID="innerRep" runat="server"> <ItemTemplate> <li> <asp:Image ID="Image1" runat="server" ImageUrl='<%#Bind("ImageName") %>' Height="70" Width="70"/> </li>   </asp:Repeater> </ul> </ItemTemplate> </asp:Repeater> </div
and jquery code
<script type="text/javascript"> $(function () { $('#mycarousel').jcarousel(); }); </script>
only first slider is showing and remaining are just like list order showing. hope i will get valuable reply from this.