var index = 0;
var cnt = 0;
var test1 = "--";
var titletext = document.title; // TITLEBAR TEXT

function scr_1(seed)
{
//        if (cnt==0){
//          cnt++;
//        }
  
        if(index<=titletext.length){
          document.title= titletext.substring(0,index);
          index++;
        }

	var e1  = "Bling-Bling na Roda da Capoeira";
	var e2  = "  Capoeira e Nossa Luta da Libertação !!! ";
	var e3  = " Versatil Ismail ";
	var msg=e1+e2+e3;
	var out = " ";
	var c   = 1;

	if (seed > 130) {
		seed--;
		var cmd="scr_1(" + seed + ")";
		timerTwo=window.setTimeout(cmd,130);
	}
	else if (seed <= 130 && seed > 0) {
		for (c=0 ; c < seed ; c++) {
			out+=" ";
		}
		out+=msg;
		seed--;
		var cmd="scr_1(" + seed + ")";
		window.status=out;
		timerTwo=window.setTimeout(cmd,130);
	}
	else if (seed <= 0) {
		if (-seed < msg.length) {
			out+=msg.substring(-seed,msg.length);
			seed--;
			var cmd="scr_1(" + seed + ")";
			window.status=out;
			timerTwo=window.setTimeout(cmd,130);
		}
		else {
			window.status=" ";
			timerTwo=window.setTimeout("scr_1(130)",75);
		}
	}
}

function scrolltitle(){
// alert(titletext);
  var repeat=false;     // SET TO true TO REPEAT, false TO "TYPE" OUT TITLE ONLY ONCE.
  var index=0; 

  if(index<=titletext.length){
//    alert("greater title")
    document.title=titletext.substring(0,index);
    index++;
    setTimeout('scrolltitle()', 200);
  }else{
//    alert("smaller title")
    index=0;
    if(repeat)setTimeout('scrolltitle()',1000);
  }
}