window.addEvent('domready', function(){

    if (root = $('container')){
    
        root.getElements('img').each(function(i){
        
            if (i.getProperty('alt') && !i.getProperty('title')){
                i.setProperty('title', i.getProperty('alt'));
            }
        
        });

    }
    
});
