function show ()
{
var showtext = new Array(30)
var showlink = new Array(30)
var i;
var max=11;   //³Ì¤j­È

showtext[0] = 'Home'
showtext[1] = 'After School Care'
showtext[2] = 'Alumni'
showtext[3] = 'Annual Fund'
showtext[4] = 'Brown Envelope'
showtext[5] = 'Calendar'
showtext[6] = 'CAP Sessions'
showtext[7] = 'Churchwerks'
showtext[8] = 'Gallery 1'
showtext[9] = 'Gallery 2'
showtext[10] = 'Handbook'

showlink[0] = 'index.html'
showlink[1] = 'after.html'
showlink[2] = 'alumni.html'
showlink[3] = 'annualfund.html'
showlink[4] = 'BE.html'
showlink[5] = 'calendar.html'
showlink[6] = 'http://www.camdendiocese.org/index.php?option=com_jevents&view=cat&task=cat.listevents&Itemid=149'
showlink[7] = 'https://sis.camdendiocese.org/'
showlink[8] = 'gallery1.html'
showlink[9] = 'gallery3.html'
showlink[10] = 'handbook.html'


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 ()

