jQuery(document).ready(function() {

	// Jcarousel --------------------------------------------------------								
	$(function() {
			   
		// initialisation des carousel -----------
		$("#anyClass").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#prev"
		});
		$("#anyClass2").jCarouselLite({
			btnNext: "#next2",
			btnPrev: "#prev2"
		});
		$("#anyClass3").jCarouselLite({
			btnNext: "#next3",
			btnPrev: "#prev3"
		});
		
		// gestion des onglets -----------
		$(".bordered").hide();
		$("#ca").show();
		$(".onglet").click(function () { 											 
			$(".onglet").removeClass('selected');										 
			$(this).toggleClass('selected');				  
		});
		
		  
		// affichage description au survol des éléments carousel -----------
		$("#anyClass img").hover(function(){
			 $("#text").show();
			 $("#text").html( $(this).next().html() );
			},function(){
			 $("#text").hide();
		});
		
		$("#anyClass2 img").hover(function(){
			 $("#text").show();
			 $("#text").html( $(this).next().html() );
			},function(){
			 $("#text").hide();
		});
			
		$("#anyClass3 img").hover(function(){
			 $("#text").show();
			 $("#text").html( $(this).next().html() );
			},function(){
			 $("#text").hide();
		});
		
	});
	
	function d(t)
	{
	  $(".bordered").hide();
	  $("#"+t).show();	
	}

});