function focusHome_init(){
	window.tempsEntrePhoto = 10000;
	var imgWidth, imgHeight ; // hauteur de l'image à l'écran
	var noImgSelect = 0; // le numéro de l'image séléctioné à partir de 0
	var lstInfoImage;
	var n = 0;
	
	lstInfoImage =$('#focusList li') ; // dragable sticker		
	
	window.nbImage = lstInfoImage.size(); // nombre de focus dans la liste
	
	window.imgLst = new Array(); // contient la liste des texte a mettre sur les images
	
	for (i = 0; i < nbImage; i++){		
		imgLst[i] = new Array();
		imgLst[i]['titre'] = lstInfoImage.eq(i).attr('titre');
		imgLst[i]['lien'] = lstInfoImage.eq(i).attr('lien');
		imgLst[i]['image'] = lstInfoImage.eq(i).attr('image');	
		imgLst[i]['description'] = lstInfoImage.eq(i).attr('description');	
		imgLst[i]['legende'] = lstInfoImage.eq(i).attr('legende');	
	}
	
	window.img = 0;
	setInterval(function(){ 
		var src='/VdlDir/Actus/'+window.imgLst[img]['image'];
		var href='/view.asp?DocId='+window.imgLst[img]['lien'];
		$('#focus_left_image img').attr('src',src);
		$('#focus_left_image img').attr('alt',window.imgLst[img]['legende']);
		$('#focus_left_image img').attr('title',window.imgLst[img]['legende']);
		$('#focus_left_image a').attr('href',href);
		$('#focus_left_veil a').attr('href',href);
		$('#focus_left_text .t1').html('<h2>'+window.imgLst[img]['titre']+'</h2>'+window.imgLst[img]['description']);
		$('#focus_left_text .t2').html('<h2>'+window.imgLst[img]['titre']+'</h2>'+window.imgLst[img]['description']);
		if(window.img==(window.nbImage-1)){
			window.img=0;
		}else{
			window.img++;
		}
	},window.tempsEntrePhoto); 
	
	
	


}




	
	
	

