var txt="                                         ";
txt+=" <Noticias   Novas   News   Notices>     ";
txt+="                                             ";
var posicion="izquierda";
	
function mensaje(){
	if(posicion=="izquierda"){
		window.status=txt;
		txt=txt.substring(1,txt.length)+" ";
		window.setTimeout("mensaje()",100);
		if(txt.substring(0,1)=="<")
			posicion="derecha";
	}
	else{
		txt=" "+txt.substring(0,txt.length-1);
		window.status=txt;
		window.setTimeout("mensaje()",100);
		if(txt.substring(txt.length-1,txt.length)==">")
			posicion="izquierda";
	}
}
