$(function(){	
		
	if ($("#texte a img.zoom").length > 0) {
		$("#texte a img.zoom").each(function() {
			var myParent = $(this).parent("a");
			var altImg = $(this).attr("alt");
			
			$(this).attr("class", "");
			myParent.attr("title",altImg);
			myParent.attr("class", "zoom");
			
			if ($("#texte a.zoom").length > 0) {
				$("#texte a.zoom").lightBox({fixedNavigation:true});
			}
		});
	}
});
