myMsg="Welcome to WatchConcepts.com - new website of Right Time International Watch and Clock Center - Official Factory Authorized Dealer " +
	"and Approved Service Center for world's famous brands. We are Denver's premier new and certified pre-owned " +
	"watch and clock specialty store. Trading worldwide in a new millennium and providing " +
	"expert watch service and restoration for all brands.           "                        


i=0 

function scrollMsg() {
	window.status=myMsg.substring(i, myMsg.length) + myMsg.substring(0, i-1)
	if (i<myMsg.length) {
		i++
	}else{
		i=0
	}
	setTimeout("scrollMsg()",250)
}

