
	
	function glisseAffiche(){
	
		$('.navig').show();
		//$('.navig a').css('opacity',0.7);
		
		marginLeft=12;
		pointe=27;
		
		$('.navig a').click(function(){
			return false;
		})
		.mouseover(function(){
			$(this).parent().parent().children('a').children('span').children("img").attr('src', $(this).attr('href'));
			facteur=parseInt($(this).attr('title'));
			move=0;
			if(facteur==1){
				move=2;
			}
			if(facteur==2){
				move=33;
			}
			if(facteur==3){
				move=64;
			}
			if(facteur==4){
				move=95;
			}
			//$(this).parent().parent().children('a').children('.pointe').animate({
			$(this).parent().find('.pointe').animate({
				left:move
			},500);
			return false;
		});
	}

