var objNoticia = new Object(); 
objNoticia.noticias = new Array(); 
          objNoticia.noticias[0] = "<strong>Saltillo:</strong><br> Tel. (844) 430-8422, 134-99-90 Nextel: 162-11-70";
		  objNoticia.noticias[1] = "<strong>Aguascalientes:</strong> Tels.(449) 146-0598, 153-2510, 139-3760. Fax. (449)146-0597. Celular. (449) 980-4344. Nextel. (449) 441-5464 ID 62*256827*2";
objNoticia.IdNoticiaAleatoria = 0; 
objNoticia.esPrimeraVez = true; 

objNoticia.siguienteNoticia = function () 
{ 
     if(this.noticias.length > 0) 
     { 
          if(this.IdNoticiaAleatoria == (this.noticias.length - 1)) 
          { 
               this.IdNoticiaAleatoria = 0; 
          } 
          else 
          { 
               this.IdNoticiaAleatoria += 1; 
          } 
          this.CambiaNoticia(); 
     } 
} 

objNoticia.CambiaNoticia = function() 
{ 
     document.getElementById("txtubicacion").innerHTML = this.noticias[this.IdNoticiaAleatoria]; 
} 
objNoticia.Inicio = function() 
{     /*this.siguienteNoticia(); */
     setInterval("objNoticia.siguienteNoticia()",10000);      
} 

window.onload=function(){ objNoticia.Inicio();}