/* del.icio.us ----------*/

var dl = document.createElement('dl')
for (var i=0, post; post = Delicious.posts[i]; i++) {
   var dt = document.createElement('dt')
   var a = document.createElement('a')
   var dd = document.createElement('dd')
   a.setAttribute('href', post.u)
   a.appendChild(document.createTextNode(post.d))
   dt.appendChild(a)
   dd.appendChild(document.createTextNode(post.n))
   dl.appendChild(dt)
   dl.appendChild(dd)
}

document.getElementById('delicious').appendChild(dl)
