var delay=3000 //set delay between message change (in miliseconds)
var titgal=new Array()
begintag='<font face="Arial,Helvetica" size=1>' //set opening tag, such as font declarations
titgal[0]="12/Mayo/2008";
titgal[1]="<a href='http://buenosdiasgalicia.com/redir.cgi?edi=080512&num=213&usr=frisona' target='blank'>El Correo Gallego - Comarcas</a><br>Hamilton: \"Estoy un poco desilusionado por no haber ganado\"";
titgal[2]="<a href='http://buenosdiasgalicia.com/redir.cgi?edi=080512&num=214&usr=frisona' target='blank'>El Correo Gallego - Deportes</a><br>Hamilton: \"Estoy un poco desilusionado por no haber ganado\"";
titgal[3]="<a href='http://buenosdiasgalicia.com/redir.cgi?edi=080512&num=308&usr=frisona' target='blank'>La Voz de Galicia - Lugo</a><br>El primer concurso de ganado frisón reunió a más de cuarenta reses en la feria de San Isidro";
closetag='</font>'

var fwidth=100 //set scroller width
var fheight=125 //set scroller height

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index1=0

if (DOM2)
faderdelay=2000

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame1=20;
hex1=255  // Initial color value.

function colorfade1() {
// 20 frames fading process
if(frame1>0) {
hex1-=12; // increase color value
document.getElementById("fscroller1").style.color="rgb("+hex1+","+hex1+","+hex1+")"; // Set color value.
frame1--;
setTimeout("colorfade1()",20);
}
else{
document.getElementById("fscroller1").style.color="rgb(0,0,0)";
frame1=20;
hex1=255
}
}

if (ie4||DOM2)
document.write('<div id="fscroller1" style="width:'+fwidth+';height:'+fheight+';padding:2px"></div>')
