// Une fois le chargment de la page terminé ...
$(document).ready(  function()
{
	$("#focusContent").children().hide();
	$(".focusContent_1").show();
	
	$('#focusHeader ul li a').click(function() { 
	
		$('#focusHeader ul li').removeClass("active");
		$(this).parent().addClass("active");
	
		var contenu_aff = $(this).attr("id");
		$("#focusContent").children().hide();
		$("."+contenu_aff).show();
	});
	
	if ($("#infoBand").length)
	{
		$("#infoBand").jCarouselLite({
			auto: 5000,
			speed: 2000,
			visible: 1,
			btnNext: ".next",
			btnPrev: ".prev",
			circular:true
		}); 
	}
});