msg = "... a duty to competative excellence ... ";
msg += "... SALES ... MARKETING ... BUSINESS DEVELOPMENT ... ";
spacer = "";
pos=0;
msg2 = "... commercial property finance ... ";
msg2 += "... commercial finance ... REAL ESTATE SOURCING ...";
function ScrollMessage() {
	var newtext1 = msg.substring(pos, msg.length) + spacer + msg.substring(0,pos);
	var td = document.getElementById("scroll");
	td.firstChild.nodeValue = newtext1.substring(0,45);
	pos++;
	if (pos > msg.length) pos=0;
	window.setTimeout("ScrollMessage()",250);
}
function ScrollMessage2() {
	var newtext1 = msg2.substring(pos, msg2.length) + spacer + msg2.substring(0,pos);
	var td = document.getElementById("scroll2");
	td.firstChild.nodeValue = newtext1.substring(0,45);
	pos++;
	if (pos > msg2.length) pos=0;
	window.setTimeout("ScrollMessage2()",200);
}


