var newsarr=new Array();

newsarr[0]="Welcome to Vikasumit - Delhi based IT firm";
newsarr[1]="Follow us on Twitter - <a href='http://twitter.com/vikasumit'>http://twitter.com/vikasumit</a> ";
newsarr[2]="Find Vikasumit on Facebook  - <a href='http://www.facebook.com/vikasumit'>http://www.facebook.com/vikasumit</a>";
newsarr[3]="Our thought: Sharing your knowledge only increase it.";
newsarr[4]="Launching a New Corporate Identity on 21st April 2010";

var c=0;
var t;
var timer_is_on=0;


function timedCount()
{
t=setTimeout("timedCount()",10000);
document.getElementById('news').innerHTML=newsarr[c];
c=c+1;
if(c==4)c=0;

}

function doTimer()
{
if (!timer_is_on)
  {
  timer_is_on=1;
  timedCount();
  }
}

