function show ()
{
var showtext = new Array(30)
var showlink = new Array(30)
var i;
var max=7;   //³Ì¤j­È

showtext[0] = 'Our Mission'
showtext[1] = 'Parish Registration'
showtext[2] = 'Pastoral Council'
showtext[3] = 'Readings for Today'
showtext[4] = 'Scrip Program'
showtext[5] = 'Young Adults'
showtext[6] = 'Youth Group'

showlink[0] = '#Our'
showlink[1] = 'StStephenRegistrationForm.pdf'
showlink[2] = 'pc.html'
showlink[3] = 'http://www.usccb.org/nab/today.shtml'
showlink[4] = 'scrip2.html'
showlink[5] = 'yam.html'
showlink[6] = 'YouthGroupFlyer9-30-10.pdf'

document.write("<font face=Arial size=2 color=LightSteelBlue class=copyright>| ");

for(i=0;i<max;i++)
   if(showlink[i]=="")
      document.write(showtext[i])
   else
      document.write("<a href=\""+showlink[i]+"\" class=top>"+showtext[i]+"</a> | ");
document.write("</font>");
}
show ()

