
<!-- This is where the SCROLLER begins -->  

	var message="_Your_Ambassador_of_Polish_Heritage_and_Culture_";
	var space="...";
	var position=0;
	function scroller(){
		var newtext = message.substring(position,message.length) + space + message.substring(0,position);
		var td = document.getElementById("tabledata");
		td.firstChild.nodeValue = newtext;
		position++;

		
		if (position > message.length)
			position=0;
		window.setTimeout(scroller,100);
	}



