var texto="  InterKram S.L. Grupo Interactivo de Marketing, Publicidad y Diseņo Web  ";
var contador;
function fcargar(){
	contador=1;
	setTimeout("festado()",300);
	}
function festado(){
	window.status=texto.substring(0,contador);

	
	if(contador==142){
	contador=1;
	}
	else{
	contador++;
	}
	setTimeout("festado()",300);
}

