img2 = new Image()


seconds = "5";

function gifOne()
{
    setTimeout("gifTwo()", seconds * 1000);
}
function gifTwo()
{
    document.ghTxt.src = 'images/header/Restoring.gif';
    setTimeout("gifThree()", seconds * 1000);
}
function gifThree()
{
    document.ghTxt.src = 'images/header/Fully.gif';
    setTimeout("gifFour()", seconds * 1000);
}
function gifFour()
{
    document.ghTxt.src = 'images/header/Restoring2.gif';
    setTimeout("gifFive()", seconds * 1000);
}
function gifFive()
{
    document.ghTxt.src = 'images/header/Real.gif';
    setTimeout("gifSix()", seconds * 1000);
}

function gifSix()
{
    document.ghTxt.src = 'images/header/National.gif';
    setTimeout("gifSeven()", seconds * 1000);
}
function gifSeven()
{
    document.ghTxt.src = 'images/header/Restoration.gif';
    setTimeout("gifEight()", seconds * 1000);
}
function gifEight()
{
    document.ghTxt.src = 'images/header/Reliable.gif';
    setTimeout("gifOne()", seconds * 200);
}
