﻿
//Marching foward building Wealth

/* This is for the heading scroll effect */
function bannerScroller()
{
document.getElementById('banner').innerHTML="Marching";
setTimeout("OtherWord()",2000);
}

function OtherWord()
{
document.getElementById('banner').innerHTML="Marching foward";
setTimeout("OtherWord1()",2000);
}

function OtherWord1()
{
document.getElementById('banner').innerHTML="Marching foward building";
setTimeout("OtherWord2()",2000);
}

function OtherWord2()
{
document.getElementById('banner').innerHTML="Marching foward building Wealth";
setTimeout("OtherWord3()",2000);
}

function OtherWord3()
{
document.getElementById('banner').innerHTML='"Marching foward building Wealth"';
}

/*  This is for the heading scroll effect */

