$(document).ready( function () {
    // On affiche le slide
    $(".slider").css({ display: "block" });;    
} ) ;


$(function() {
	$(".slideRef").jCarouselLite({
	 btnNext: ".next",
	 btnPrev: ".prev",
	 easing:"easeinout",
	 speed:1600,
	 visible:4,	 
	 vertical:false
	});

	
 $('.next').fadeTo("fast",1);
 $('.next').hover(function() {
	$(this).fadeTo("fast",0.50);
	},
	function () {
	$(this).fadeTo("fast",1);
	});	
 $('.prev').fadeTo("fast",1);
 $('.prev').hover(function() {
	$(this).fadeTo("fast",0.50);
	},
	function () {
	$(this).fadeTo("fast",1);
	});	
	
});
