var message = new Array();
message[0] = "The JavaScript Source";
message[1] = "Free JavaScripts";
message[2] = "JavaScript Forum";
message[3] = "Your Message Here";
message[4] = "Add as many messages as you want";
message[5] = "IE and NN6";
message[6] = "";

var reps = 2;
var speed = 200;  // Set the overall speed (larger number = slower action).

// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;

if (reps < 1) reps = 1;

function doTheThing() {
	T = message[mC];
	A();
}

function A() {
	s++;
	if (s > 11) { s = 1;}
	// you can fiddle with the patterns here...
	if (s == 1) {  document.title = 'pGRI-1-CIBINONG'; }
	if (s == 2) {  document.title = 'PgRI-1-CIBINONG'; }
	if (s == 3) {  document.title = 'PGrI-1-CIBINONG'; }
	if (s == 4) {  document.title = 'PGRi-1-CIBINONG'; }
	if (s == 5) {  document.title = 'PGRI-1-cIBINONG'; }
	if (s == 6) {  document.title = 'PGRI-1-CiBINONG'; }
	if (s == 7) {  document.title = 'PGRI-1-CIbINONG'; }
	if (s == 8) {  document.title = 'PGRI-1-CIBiNONG'; }
	if (s == 9) {  document.title = 'PGRI-1-CIBInONG'; }
	if (s == 10) { document.title = 'PGRI-1-CIBINoNG'; }
	if (s == 11) { document.title = 'PGRI-1-CIBINOnG'; }

	if (C < (11 * reps)) {
		sT = setTimeout("A()", speed);
		C++;
	} else {
		C = 0;
		s = 0;
		mC++;
		if(mC > p - 1) mC = 0;
		sT = null;
		doTheThing();
   }
}
doTheThing();
//  End -->