function show ()
{
var showtext = new Array(30)
var showlink = new Array(30)
var i;
var max=11;   //³Ì¤j­È

showtext[0] = 'Home'
showtext[1] = 'News & Updates'
showtext[2] = 'Calendar'
showtext[3] = 'Registration'
showtext[4] = 'Staff'
showtext[5] = 'Preschool'
showtext[6] = 'Bingo'
showtext[7] = 'PTA'
showtext[8] = 'Handbook'
showtext[9] = 'Sports'
showtext[10] = 'Back to the Parish...'

showlink[0] = 'index.html'
showlink[1] = 'news.html'
showlink[2] = 'calendar.html'
showlink[3] = 'registration.html'
showlink[4] = 'staff.html'
showlink[5] = 'preschool.html'
showlink[6] = 'bingo.html'
showlink[7] = 'pta.html'
showlink[8] = 'handbook.html'
showlink[9] = 'sports.html'
showlink[10] = '/index.html'

document.write("<font face=Arial size=2 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 ()
