var info = new Array()

info[0] = "Tworzenie stron internetowych ";
info[1] = "Administracja serwisami ";
info[2] = "Reklama w Internecie ";
info[3] = "Optymalizacja stron pod przeglądarki ";
info[4] = "Konsultacje online ";
info[5] = "Instalacje darmowych systemów";
info[6] = "Cięcie grafiki";

var reps = 1

var speed = 500
var p=info.length;
var T="";
var C=0;
var mC=0;
var s=0;
var sT=null;
if(reps<1)reps=1;

function doTheThing(){
	T=info[mC];
	A();
}

function A(){
	
	window.status=' '+T+' ';
	
	s++
	
	if(s>16){s=1}

	if(s==1){document.title=' '+T+' 6 '}
	if(s==2){document.title=' '+T+' 69 '}
	if(s==3){document.title=' '+T+' 692 '}
	if(s==4){document.title=' '+T+' 692-'}
	if(s==5){document.title=' '+T+' 692-8 '}
	if(s==6){document.title=' '+T+' 692-82 '}
	if(s==7){document.title=' '+T+' 692-828 '}
	if(s==8){document.title=' '+T+' 692-828- '}
	if(s==9){document.title=' '+T+' 692-828-2 '}
	if(s==10){document.title=' '+T+' 692-828-27 '}
	if(s==11){document.title=' '+T+' 692-828-273 '}
	if(s==12){document.title=' '+T+'  '}
	if(s==13){document.title=' '+T+' Masz pytanie?'}
	if(s==14){document.title=' '+T+' '}
	if(s==15){document.title=' '+T+' DZWOŃ!'}
	if(s==16){document.title=' '+T+' '}
	
	if(C<(16*reps)){
		sT=setTimeout("A()",speed);
		C++
	}
	else {
		C=0;
		s=0;
		mC++
		
		if(mC>p-1)mC=0;
		sT=null;
	
		doTheThing();
	}
}

doTheThing();
