var nS = -1;
var scrollNews = new Array();
var heightarr = new Array();

if (idiAct == "e") {
  scrollNews[nS=nS+1] = new Array ("ER de bronce de Aenor","Por su labor de Seguridad y Salud en el trabajo","../certificados/aenor_e.htm","");
  scrollNews[nS=nS+1] = new Array ("Centro Asistencial Mutua Balear Lanzarote cambia de horario","A partir del 1 de julio el nuevo horario de atención al público será de LUNES A VIERNES DE 8:00 A 15:30. Todos los servicios, tanto asistenciales como administrativos, permanecerán invariables.","http://www.mutuabalear.es/redasis/redasist3_e.asp?cp=35","");
  scrollNews[nS=nS+1] = new Array ("Botiquines para nuevas altas","Mutua Balear pone a disposici&oacute;n de las NUEVAS ALTAS de empresas UN BOTIQU&Iacute;N DE PRIMERO AUXILIOS sin necesidad de solicitud previa.","../botiquin/botiquin_e.htm","");
}

if (idiAct == "c") {
  scrollNews[nS=nS+1] = new Array ("ER de bronce de Aenor","Per la seva labor de Seguretat i Salut en el treball","../certificados/aenor_c.htm","");
  scrollNews[nS=nS+1] = new Array ("Centre Assistencial Mutua Balear Lanzarote canvia d\'horari","A partir del 1 de juliol el nou horari d\'atenció al públic serà de DILLUNS A DIVENDRES DE 8:00 A 15:30. Tots els serveis, tant assistencials com administratius, romandran invariables","http://www.mutuabalear.es/redasis/redasist3_c.asp?cp=35","");
  scrollNews[nS=nS+1] = new Array ("Farmacioles per a noves altes","Mutua Balear posa a la disposici&oacute; de les NOVES ALTES d'empreses UNA FARMACIOLA DE PRIMER AUXILIS sense necessitat de sol&middot;licitud pr&egrave;via","../botiquin/botiquin_c.htm","");
}

var numNoticies = scrollNews.length;
var esticDamunt = false;
var scroll;
var ampleScroll = 140-8-8-(2*1);
var espaiEntreNoticies = 20;

var psy = new Array();

var capaScrollObj=null;
var uzuntop=0;
var toplay=0;

function canviaStils(numCanv) {
	esticDamunt=true;
	if((scrollNews[numCanv][2].length)>2) {
    document.getElementById('noticia_'+numCanv).className= "txtScrollHover";
    document.getElementById('noticiaTit_'+numCanv).className= "titScrollHover";
		window.status=""+scrollNews[numCanv][2];
	}
}

function restauraStils(numRest) {
	esticDamunt=false;
  document.getElementById('noticia_'+numRest).className= "txtScroll";
  document.getElementById('noticiaTit_'+numRest).className= "titScroll";
	window.status="";
}

function activaClick(numClk) {
  if(scrollNews[numClk][2].substring(0,11)=="javascript:"){
    eval(""+scrollNews[numClk][2]);
  }
  else{
    if((scrollNews[numClk][2].length)>3){
      if((scrollNews[numClk][3].indexOf("_parent")>-1)){
        eval("parent.window.location='"+scrollNews[numClk][2]+"'");
      }
      else 
      if((scrollNews[numClk][3].indexOf("_top")>-1)){
        eval("top.window.location='"+scrollNews[numClk][2]+"'");
      }
      if(scrollNews[numClk][3] == ""){
        eval("top.window.location='"+scrollNews[numClk][2]+"'");
      }
      else{
        window.open(''+scrollNews[numClk][2],''+scrollNews[numClk][3]);
      }
    }
  }
}

function dotrans() {
	if ( esticDamunt == false ) {
    uzuntop--;
    if ( uzuntop < (-1*toplay) ) {
      uzuntop=140;
    }
    capaScrollObj.style.top=uzuntop+"px";
  }
	if ( psy[(uzuntop*(-1))+8] == 3 ) {
		setTimeout('dotrans()',2000+35);
	}
	else {
		setTimeout('dotrans()',35);
	}	
}

function animaEsCotarro() {
	if(esticDamunt==false){
    posicioCapaScroll--;
    if(posicioCapaScroll<(-1*toplay)) {
      posicioCapaScroll=altScroll;
    }
    capaScrollObj.style.top=posicioCapaScroll+"px";
  }
	if(psy[(posicioCapaScroll*(-1))+4]==3) {
		setTimeout('animaEsCotarro()',tempsEsperaNoticia+velocidadNoticia);
	}
	else {
		setTimeout('animaEsCotarro()',velocidadNoticia);
	}	
}

function iniciDos() {
	i=0;
	for(i=0;i<numNoticies;i++) {
		objd=document.getElementById('noticia_'+i);
		heightarr[i]=objd.offsetHeight;
	}
	toplay=8;
	for(i=0;i<numNoticies;i++) {
		objd=document.getElementById('noticia_'+i);
		objd.style.visibility="visible";
		objd.style.top=""+toplay+"px";
		psy[toplay]=3;
		toplay = toplay + heightarr[i] + espaiEntreNoticies;
	}
	capaScrollObj=document.getElementById('capaScroll');
	capaScrollObj.style.left= 5 +"px";
	capaScrollObj.style.height= toplay +"px";
	capaScrollObj.style.width= ampleScroll +"px";
	uzuntop=140;
	dotrans();
}

function inici() {
	i=0;
	innertxt = "<div id='capaScroll'>";
	for(i=0;i<numNoticies;i++) {
		innertxt += "<div id='noticia_"+i+"'";
		innertxt += " onmouseover='canviaStils("+i+")'";
		innertxt += " onmouseout ='restauraStils("+i+")'";
		innertxt += " onclick='activaClick("+i+")'";
		innertxt += " style='width:"+ampleScroll+";' class='txtScroll'>";
		innertxt += "<div id='noticiaTit_"+i+"'";
		innertxt += " style='width:"+ampleScroll+";' class='titScroll'>";
		innertxt += ""+scrollNews[i][0]+"<br></div>"+scrollNews[i][1]+"</div>";
	}
	innertxt += "</div>";

	scroll = document.getElementById('scrollContingut');
	scroll.innerHTML=""+innertxt;
	scroll.style.left="5px";
	scroll.style.top="5px";
	setTimeout('iniciDos()',500);
}

window.onload=inici;
