			jQuery(document).ready(function($) {
				jQuery('#ticker > div > ul').jcarousel({
					 animation: 1000,
					 auto: 1,
					 scroll: 1,
					 wrap: 'last',
					 initCallback: function (carousel)
									{
										 // Pause autoscrolling if the user moves with the cursor over the clip.
										carousel.clip.hover(
											function() {
												carousel.stopAuto();
											}, 
											function() {
												carousel.startAuto();
											});
									}
				});
				
				jQuery('.jcarousel-prev, .jcarousel-next').css('height','0px');
				
			}); 