function rollover(){

	if(document.getElementById('tabella_metro') || document.getElementById('tabella_pellicola')){
		img_array = document.getElementsByTagName('img');
		
		var path = "portaletture.org/immagini/";
		var rollover_path = "portaletture.org/immagini/rollover_";

		
		for (var i=0;i<img_array.length;i++) {
		
				img_array[i].onmouseover = function()
					{
						this.src = this.src.replace(path,rollover_path);
					};
				img_array[i].onmouseout = function()
					{
						this.src=this.src.replace(rollover_path,path);
					};
		}
	}

}