$(function() {
	$(".widget .jCarouselLite").jCarouselLite({
			btnNext: "#menu .next",
			btnPrev: "#menu .prev",
			visible: 5,
			scroll: 4,
			speed: 300,
			mouseWheel: true,
			easing: "easeout"
	});
	
	$(".widget li img").click(function() {
			$(".widget .mid img").attr("src", "big-"+$(this).attr("src"));
	})
});



