Combining jcarousel and drag and drop code

Combining jcarousel and drag and drop code


Hi, i am vinod kumar, i am new to jquery.
I have implemented jcarousel and drag and drop separately.
When i start implemented both, its not working.
the code for jcarousel will like this
<script type="text/javascript" src="jquery-1.2.3.pack.js"></script>
<script type="text/javascript" src="jquery.jcarousel.pack.js"></
script>
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
.............
and the code for drag and drop will like this
<script src="drag-and-drop/jquery/jquery.js"></script>
<script src="drag-and-drop/jquery/ui.core.js"></script>
<script src="drag-and-drop/jquery/ui.draggable.js"></script>
<script src="drag-and-drop/jquery/ui.droppable.js"></script>
$(document).ready(function(){
$(".items").draggable({helper: 'clone'});
$(".droparea").droppable({
.....................
could you please tell me how to combine these two and what are the
things needs to remove.
I hope this will be very easy for you.
Waiting for your reply.