<!-- Begin
var max=0;
function textlist() {
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}

tl = new textlist(
"CMA Japan Team are Home! - See below under 'CMA Japan 2009' - Lots of pics and testimonies in Mission Log.",
"'Dance Camp 2009' Highlight Video Online!.",
"'Video Archive' View highlights & slideshows from Japan Missions and Summer Dance Camps.",
"'Mother/Daughter Tea' CMA Japan Fundraiser Saturday, April 4th",
"CMA - LIVE! Webcast FROM JAPAN. See Video Archive",
"New pics of Hannah and Gwen on their bio pages",
"Cool! - CMA Coloring Book. (See under 'Wearables')"
);

var x = 0; pos = 0;
var l = tl[0].length;
function textticker() {
document.tickform.tickfield.value = tl[x].substring(0, pos) + "_";
if(pos++ == l) {
pos = 0;
setTimeout("textticker()", 2000);
if(++x == max) x = 0;
l = tl[x].length;
} else
setTimeout("textticker()", 50);
}
//  End -->