function show ()
{
var showtext = new Array(30)
var showlink = new Array(30)
var i;
var max=8;   //³Ì¤j­È

showtext[0] = 'Archives'
showtext[1] = 'Bulletin'
showtext[2] = 'E-Giving'
showtext[3] = 'Legacy Fund'
showtext[4] = 'Marriage Prep'
showtext[5] = 'Ministries'
showtext[6] = 'Ministry Schedules'
showtext[7] = 'Nursing Home'

showlink[0] = 'archives2.html'
showlink[1] = 'bulletin.html'
showlink[2] = 'egiving.html'
showlink[3] = 'legacy.html'
showlink[4] = 'http://www.camdendiocese.org/index.php?option=com_content&view=article&id=801&Itemid=636'
showlink[5] = 'ministries2008.html'
showlink[6] = 'ms.html'
showlink[7] = 'nh.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 ()

