jQuery.noConflict();

jQuery(document).ready(function()
{
	jQuery("#carousel").jCarouselLite({btnNext: "#carousel_next", btnPrev: "#carousel_prev", speed: 750, visible: 4});
	jQuery("#carousel li img").each(function(i){
		jQuery(this).hover(function(){
			jQuery(this).stop().fadeTo(350, 0).fadeTo(350, 1);
		}, function(){
			jQuery(this).stop().fadeTo(350, 1);
		});
	});
});