
/* ----- listes.js ----- */
var listesScript = {
	listesscript:function() {
	
	
	$(".attente-scroll-in").mouseover( function() { 		
		if ($(this).width() > 165)
		{
			var lsc = 165 - $(this).width();
			$(this).animate({left:lsc},3000);
			$(this).animate({left:lsc},1000);
			$(this).animate({left:0},3000);
		}	
	});
	
	$(".attente-scroll-in").mouseout( function() { 		
		if ($(this).width() > 165)
		{
			$(this).stop(true, false);
			$(this).animate({left:0},1000);	
		}	
	});

        $(".private-scroll-in").mouseover( function() { 		
		if ($(this).width() > 165)
		{
			var lsc = 165 - $(this).width();
			$(this).animate({left:lsc},3000);
			$(this).animate({left:lsc},1000);
			$(this).animate({left:0},3000);
		}	
	});
	
	$(".private-scroll-in").mouseout( function() { 		
		if ($(this).width() > 165)
		{
			$(this).stop(true, false);
			$(this).animate({left:0},1000);	
		}	
	});	
	
        $(".savoir-scroll-in").mouseover( function() { 		
		if ($(this).width() > 170)
		{
			var lsc = 170 - $(this).width();
			$(this).animate({left:lsc},5000);
			$(this).animate({left:lsc},1000);
			$(this).animate({left:0},5000);
		}	
	});
	
	$(".savoir-scroll-in").mouseout( function() { 		
		if ($(this).width() > 170)
		{
			$(this).stop(true, false);
			$(this).animate({left:0},1000);	
		}	
	});
}
}


