﻿function activateCar() {
	if($("#carouselRelatedProducts li").length>4) {
		$("#carouselRelatedProducts").jCarouselLite({
			btnNext: "#RplRightArrow",
			btnPrev: "#RplLeftArrow"
		});
	} else {
		$('#RplRightArrow').css('display','none');
		$('#RplLeftArrow').css('display','none');
	}
};
function activateCarAccueil() {
	if($("#carouselRelatedProducts-accueil li").length>4) {
		$("#carouselRelatedProducts-accueil").jCarouselLite({
			btnNext: "#RplRightArrow",
			btnPrev: "#RplLeftArrow"
		});
	} else {
		$('#RplRightArrow').css('display','none');
		$('#RplLeftArrow').css('display','none');
	}
};



$(function() {
	activateCar();
});