
text = "Porco Alentejano"; // The text to scroll
color1 = "003300"; // original text color
color2 = "336600"; // new character color
fontsize = "6"; // font size of text
speed = 100; // how fast to rotate to next character 
// time is in milliseconds, (i.e. 1000 = 1 second)
i = 0;
if (navigator.appName == "Netscape") {
document.write("<layer id=a visibility=show></layer><br><br><br>");
}
else {
document.write("<div id=a style='width:300;font-family:Monotype Corsiva;font-style:italic;'></div>");
}
function changeCharColor()  {
if (navigator.appName == "Netscape") {
document.a.document.write("<left><font size =" + fontsize + "><font color=" + color1 + ">");
for (var j = 0; j < text.length; j++) {
if(j == i) {
document.a.document.write("<font color=" + color2 + ">" + text.charAt(i) + "</font>");
}
else {
document.a.document.write(text.charAt(j));
}
}
document.a.document.write('</font></font></left>')
document.a.document.close();
}
if (navigator.appName == "Microsoft Internet Explorer") {
str = "<left><font size=" + fontsize + "><font color=" + color1 + ">";
for (var j = 0; j < text.length; j++) {
if( j == i) {
str += "<font color=" + color2 + ">" + text.charAt(i) + "</font>";
}
else {
str += text.charAt(j);
}
}
str += "</font></font></left>";
a.innerHTML = str;
}
(i == text.length) ? i=0 : i++; // reset after going through all letters
}
setInterval("changeCharColor()", speed);
//  End -->
