<!--
	ScrollSpeed = 600;
	ScrollChars = 4;
	function SetupTicker()
	{
	msg = "Dentalman -  Family Dentist, with the most up-to-date technology, including painless laser treatment."
	RunTicker();}
	function RunTicker() {
	window.setTimeout('RunTicker()', ScrollSpeed);
	window.status = msg;
	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars); }
	SetupTicker();
//-->


