
// Original script by Pawel Cabala, pawel-c@online.no © Pawel Cabala 2005  

roz = 15
var i= 1
var j= 1
var timer1
var timer2

function nap()
{
 if (i<roz)
   {document.getElementById('tekst1').style.fontSize=i;
	i++;}

 if (i==roz && j<roz)
   {document.getElementById('tekst2').style.fontSize=j;
	j++;}
timer1=setTimeout("nap()",20)
 if (j==roz)
   {clearTimeout(timer1);clearTimeout(timer2)}
}


function wysw()
{
timer2=setTimeout("nap()",3500)
}


