
		var imgEsp = new Image();
		imgEsp.src = 'http://www.rosarito.gob.mx/rto/images/iconos/langEsp.gif';
		
		var imgEng = new Image();
		imgEng.src = 'http://www.rosarito.gob.mx/rto/images/iconos/langEng.gif';
		
		var urlImgEsp = 'http://www.rosarito.gob.mx/rto/images/iconos/langEsp.gif';
		var urlImgEng = 'http://www.rosarito.gob.mx/rto/images/iconos/langEng.gif';
		
		var isSpanish = true;
		

		var englishMessage = '<br />'
		+'We  are all facing a huge challenge: building a better city. It is time to work  together for this goal.&nbsp; <br />'
		+'<br />'
		+'The  time has come to exercise an open, transparent, durable and honest government  with&nbsp; citizen participation and coordinated work; this is a commitment for  each of us in the fourth municipality of Rosarito Beach.&nbsp; <br />'
		+'<br />'
		+'For this Administration, the most important  thing is the citizenry, because it is the force that will implement actions on  behalf of the community. Without citizen participation, the government\'s  actions are intended to be short-term projects; because of this, our goal is to  form a organized township which has the courage to defend its resources. <br />'
		+'<br />'
		+'This  municipality, the youngest of the state, is already facing problems of a big  city, however, is fortunate to have valuable and hard-working people, who want  to be on this fertile ground.&nbsp; All will find support in the Municipal  Government, which will always work for the citizenry and for the welfare of  Rosarito.&nbsp; <br />'
		+'<br />'
		+'Therefore,  I invite you to pursue this dream that began more than 20 years ago with the  process of municipalization, forming a model town, where everyone can develop. <br />'
		+'<br />'
		+'<p align="center"><strong>TOGETHER WE FACE THE CHALLENGE OF  ACHIEVING A BETTER QUALITY OF LIFE.</strong></p>'
		+'<p align="center">Yours, </p>'
		+'<p align="center"><strong><em>&quot;A Government for All&quot;</em></strong> '
		+'<p>&nbsp;</p>'
		+'<p align="center"><strong>Hugo  Eduardo Torres Chabert</strong> <br />'
		+'Mayor of Playas de Rosarito</p>'
		+'<br /><br />';
		
		var spanishMessage = '<br />'
		+'<p><strong>Habitantes de Playas de Rosarito:</strong></p>'
		+'Estamos todos  ante un enorme reto: la construcci&oacute;n de una mejor ciudad. Es el tiempo de  trabajar juntos por este objetivo.<br />'
		+'<br>'
		+'Lleg&oacute; el momento de ejercer un Gobierno de puertas abiertas, transparente,  de participaci&oacute;n ciudadana, de trabajo coordinado, arduo y honesto; ese es el  compromiso para cada uno de los que integramos el&nbsp; IV Ayuntamiento de Playas de Rosarito.<br />'
		+'<br>'
		+'Para esta Administraci&oacute;n, lo m&aacute;s importante es el ciudadano, porque en &eacute;l  se encuentra la fuerza que har&aacute; que prevalezcan las acciones en favor de la  comunidad. Sin la participaci&oacute;n ciudadana, las acciones del gobierno est&aacute;n  destinadas a ser proyectos a corto plazo, por esto, nuestro objetivo es formar  una sociedad organizada, que tenga el arrojo para defender sus recursos.<br />'
		+'<br>'
		+'Este municipio, el m&aacute;s joven del Estado, enfrenta ya los problemas de una  gran ciudad, sin embargo, tiene la fortuna de contar con gente valiosa y&nbsp; trabajadora, que quiere a &eacute;sta, que es tierra  f&eacute;rtil.<br />'
		+'<br>'
		+'Todos encontrar&aacute;n un apoyo en el Gobierno Municipal, que trabajar&aacute;  siempre en &nbsp;favor de la ciudadan&iacute;a y por  el bienestar de Rosarito.<br />'
		+'<br>'
		+'Por ello, los invito a continuar con este sue&ntilde;o que comenz&oacute; hace m&aacute;s de  20 a&ntilde;os con el proceso de municipalizaci&oacute;n, formar un municipio modelo, donde  todos podamos desarrollarnos. </p>'
		+'<p align="center"><strong>ENFRENTEMOS  JUNTOS EL RETO DE LOGRAR UNA MEJOR CALIDAD DE VIDA.</strong></p>'
		+'<p align="center">Atentamente</p>'
		+'<p align="center"><strong>&ldquo;<em>Un Gobierno Para Todos&rdquo;</em></strong></p>'
		+'<p>&nbsp;</p>'
		+'<p align="center"><strong>Hugo  Eduardo Torres Chabert</strong> <br>'
		+'Presidente  Municipal de Playas de Rosarito</p>'
		+'<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />';
		
		var englishTitle = 'A Welcome Message From The Mayor';
		var spanishTitle = 'Mensaje de Bienvenida del Alcalde';
		
		function changeTextMessage()
		{
			var obj = document.getElementById('tickerID');
			var btn = document.getElementById('langBtn');
			var ttl = document.getElementById('titleWelcomeMessage');
		
			if(isSpanish)
			{
				obj.innerHTML = englishMessage;
				btn.src = urlImgEsp;
				ttl.innerHTML = englishTitle;
			}
			else
			{
				obj.innerHTML = spanishMessage;
				btn.src = urlImgEng;
				ttl.innerHTML = spanishTitle;
			}
			
			isSpanish = !isSpanish;
			
			//initializemarquee();
		}
