var space = "   ++++   ";
var speed = "200";
var pos = 0;
var msg = "Tawerna-Marine State - Uwaga! Posiadamy jeszcze wolne terminy na 2011 rok! Serdecznie zapraszamy!";
function Scroll()
{
document.title = msg.substring(pos, msg.length) + space + msg.substring(0,pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("Scroll()", speed);
}
Scroll();


