function anim( nowait ){
$('headAnimation').style.display = "none"; \\ Скрываем анимацию
$('headText').style.display = "inline"; \\ Показываем текст
setTimeout(function(){
$('headAnimation').style.display = "inline"; \\ Ждем 6 сек. и меняем
$('headText').style.display = "none";
}, nowait ? 1 : 6000);
}
setInterval(anim, 12000);
anim( true );