if(document.getElementsByTagName && document.createTextNode) {
	var cella=document.getElementsByTagName("a");
	
	for(i=0; i < cella.length; i++){
		var myClass = cella[i].className;
		if(myClass && ((myClass == "menu_top") || (myClass == "menu_lat_top") || (myClass == "menu_lat_bottom") || (myClass == "menu_lat_meteo") || (myClass == "content_title"))){
			var cellaInt = cella[i].getElementsByTagName("strong");
			cellaInt[0].style.visibility="hidden";
			
			cella[i].style.backgroundImage = "url('/bunker/img_inc_java.php?class=" + cella[i].className + "&valore=" + escape(cellaInt[0].firstChild.nodeValue) + "')";
			cella[i].style.backgroundRepeat = "no-repeat";
			cella[i].style.backgroundPosition = "center -3px";
			cella[i].style.whiteSpace = "nowrap";
			//cella[i].style.textIndent = "101%";
			//cella[i].style.overflow = "hidden";
		}
		
		if((cella[i].className != "menu_top") && (cella[i].className != "")){
			cella[i].style.backgroundPosition = "left center";
		}
	}
} else {
	alert("Metodo non supportato!");	
}
