<!-- Paste this code into an external JavaScript file named: banner.js.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

//you may add your image file or text below
var item=new Array()
item[0]="<a href='/2009/03/comments.html' class='sideComments'>I am looking for a better understanding of orphanages abroad. It seems like you have visited many different organizations and I am hoping to speak with you about getting involved in one of these agencies. I have researched many different organizations and am struggling to find the one for me. Please let me know if you can help.<b>--Keenan Ryan, Recent Graduate, Univ. of Notre Dame</b></a>"
item[1]="<a href='/2009/03/comments.html' class='sideComments'>Nice job on the video... Changing the world isn't all that bad a thing to do! <b>--Rich Sabreen, Managing Director, Institute for Media and Entertainment, New York City</b></a>"
item[2]="<a href='/2009/03/comments.html' class='sideComments'>Thanks also for making our celebration different and unique. That presentation of the [orphanage] video turned out to be good inside for my siblings. They have some ideas and are now taking very seriously how to make the difference about other people's necessities. <b>--Diana Chambers</b></a>"
item[3]="<a href='/2009/03/comments.html' class='sideComments'>Thank you for sending me this information [about LMM]. I will do what I can to spread this good news about the work you are doing and the people who are involved in these projects. God's blessings upon your work! <b>--Bishop Conley, Archdiocese of Denver</b></a>"
item[4]="<a href='/2009/03/comments.html' class='sideComments'>I have been watching all of your videos...they are very moving, touching, inspiring..they are so real...I am sure they will touch many lives. Maybe some day I'll be able to volunteer at an orphanage like one of these... <b>--Vinita Raja</b></a>"
item[5]="<a href='/2009/03/comments.html' class='sideComments'>Thank you for working so fast on this...we are in dire need of a response.... You are doing way above and beyond the call of duty. You don't know how encouraging your work is to us at the orphanage. You are more than welcomed to come at Christmas...Thank you again for all of your effort, may God reward you now and later. I send you and your family God's blessing. <b>--Fr. Mike Sanchez, Santa Maria Orphanage</b></a>"
item[6]="<a href='/2009/03/comments.html' class='sideComments'>...Thank you so much for the time and effort that you are dedicating to do this in order to help our ministry. We had a great time spending a few days with you here at the children's home. We are looking forward to seeing more posts and eventually the video short!... <b>--Kristin Robles, Founder of Rivers of Mercy Children's Home</b></a>"
var current=0;
var totalItem = item.length;

var ns6=document.getElementById&&!document.all
function changeItem(){
current = Math.floor(Math.random() * totalItem);
if(document.layers){
document.layer1.document.write(item[current])
document.layer1.document.close()
}
if(ns6)document.getElementById("div1").innerHTML=item[current]
{
if(document.all){
div1.innerHTML=item[current]
}
}
//if (current==5) current=0
//else current++
setTimeout("changeItem()",15000)
}
window.onload=changeItem

