var text1="Glass beads, s.r.o. - tradition manufacturer of fire polished beads"
comeback=0
cometo=0
dis();
function dis(){
	window.status=text1.substring(0,cometo)
	if(comeback==1){
			cometo--;
			if(cometo==0){comeback=0}
			}
		else {
			cometo++;
			if(cometo==text1.length){comeback=1}
			}
	window.status=text1.substring(0,cometo)+"|"
	window.setTimeout("dis()",150);
	}

