var texto="  OCIOenVALLADOLID.ya.st Tu Portal de la Fiesta    ";
var contador;
function fcargar(){
	contador=1;
	setTimeout("festado()",300);
	}
function festado(){
	window.status=texto.substring(0,contador);

	
	if(contador==51){
	contador=1;
	}
	else{
	contador++;
	}
	setTimeout("festado()",300);
}
