// JavaScript Document
// JavaScript Document
<!--
function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<b>Abbiamo entusiasmo<br>da vendere!</b>"
random_text[number++] = "<b>Abbiamo voglia<br>di crescere con i nostri figli!</b>"
random_text[number++] = "<b>Proviamo sempre<br>a fare qualcosa in più!</b>"
random_text[number++] = "<b>I nostri volontari crescono<br>anche grazie ai nostri figli.</b>"
random_text[number++] = "<b>Al CEPIM ci sarà sempre<br>qualcosa ancora da fare...</b>"
random_text[number++] = "<b>Lo spirito del CEPIM<br>è sempre giovane.</b>"
random_text[number++] = "<b>Al CEPIM son cresciuti<br>centinaia di volontari.</b>"
random_text[number++] = "<b>Fare il volontario al CEPIM<br>amplia i tuoi orizzonti.</b>"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->