var textArray = new Array()
textArray[0]= "BLOOMBERG<br>IS DATA<br>>>>>";
textArray[1]= "BLOOMBERG<br>IS ANALYTICS<br>>>>>";
textArray[2]= "BLOOMBERG<br>IS NEWS<br>>>>>";
textArray[3]= "BLOOMBERG<br>IS INSIGHT<br>>>>>";

function firsttext()

{
document.getElementById('div_display').innerHTML=textArray[0];
setTimeout("secondtext()",1500);
}

function secondtext()
{
document.getElementById('div_display').innerHTML=textArray[1];
setTimeout("thirdtext()",1500);
}
function thirdtext()
{
document.getElementById('div_display').innerHTML=textArray[2];
setTimeout("fourthtext()",1500);
}
function fourthtext()
{
document.getElementById('div_display').innerHTML=textArray[3];
setTimeout("firsttext()",1500);
}

