//<!--
// favicon.js - 2005 - francisek.over-blog.com
// Entrez l'url de votre icône ici
var icon_url = "http://data.over-blog.com/lib/1/8/29881/files/favicon.ico";


function SetIcon(icon) {
  try {
    var h = document.getElementsByTagName('head')[0];
    var l = document.createElement('link');
    l.setAttribute("href", icon);
    l.setAttribute("type","image/x-icon");
    l.setAttribute("rel", "shortcut icon");
    h.appendChild(l);
  } catch(e) {};
}

SetIcon(icon_url);
//-->