$(function() {
	//Menu
	$(".menu li li").hover( 
		function() {  
			$(this).addClass('hover');
			},
		function() {
			$(this).removeClass('hover');
			}
		).click(function() {
			window.location.replace($(this).children().eq(0).attr('href'));
			});
	
	// Carousselle
			
			
				
		$(document).ready(function(){
		$('.changIMG').click(function(){
			$('#imageCentrale').ImageSwitch({Type:'FadeIn', NewImage: $(this).attr('src').replace('\/p\/', '\/m\/'), EffectOriginal: false}); 
			});
		});
			
			
			
			
});