	var anuncio = "ajaxCreativo 2008 | info@ajaxcreativo.com.mx"
	var velocidad = 0
	var auxX = 0
	function inicioWindowStatus() 
	{
		window.status = anuncio
		if (auxX == anuncio.length) 
		{
			auxX = 0
		}
		else 
		{
			auxX++
		}
		setTimeout("inicioWindowStatus()",velocidad)
}
	inicioWindowStatus();
