<!-- 
var index = 0; 
var newbig = "http://metalrobot.forumup.it/templates/subSilver/images/folder_new_big.gif"; 
var newbig2 = "http://metalrobot.forumup.it/templates/subSilver/images/folder_big.gif"; 


var mynewbig = "http://digilander.libero.it/worldmodelstwo/jeegcolori.gif"; 
var mynewbig2 = "http://digilander.libero.it/worldmodelstwo/jeegnero.gif"; 

function chicone() { 
for(index=0; index<document.images.length; index++){ 
if(document.images[index].src != newbig) continue; 
else { 
document.images[index].height = 35; 
document.images[index].width = 37; 
document.images[index].src = mynewbig; 
} 
} 
for(index=0; index<document.images.length; index++){ 
if(document.images[index].src != newbig2) continue; 
else { 
document.images[index].height = 35; 
document.images[index].width = 37; 
document.images[index].src = mynewbig2; 
} 
} 
} 

window.setTimeout("chicone()", 1000); 

--> 

