var Terms=new Array()
Terms[0]='<b>All the children of this world are our children. --Prof. Dr. Hermann Gmeiner</b>'
Terms[1]='<b>I know no better way of helping children than by giving them a mother, by giving them brothers and sisters, by giving them a house and a village. --Prof. Dr. Hermann Gmeiner</b>'
Terms[2]='<b>The day on which we can say with full conviction that all the children of this world are our children will be the  beginning of peace on earth --Prof. Dr. Hermann Gmeiner</b>'
Terms[3]='<b>There are very many good ways of helping children. Ours is not the only one, but it is one way. We choose to go our way, and it is so straightforward and so simple that the whole world cannot help but understand it. That is the secret of our success. --Prof. Dr. Hermann Gmeiner</b>'
Terms[4]='<b>There must be a way to lead these children back into society, to make them one of our children, to give them a mother again, brothers and sisters, and a home so that they can live again the life of any other child in this world. --Prof. Dr. Hermann Gmeiner</b>'
Terms[5]='<b>Society needs children.Through them society is renewed and adapts to changes in reality. And the quality of our lives depends in no small measure on the quality of the contribution that every individual makes to the care and upbringing of all our children --Prof. Dr. Hermann Gmeiner</b>'

var srsdelay=12000 //delay btw messages
var highlightspeed=20 //10 pixels at a time.

var currentmessage=0
var clipwidth=0

function Myfunction(){
crosssrs.style.clip="rect(0px 0px auto 0px)"
crosssrs.innerHTML=Terms[currentmessage]
highlightmsg()
}

function highlightmsg(){
var msgwidth=crosssrs.offsetWidth
if (clipwidth<msgwidth){
clipwidth+=highlightspeed
crosssrs.style.clip="rect(0px "+clipwidth+"px auto 0px)"
beginclip=setTimeout("highlightmsg()",75)
}
else{
clipwidth=0
clearTimeout(beginclip)
if (currentmessage==Terms.length-1) currentmessage=0
else currentmessage++
setTimeout("Myfunction()",srsdelay)
}
}

function start_srsing(){
crosssrs=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
crosssrsParent=crosssrs.parentNode? crosssrs.parentNode : crosssrs.parentElement
if (parseInt(crosssrs.offsetHeight)>0)
crosssrsParent.style.height=crosssrs.offsetHeight+'px'
else
setTimeout("crosssrsParent.style.height=crosssrs.offsetHeight+'px'",300) 
Myfunction()
}
if (document.all || document.getElementById)
window.onload=start_srsing
