statusmessage= "Welcome to www.rovan.in^" +
				"ROVAN is a leading provider of Information Technology solutions.^" +
				"ROVAN provides high quality software products and services to customers.^" +
				"ROVAN provides efficient support to ensure our solutions operate optimally.^" +
				"ROVAN's cutting edge business solutions empower the clients to serve their customers better.^" +
				"^"
		scrollSpeed = 50
		lineDelay   = 1500
		txt         = ""
		function scrollText(pos) 
		{
			
			if (statusmessage.charAt(pos) != '^') 
			{
				txt    = txt + statusmessage.charAt(pos)
				status = txt
				pauze  = scrollSpeed
			}
			else 
			{
				pauze = lineDelay
				txt   = ""
				if (pos == statusmessage.length-1) pos = -1
			}
			pos++
			setTimeout("scrollText('"+pos+"')",pauze)
		}
		scrollText(0)