	// Contenedor de Noticias breves
	var aTickerBreves = new Array();
	// Modificable
	var nTickerEscritura = 20 ;
	var nTickerLectura = 4000 ;
	// Definiciones
	var nTickerIndiceActual = 0;
	var sTickerTextoActual = '' ;
	var oTickerContenedor = null ;	// Input que hará de Ticker

	function tickerStart( sInput )
	{
		oTickerContenedor = document.getElementById( sInput ) ;
		tickerBorrar() ;
	}

	function tickerBorrar()
	{
		oTickerContenedor.value = '' ;
		sTickerTextoActual = '' ;
		tickerRefrescar() ;	
	}

	function tickerRefrescar()
	{	
		if ( aTickerBreves.length > 0 )
		{
			sCadena = aTickerBreves[ nTickerIndiceActual ] ;
			sTickerTextoActual += sCadena.charAt( sTickerTextoActual.length ) ;
			oTickerContenedor.value = sTickerTextoActual ;
			if ( sCadena.length == sTickerTextoActual.length ) 
			{
				nTickerIndiceActual++ ;
				if ( nTickerIndiceActual > aTickerBreves.length - 1 ) 
					nTickerIndiceActual = 0 ;
				setTimeout( tickerBorrar, nTickerLectura ) ;	
			}
			else
				setTimeout( tickerRefrescar, nTickerEscritura ) ;
		}
	}