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]="3/Septiembre/2010";
titgal[1]="<a href='http://buenosdiasgalicia.com/redir.cgi?edi=100903&num=63&usr=frisona' target='blank'>La Voz de Galicia - Barbanza</a><br>El cabello humano como repelente para los animales";
titgal[2]="<a href='http://buenosdiasgalicia.com/redir.cgi?edi=100903&num=164&usr=frisona' target='blank'>La Voz de Galicia - Deza-Tabeirós</a><br>Sindicatos y cooperativas activan el boicot de la zona a tres lácteas";
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>')
