var NEWS_TIME = 5;// Seconds var NEWS_ITEMS = new Array(); NEWS_ITEMS[0] = new Object(); NEWS_ITEMS[0].id = 15; NEWS_ITEMS[0].title = "Baptist churches more vulnerable to clergy sex abuse, experts say"; NEWS_ITEMS[0].short = ""; NEWS_ITEMS[1] = new Object(); NEWS_ITEMS[1].id = 3; NEWS_ITEMS[1].title = "Texas Baptists cracking down on clergy sex abuse"; NEWS_ITEMS[1].short = "<p>Group publishes list of convicted workers, makes reporting easier</p>"; NEWS_ITEMS[2] = new Object(); NEWS_ITEMS[2].id = 9; NEWS_ITEMS[2].title = "Former Acadiana Priest, Child Molester Living in Texas"; NEWS_ITEMS[2].short = "<p>A former Acadiana priest, arrested and charged for molesting young boys, has been found, living in a Texas town, just blocks from a church,school, and daycare center.</p>"; NEWS_ITEMS[3] = new Object(); NEWS_ITEMS[3].id = 8; NEWS_ITEMS[3].title = "Police Arrest Gauthe in Texas"; NEWS_ITEMS[3].short = "<p>Former Acadiana priest and pedophile Gilbert Gauthe is in a Texas jail, arrested Wednesday for violating the state's sex offender registration law, said Detective Geoff Price, LaMarque Police Depart-ment spokesman.</p>"; NEWS_ITEMS[4] = new Object(); NEWS_ITEMS[4].id = 14; NEWS_ITEMS[4].title = "Pastor Sex Abuse Lawsuit Settled Out of Court"; NEWS_ITEMS[4].short = ""; NEWS_ITEMS[5] = new Object(); NEWS_ITEMS[5].id = 5; NEWS_ITEMS[5].title = "Pastor accused of abuse: All I want is the truth"; NEWS_ITEMS[5].short = "<p>SEATTLE -- The pastor of a Monroe church has been placed on administrative leave following allegations of sexual abuse of a child.</p>"; NEWS_ITEMS[6] = new Object(); NEWS_ITEMS[6].id = 10; NEWS_ITEMS[6].title = "Priest Accused of Sexual Misconduct"; NEWS_ITEMS[6].short = "<p>DECATUR (MCT) -A deceased Decatur priest has been accused of sexual misconduct with a boy three decades ago, Fort Worth Roman Catholic Diocese officials said Monday.</p>"; NEWS_ITEMS[7] = new Object(); NEWS_ITEMS[7].id = 13; NEWS_ITEMS[7].title = "Texas diocese to pay $775K in priest abuse lawsuit"; NEWS_ITEMS[7].short = ""; NEWS_ITEMS[8] = new Object(); NEWS_ITEMS[8].id = 11; NEWS_ITEMS[8].title = "Diocesan Settlement"; NEWS_ITEMS[8].short = ""; NEWS_ITEMS[9] = new Object(); NEWS_ITEMS[9].id = 6; NEWS_ITEMS[9].title = "Texas Men Urge Priest Abuse Victims to Speak out"; NEWS_ITEMS[9].short = ""; NEWS_ITEMS[10] = new Object(); NEWS_ITEMS[10].id = 7; NEWS_ITEMS[10].title = "Lawsuit Claims Abuse by Priest at West Texas Churches"; NEWS_ITEMS[10].short = ""; NEWS_ITEMS[11] = new Object(); NEWS_ITEMS[11].id = 16; NEWS_ITEMS[11].title = "Prosecutors allege former Central Texas pastor killed wife, made multiple advances toward other women"; NEWS_ITEMS[11].short = ""; NEWS_ITEMS[12] = new Object(); NEWS_ITEMS[12].id = 17; NEWS_ITEMS[12].title = "Catholics, Mormons back synagogue in suit"; NEWS_ITEMS[12].short = ""; NEWS_ITEMS[13] = new Object(); NEWS_ITEMS[13].id = 4; NEWS_ITEMS[13].title = "Former youth minister pleads guilty to abuse"; NEWS_ITEMS[13].short = "<p>SEAFORD, Va. (ABP) -- A former associate pastor and minister of youth at a Southern Baptist church in Virginia pleaded guilty Feb. 11 to sex offenses against two teenage girls.</p>"; var NEWS_CURRENT = false; function NextArticle(){ if (NEWS_CURRENT === false){ NEWS_CURRENT = 0; }else{ NEWS_CURRENT += 1; if (NEWS_CURRENT >= NEWS_ITEMS.length){ NEWS_CURRENT = 0; } } var elem = document.getElementById('news_ticker'); if (elem){ elem.innerHTML = '' + NEWS_ITEMS[NEWS_CURRENT].title + ''; } setTimeout('NextArticle()',NEWS_TIME * 1000); } /* window.onload = function(){ NextArticle(); } */ setTimeout('NextArticle()',500); function preloadImages(){ }