﻿var miCurrentIndex = -1;
//var homeimgs = new Array("1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg", "6.jpg", "7.jpg");
//var helpdesc = new Array("1Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "2Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "3Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "4Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "5Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "6Lorem Ipsum is simply dummy text of the printing and typesetting industry.", "7Lorem Ipsum is simply dummy text of the printing and typesetting industry.");
//var offerids = new Array("1", "2", "3","4","5","6","7");
function slide(foThis, fiImgIndex) {
    removeOn();
    foThis.className = "on";
    //document.getElementById('divimg').innerHTML = "<img class='padl40 padt50' src='../images/progress2.gif' alt=''/>";
    //document.getElementById('tempimg').src = "../images/" + homeimgs[fiImgIndex];
    //setTimeout("setImage(" + fiImgIndex + ");", 10);
    setImage(fiImgIndex);
}
function removeOn() {
    var links = document.getElementById('slide-nav').getElementsByTagName('a');
    for (var liCnt = 0; liCnt < links.length; liCnt++) {
        links[liCnt].className = "";
    }
}
function setImage(fiImgIndex) {
    document.getElementById('divimg').innerHTML = "<a href='announcement.aspx?id=" + document.getElementById('hdnofferid' + fiImgIndex).value + "' ><img class='h164' src='./email_cms/uploads/" + document.getElementById('hdnimage' + fiImgIndex).value + "' border='0' alt=''/></a>";
    document.getElementById('slide-desc').innerHTML = document.getElementById('hdntitle' + fiImgIndex).value;
    //document.getElementById('divbutton').innerHTML = "<a class='' href='donation.aspx" + helpids[fiImgIndex] + "'>DONATE NOW</a>";
    miCurrentIndex = fiImgIndex;
}

function LoopRequest() {
    var newIndex = miCurrentIndex + 1;
    if (!document.getElementById('hdntitle' + newIndex)) {
        newIndex = 0;
    }
    setImage(newIndex);
    removeOn();
    document.getElementById('slide-nav').getElementsByTagName('a')[newIndex].className = "on";


    window.setTimeout("LoopRequest();", 8000);
}
//LoopRequest();
