function scroll(speed)
{
position++;
var output = "";
if (position == text.length) position = -(size + 2);
if (position < 0)
{
for (i = 1; i <= Math.abs(position); i++) output = output + " ";
output = output + text.substring(0,size - i + 1);
}
else
{
output = output + text.substring(position, size+position);
}
window.status = output;
setTimeout("scroll(" +speed+ ")",speed);
}
var text = "The Fourth Space - A World of 24-Carat Glamour! Offering the ultimate make up, hair and dressing services to the transgendered community. Just call 0845 643 6344 for an appointment or email: enquiries@thefourthspace.com";
var size = 180;
var position = -(size + 2);
scroll(80);