// JavaScript Document

$( function () {	if($(".event-carousel-inner").find('li').length > 1) {
		$(".event-carousel-inner").jCarouselLite({	
			btnNext: ".command .scrollTop",	
			btnPrev: ".command .scrollDown",	
			speed: 0,	
			auto: 5000,	
			manualOnClickNav : true,	
			stopOnHover:true	
		});	}
	
	$('.actus-case1, .bloc-inner').each ( function () {
		$(this).hover ( function () {
			$(this).addClass('hover');
		},
		function () {
			$(this).removeClass('hover');
		});
	});
	
	/* largeur des conteneurs photo */
	$('p.photo').each( function () {		//GM: added the test on img width or problem in the menu images display...		if( $(this).find('img').width() ){
			$(this).css('width', $(this).find('img').width() + 'px');		}
	});
});

