var wait = 75
var message = new Array()

message[0]  = "Hello nice to see you on our gay platform"
message[1]  = "Looking to meat MR. RIGHT ore just hook up for tonight?"
message[2]  = "Finding a nice compagnion for one hour ore the night"
message[3]  = "Searching for the perfect Model for your photo shooting's"
message[4]  = "Need a Fashon, Art ore Sports Model"
message[5]  = "On www.manscasting.com you can find all this and much more"
message[6]  = "Checking out the Guys and Chating on Gay2Play"
message[7]  = "Finding A Lover ore a hook up."
message[8]  = "Let’s hook up and play on www.gay2play.com :) We can ignore each other later :("
message[9]  = "Have fun on our Web Platform and play save"

var msgs = 9
var temp = ""
var curmsg = 0
var a = 0
var counter = 0

function typew()
{
a = a + 1
check()
window.status = message[curmsg].substring(0, a)
if(a == message[curmsg].length + 5)
{
curmsg = curmsg + 1
a = 0
}
if(curmsg > msgs)
{
curmsg = 0 }
counter = setTimeout("typew()", wait)
}
function check()
{
if(a <= message[curmsg].length)
{
if(message[curmsg].substring(a, a + 1) == "")
{
a = a + 1
check()
}
}
}
typew();
