支持鼠标滚轮事件 mouseWheel功能必须加载jquery mousewheel插件


		$("#jCarouselLite1").jCarouselLite({
			speed: 500,           //滚动速率,数值越小越快
			mouseWheel: true,     //鼠标滚轮切换
			btnNext: "#next1",    //下页按钮
			btnPrev: "#prev1"     //上页按钮
		});
		
easing功能必须加载jquery easing1.1版本插件


		$("#jCarouselLite2").jCarouselLite({
			btnNext: "#next2",
			btnPrev: "#prev2",
			easing: "bounceout",
			speed: 1000
		});
		
同上


		$("#CarouselLite3").jCarouselLite({
			btnNext: "#next3",
			btnPrev: "#prev3",
			speed: 800,
			easing: "backout"
		});

		$(".widget img").click(function() {
			$(".widget .mid img").attr("src", $(this).attr("src"));
		})