var msg = " Welcome to FKK Slovakia - family naturist portal ";
var pos = 0;
var spacer = " ... ";
var time_length = 130;
function ScrollTitle()
{
document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos=0;
window.setTimeout("ScrollTitle()",time_length);
}
ScrollTitle();
