<!-- Begin
function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=16; // How many sites are listed below?

Sites = new makeArray(howmanysites);

<!-- STEP TWO: Use the pattern:  url~Site Title|Description for links  -->

Sites[1] = "http://holylife.healingmindn.com/ChristConsciousness.html~Christ Consciousness|Why You should be like Jesus";
Sites[2] = "http://holylife.healingmindn.com/GodsNames.html~DIRECTV DSL™|Connection too Slow? Go DSL, Cheap!";
Sites[3] = "http://holylife.healingmindn.com/GodsNames.html~Gods Names|In His Own Image";
Sites[4] = "http://holylife.healingmindn.com/GodsWill.html~Gods Will|[Mark 11:23-25]";
Sites[5] = "http://holylife.healingmindn.com/HealingMindN.html~HealingMindN|The Way of the Healing Mind N";
Sites[6] = "http://holylife.healingmindn.com/NewIsraelites.html~New Israel|Important Lesson from History";
Sites[7] = "http://holylife.healingmindn.com/Rahab.html~Rahab|5th Planet from the Sun";
Sites[8] = "http://holylife.healingmindn.com/affirmations.html~Affirmations|The Key to Your True Happiness";
Sites[9] = "http://holylife.healingmindn.com/born-again.html~John 3:3-7|You must be Born Again";
Sites[10] = "http://holylife.healingmindn.com/christ-affirmation.html~Christ Affirmation|Spiritual Health";
Sites[11] = "http://holylife.healingmindn.com/cleansing_breaths.html~Cleansing the SoulCleansing the Soul - Cleansing Breaths|Cleansing Breaths";
Sites[12] = "http://holylife.healingmindn.com/egg-energy.html~Egg shaped energy|Spiritual Health";
Sites[13] = "http://holylife.healingmindn.com/ephesians_6_10-20.html~Armor of God|Spiritual Protection";
Sites[14] = "http://holylife.healingmindn.com/forgiveness.html~Releasing and Forgiveness|Spiritual Clarity";
Sites[15] = "http://holylife.healingmindn.com/personal-prayer.html~Personal Prayer|Spiritual Requests";
Sites[16] = "http://holylife.healingmindn.com/psalm_23.html~Psalm 23:1-6|The Lord is My Shepherd";

function showSites() {
if (w > howmanysites) { w=1; };
var string=Sites[w] + "";
var split1=string.indexOf("~");
var split2=string.indexOf("|");
var url=string.substring(0,split1);
var name=string.substring(split1 + 1,split2);
var word=string.substring(split2 + 1,string.length);
document.form.url.value=url;
document.form.name.value=name;
document.form.word.value=word;
w+=1;
window.setTimeout('showSites()',3000);

// You can change the speed!  3000 = 3 sec delay.  5000 = 5 sec delay, etc. 

}
function visitSite() {
window.location=document.form.url.value;
}
// End -->
