<!--
scrollit(100);

function scrollit(seed) {
var m1  = "This website was designed by the team at - Hire A PC Guy - Western Australia      ";
var m2  = "            Get your own 6-8 page website for just AU$695 - includes free hosting & domain name registration for 1st year        ";
var m3  = "            Free minor updates included       ";
var m4  = "            Call (08) 9534 8108 or Email info@hireapcguy.com      ";
var m5  = "            Get Netted Now!       ";
var msg=m1+m2+m3+m4+m5;
var out = " ";
var c   = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
      }
   }
}
// End -->