

$(document).ready(function() {
	
	$(".txtSlideToRight").css('left', -$("#txt_galeries").outerWidth()); 
	$("#txt_traveaux").css('left', $("#txt_traveaux").outerWidth() +25) ;
	$("#txt_actualite").css('left', -$("#txt_actualite").outerWidth());
	$("#txt_contact").css('left', $("#txt_contact").outerWidth() +35) ;
	$("#txt_liens").css('left', -$("#txt_liens").outerWidth());
	
	$('.slideToRight').mouseenter(function(){
		var $marginLefty = $(this).children(".txtSlideToRight");
		$marginLefty.animate({
			 marginLeft: $marginLefty.outerWidth() +25
		});
	}).mouseleave(function(){
		var $marginLefty = $(this).children(".txtSlideToRight");
		$marginLefty.animate({
			marginLeft: 0
		});
	});
	
	$('.slideToLeft').mouseenter(function(){
		var $marginLefty = $(this).children(".txtSlideToLeft");
		$marginLefty.animate({
			 marginLeft: -$marginLefty.outerWidth() -5
		});
	}).mouseleave(function(){
		var $marginLefty = $(this).children(".txtSlideToLeft");
		$marginLefty.animate({
			marginLeft: 0
		});
	});
	
	
});  
