﻿function text() {}

text = new text();
number = 0;

text[number++] = "Costruzione nel settore Ferroviario  Militare  Aereonautico  Navale"
text[number++] = "Carrozze Metro Railways Tram Autobus"
text[number++] = "Impianto di Saldatura Laser Weld"
text[number++] = "Fiancate Tetti Testate Testate/Cabine CarrelliMotore CarrelliPortanti"
text[number++] = "Interior Designer"

increment = Math.floor(Math.random() * number);

document.write(text[increment]);


function TestoLampeggiante() {
    var testo = document.getElementById("TESTO");
    if (testo.style.color == "#000000") {
        testo.style.color = "#0000FF";
    }
    else {
        testo.style.color = "#000000";
      }
}


window.setInterval("TestoLampeggiante()", 300);

