
function links_add_title() {
    ls = document.getElementsByTagName('a');

    for (i=0; i<ls.length; i++) {
        
        alt = "";

        if (ls[i].childNodes)
        if (ls[i].childNodes[0])
        if (ls[i].childNodes[0].alt)
            alt = ls[i].childNodes[0].alt
        
        if (alt) {
            
            h = ls[i].href;
            
            ls[i].href = "/2008/php/picture.php?img=" + h + "&note=" + alt;
        }
    }
}
