var speed=70
var pause=2000
var timer=null;
var running =false
var ar=new Array()
ar[0]="Register  with the 'Product Directory' of Industries Department, Govt. of Kerala. It is free."
ar[1]=" Click the 'Free Registration in Product Directory'  link above"
var current=0
var offset=0
function showBanner()
{
var text=ar[current]
if(offset<text.length)
 {
    if(text.charAt(offset)==" ")
       offset++
 var halfMessage=text.substring(0,offset+1)
window.status=halfMessage
offset++
timer=setTimeout("showBanner()",speed)
running=true
}
else
{
offset=0
current++
if(current==ar.length)
current=0
timer=setTimeout("showBanner()",pause)
running=true
}
}