// JavaScript Document
var message = new Array();

message[0] = " Oficina de Web";
message[1] = " Design Gráfico e Estratégico";
message[2] = " Soluções Para um Mundo Diverso";
message[3] = " odesign@odesign.com.br";
message[4] = " (51) 3044.3546";

// Set the number of repetitions (how many times the arrow
// cycle repeats with each message).
var reps = 1;
var speed = 600;  // 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 > 15) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 2) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 3) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 4) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 5) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 6) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 7) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 8) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 9) { document.title = ' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 10) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 11) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 12) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 13) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 14) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (s == 15) { document.title =' | O D E S I G N | Web & Design | '+T+' '; }
if (C < (15 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();
//  End -->

function maximize() {
   if ( !( (navigator.appName.indexOf("Netscape") != -1) && (navigator.appVersion.indexOf("Mac") != -1)))
   {
      window.moveTo(0,0);
      window.resizeTo(screen.availWidth, screen.availHeight);
   }
}
maximize(); 
