var upDate = new Array(
[0,"index","22nd August 2010 at 7:00 p.m."],
[1,"services","9th April 2010 at 1 p.m."],
[2,"events","5th April 2010 at 9 p.m."],
[3,"groups","2nd Nov 2009 at 2 p.m."],
[4,"council","2nd Nov 2009 at 2 p.m."],
[5,"finance","2nd Nov 2009 at 2 p.m."],
[6,"youthclub","2nd Nov 2009 at 2 p.m."],
[7,"history","2nd Nov 2009 at 2 p.m."],
[8,"prolife","12th June 2010 at 2.00 p.m."],
[9,"links","14th May 2010 at 11 a.m."],
[10,"homilies","29th August 2010 at 11:15 a.m."],
[11,"benedictusxvi","1st May 2010 at 9 p.m."]
);

function setUpdate(pageNum)
{
pageNum = parseInt(pageNum);
if(pageNum < 0)
{document.write('This page is now closed')}
else
{
var newDate = upDate[pageNum][2];
document.write('(This page was last updated on ' + newDate + ')')
}
}

