I am having the list items and the list items needs to be like marqueed using jQuery.
How?
check this : http://wordcrowd.org/index.php?title=Rotating_marquee_with_jQuery_Cycle
jquery cycle plugin http://malsup.com/jquery/cycle/
Example :
<script type="text/javascript">
$(function() {
$('#marquee').cycle({
fx: 'fade',
pause: 1
});
});
</script>