$(document).ready(function() {	$(".newsticker-jcarousellite").jCarouselLite({		vertical: false,		hoverPause:true,		visible: 4,		auto:2000,		speed:800	});/*	$('#ticker li').hover(function(){				$("#" + $(this).attr("class")).fadeIn('slow');	},function(e){		$("#" + $(this).attr("class")).fadeOut('slow');	});*/		$('#ticker li').live("mouseenter",function(){		$(this).children("div").fadeIn('slow');	});	$('#ticker li').live("mouseleave",function(){		$(this).children("div").fadeOut('slow');	});});
