/*$(document).ready(function() {
	var heightIndexLeft 	= $("#index-left").height();
	var heightIndexRight 	= $("#index-right").height();
	var newHeightIndexRight = heightIndexLeft + 68;
	
	if(heightIndexLeft < heightIndexRight){
		$("#index-left").css('height', heightIndexRight);
	}
	else if(heightIndexRight <= heightIndexLeft){
		$("#index-right").css('height', newHeightIndexRight);
	}
	alert(heightIndexLeft + ' / ' + newHeightIndexRight);
});*/

$(document).ready(function(){ 
	$("#slider").easySlider({
		prevText: 		'PRECEDENT',
		nextText: 		'SUIVANT',
		auto:			true,
		speed: 			1500,
		continuous:		true
	});
});




