function initInfosPage(){

$(document).ready( function () { 	

	 	var currentItem = "";
	var itemLenght = $("#infosAjaxContent").children().length;
	
	
	for(var i = 1; i<=itemLenght; i++){
		
				
		currentItem = $("#infosAjaxContent li:nth-child("+i+") h3:nth-child(1)");	
		
		
		//injecte dans le menu gauche
		
		$('#infosAjaxMenu').append('<li id="'+i+'">'+ currentItem.html() +'</li>');
		
		
		//supprime le titre dans le block droit
		
		currentItem.remove();
		
		
	}


	displayCurrentBlock(1);





//initialise les event listenner 


	var menuLenght = $("#infosAjaxMenu").children().length;
	
	for(var i = 1; i<=menuLenght; i++){
		
		 $("#infosAjaxMenu li:nth-child("+i+")").click(function () { 
			displayCurrentBlock($(this).attr('id'));
	    });
	
	}
	
	 

} ) ; 

function displayCurrentBlock(index){
	
	//affiche le block courant
	$("#infosAjaxContent").children().hide();
	$('#infosAjaxContent li:nth-child('+index+')').fadeIn("slow");
	
	//attribue la classe courante dans le menu
	
	$("#infosAjaxMenu").children().removeClass('selectedItem');
	$("#infosAjaxMenu li:nth-child("+index+")").addClass('selectedItem');
}

}

