function legendImages() {		$("img.legendMe")		.parent("p").addClass("wrapLegended");	$("img.legendMe")		.css( { borderBottom:"1px solid #777" } );	$("p.wrapLegended")		.each( function() {								$(this).append("<span>"+$(this).children('img.legendMe').attr('title')+"</span>");							})							.css( { paddingLeft:"20px" } );	$("p.wrapLegended span").css( { display:"block" , fontSize:"0.9em" , color:"#777", paddingTop:"5px" } );}function showImage(img){ return (function(){ img.style.display='inline'; }) }	var ul = document.createElement('ul')	for (var i=0, post; post = Delicious.posts[i]; i++) {	    var li = document.createElement('li')	    var a = document.createElement('a')	    a.style.marginLeft = '20px'	    var img = document.createElement('img')	    img.style.position = 'absolute'	    img.style.display = 'none'	    img.height = img.width = 16	    img.src = post.u.split('/').splice(0,3).join('/')+'/favicon.ico'	    img.onload = showImage(img);	    a.setAttribute('href', post.u)	    a.appendChild(document.createTextNode(post.d))	    li.appendChild(img)	    li.appendChild(a)	    ul.appendChild(li)	}		var p = document.createElement('p')	p.className = 'deliWarning'	p.innerHTML = 'Ces liens sont générés en javascript, depuis <a href="http://del.icio.us/kiouv" title="Mes liens sur del.icio.us, en anglais" lang="en">mon compte del.icio.us</a>.'$(document).ready( function() {	var replaceText = document.getElementById('deliLinks').getElementsByTagName('p');	document.getElementById('deliLinks').removeChild(replaceText[0]);	document.getElementById('deliLinks').appendChild(ul);	document.getElementById('deliLinks').appendChild(p);		legendImages();});