$(document).ready(function(){
		$(".carousel").jCarouselLite({
			  btnNext: ".next",
			  btnPrev: ".prev"
		 });
		 
		 

           $(".carousel ul li img").css("opacity", "0.4");

           $(".carousel ul li img").hover(function(){
	      	$(this).animate({opacity:"1"}, "fast")
	     	 	}, function(){
		 	$(this).animate({opacity:".5"}, "fast")
	       });

		 
});
