msg = "Welcome to Network Store we sell Quantum Cat5e, Cat6 Patch Panels, Modules, Patch Leads any size and colour, Cable, Fibre products, trunking, Power Bars, Cabinets any size, Active kit including Cisco 3Com Netgear Dynamo, In fact any thing to do with Network installations. If you cant see what you are looking for get in contact because we are bound to have it at a great price. ";
msg += "";
spacer = "                                                ";
pos=0;
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,115);
	pos++;
	if (pos > msg.length) pos=0;
	window.setTimeout("ScrollMessage()",150);
}


