    // constructors

    function Parish(Name, Churches, Priests, Phone, Fax, Email, Url, PriestInResidence) {
        this.Name       = Name        
        this.Churches   = Churches
        this.Priests    = Priests        
        this.Phone      = Phone
        this.Fax        = Fax    
        this.Email      = Email
        this.Url        = Url
        this.PriestInResidence  = PriestInResidence
    }
    
    function Curacy(Name, Parish, Churches, Priests, PriestInResidence) {
        this.Name       = Name
        this.Parish     = Parish
        this.Churches   = Churches
        this.Priests    = Priests
        this.PriestInResidence = PriestInResidence
    }

    function Church(Name, Photo, MassTimes) {
        this.Name            = Name
        this.Photo           = Photo
        this.MassTimes       = MassTimes        
    }

    function PriestRecord(Surname,Firstname,Ordination,Title,Address,Phone,Fax,Mobile,Email,Parish,Appointment1,Appointment2,Appointment3,Appointment4,Photo,Status) {
        this.Surname        = Surname
        this.Firstname      = Firstname
        this.Title          = Title
        this.Ordination     = Ordination
        this.Address        = Address
        this.Phone          = Phone        
        this.Fax            = Fax
        this.Mobile         = Mobile
        this.Email          = Email
        this.Parish         = Parish
        this.Appointment1   = Appointment1
        this.Appointment2   = Appointment2
        this.Appointment3   = Appointment3
        this.Appointment4   = Appointment4
        this.Photo          = Photo
        this.Status         = Status        
    }

    Priests      = new Object()  // container to hold details of diocesan priests
    OtherPriests = new Object()  // container to hold details of all other priests
    DeceasedPriests = new Object()  // container to hold details of all other priests
    Parishes     = new Object()  // container to hold details of parishes  
    Curacies     = new Object()  // container to hold details of curacies
    Churches     = new Object()  // container to hold details of churches

// Priests

    var Priest = new PriestRecord();
    Priest.Surname      = "Banville"
    Priest.Firstname    = "Rev Patrick"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 02/06/82"
    Priest.Address      = "St Leonard’s, Saltmills, New Ross, Co Wexford"
    Priest.Phone        = "051-562135 "
    Priest.Mobile       = "087-2643119"
    Priest.Email        = "pbanville@eircom.net"
    Priest.Parish       = "St Leonard’s (Ballycullane)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Banville.jpg"
    Priest.Status       = "Active"    
    Priests["Patrick Banville"]     = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Barros"
    Priest.Firstname    = "Rev Gabriel"
    Priest.Title        = "IVE CC"
    Priest.Ordination   = ""
    Priest.Address      = "Kilmyshall, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9377188"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Kilmyshall (Bunclody)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Gabriel Barros.jpg"
    Priest.Status       = "Active"    
    Priests["Gabriel Barros"]  = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Berney"
    Priest.Firstname    = "Rev Donal"
    Priest.Title        = "CC"
    Priest.Ordination   = "Craanford (Maynooth): 19/06/82"
    Priest.Address      = "Crossbridge, Tinahely, Co Wicklow"
    Priest.Phone        = "0402-38138"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Crossbridge (Kilaveney)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Donal Berney.jpg"
    Priest.Status       = "Active"    
    Priests["Donal Berney"]  = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Boggan"
    Priest.Firstname    = "Rev Matthew"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 06/06/93"
    Priest.Address      = "Galbally, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9247814"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Galbally (Bree)"
    Priest.Appointment1 = "Director, Ferns Diocesan Pilgrimage to Lourdes"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Matthew Boggan.jpg"
    Priest.Status       = "Active"
    Priests["Matthew Boggan"] = Priest
 
    Priest = new PriestRecord();
    Priest.Surname      = "Brennan"
    Priest.Firstname    = "Rev Thomas"
    Priest.Title        = ""
    Priest.Ordination   = "Clonard (Maynooth): 28/07/85"
    Priest.Address      = "c/o Bishop’s House, Wexford"
    Priest.Phone        = "053-9122177"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Sabbatical"
    Priests["Thomas Brennan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Broaders"
    Priest.Firstname    = "V Rev Brian"
    Priest.Title        = "Adm"
    Priest.Ordination   = "Wexford: 03/06/84"
    Priest.Address      = "St Senan’s, Templeshannon, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9237611"
    Priest.Mobile       = ""
    Priest.Email        = "b.broaders@indigo.ie"
    Priest.Parish       = "Enniscorthy St Senan’s"
    Priest.Appointment1 = "Chaplain, Colaiste Brid, Enniscorthy"
    Priest.Appointment2 = "Spiritual Director, Ferns Diocesan Pilgrimage to Lourdes"
    Priest.Appointment3 = ""
    Priest.Photo        = "Brian Broaders.jpg"
    Priest.Status       = "Active"
    Priests["Brian Broaders"] = Priest
 
    Priest = new PriestRecord();
    Priest.Surname      = "Browne"
    Priest.Firstname    = "Rev Denis"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 02/06/91"
    Priest.Address      = "Paróqiua Santo Antônio, 121  / 78345-000 Castanheira / Mato Grosso, Brazil"
    Priest.Phone        = "0055 (0) 6635811210"
    Priest.Mobile       = "Skype:denisbrowne"
    Priest.Email        = "carnew@gmail.com / www.carnew.blogspot.com"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Denis Browne.jpg"
    Priest.Status       = "Elsewhere"
    Priests["Denis Browne"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Browne"
    Priest.Firstname    = "Rev Patrick"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford : 06/06/82"
    Priest.Address      = "St Senan’s Templeshannon, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9237611"
    Priest.Mobile       = ""
    Priest.Email        = "pdbrowne@indigo.ie"
    Priest.Parish       = "Enniscorthy St Senan’s"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Browne.jpg"
    Priest.Status       = "Active"
    Priests["Patrick Browne"]  = Priest
     
    Priest = new PriestRecord();
    Priest.Surname      = "Butler"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 28/05/78"
    Priest.Address      = "Ballygarrett, Co Wexford"
    Priest.Phone        = "053-9427330, Office Tel/Fax 053-9427537"
    Priest.Mobile       = "086-8629542"
    Priest.Email        = "cosher@eircom.net"
    Priest.Parish       = "Ballygarrett"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Butler.jpg"
    Priest.Status       = "Active"
    Priests["James Butler"] = Priest
   
    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "V Rev Felix Canon"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 05/06/55"
    Priest.Address      = "Monaseed, Gorey, Co Wexford"
    Priest.Phone        = "053-9428207"
    Priest.Mobile       = "087-6428177"
    Priest.Email        = ""
    Priest.Parish       = "Monaseed (Craanford)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Felix Byrne.jpg"
    Priest.Status       = "Active"
    Priests["Felix Byrne"]   = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford : 05/06/60"
    Priest.Address      = "Ballylannon, Wellington Bridge, Co Wexford"
    Priest.Phone        = "051-560761"
    Priest.Mobile       = "087-9529993"
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Byrne.jpg"
    Priest.Status       = "Retired"
    Priests["James Byrne"]   = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "Rev John"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 03/06/90"
    Priest.Address      = "Monamolin, Gorey, Co Wexford"
    Priest.Phone        = "053-9389223"
    Priest.Mobile       = ""
    Priest.Email        = "jnbyrn@eircom.net"
    Priest.Parish       = "Monamolin (Kilmuckridge)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John Byrne.jpg"
    Priest.Status       = "Active"
    Priests["John Byrne"]    = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "V Rev Martin"
    Priest.Title        = "PP"
    Priest.Ordination   = "Rathangan (Wexford): 17/06/76"
    Priest.Address      = "Ballymore, Killinick, Co Wexford"
    Priest.Phone        = "053-9158966"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Ballymore/Mayglass"
    Priest.Appointment1 = "Contact Person for Retired Priests"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Martin Byrne.jpg"
    Priest.Status       = "Active"
    Priests["Martin Byrne"]  = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "V Rev Michael"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 9/6/74"
    Priest.Address      = "Cushinstown, Foulksmills, Co Wexford"
    Priest.Phone        = "051-428347"
    Priest.Mobile       = "087-2491460"
    Priest.Email        = ""
    Priest.Parish       = "Cushinstown"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Michael Byrne Cushinstown.jpg"
    Priest.Status       = "Active"
    Priests["Michael Byrne PP"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "Rev Michael"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford : 06/06/93"
    Priest.Address      = "Boolavogue, Ferns, Co Wexford"
    Priest.Phone        = "053-9366282"
    Priest.Mobile       = "087-2344937"
    Priest.Email        = ""
    Priest.Parish       = "Boolavogue (Monageer)"
    Priest.Appointment1 = "Chaplain, Ferns Pioneer Council"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Michael Byrne Boolavogue.jpg"
    Priest.Status       = "Active"
    Priests["Michael Byrne CC"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Byrne"
    Priest.Firstname    = "Rev William"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 07/06/81"
    Priest.Address      = "Coolfancy, Tinahely, Co Wicklow "
    Priest.Phone        = "0402-34891"
    Priest.Mobile       = ""
    Priest.Email        = "greywill@eircom.net"
    Priest.Parish       = "Shillelagh (Carnew)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "William Byrne.jpg"
    Priest.Status       = "Active"
    Priests["William Byrne"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cahill"
    Priest.Firstname    = "Rev Kevin"
    Priest.Title        = "DCL CC"
    Priest.Ordination   = "Gorey (Maynooth): 27/06/82"
    Priest.Address      = "Ballymitty, Co Wexford"
    Priest.Phone        = "051-561128"
    Priest.Fax          = ""
    Priest.Mobile       = ""
    Priest.Email        = "kcahill@ferns.ie"
    Priest.Parish       = "Ballymitty (Bannow)"
    Priest.Appointment1 = "Chancellor, Diocesan Office, Wexford 053-9165108"
    Priest.Appointment2 = "Dublin Regional Marriage Tribunal"
    Priest.Appointment3 = ""
    Priest.Photo        = "Kevin Cahill.jpg"
    Priest.Status       = "Active"
    Priests["Kevin Cahill"]  = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Carroll"
    Priest.Firstname    = "Rev John"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford (Maynooth): 16/06/91"
    Priest.Address      = "Barntown, Wexford"
    Priest.Phone        = "053-9122177 (Office)<br>053-9120853 (Barntown) "
    Priest.Fax          = "053-9123436"
    Priest.Mobile       = "087 9898424"
    Priest.Email        = "jc@ferns.ie"
    Priest.Parish       = "Barntown (Glynn)"
    Priest.Appointment1 = "Diocesan Secretary Bishop’s House 053-9122177"
    Priest.Appointment2 = "Diocesan Communications Officer"
    Priest.Appointment3 = "Diocesan Representative for Trocaire"
    Priest.Appointment4 = "Chaplain, Knockeen Nursing Home"    
    Priest.Photo        = "John Carroll.jpg"
    Priest.Status       = "Active"
    Priests["John Carroll"]  = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Casey"
    Priest.Firstname    = "V Rev Martin"
    Priest.Title        = "PP"
    Priest.Ordination   = "Tralee: 09/06/74"
    Priest.Address      = "Woolgreen, Carnew, Arklow, Co Wicklow "
    Priest.Phone        = "053-9426888"
    Priest.Mobile       = "086-8371766"
    Priest.Email        = ""
    Priest.Parish       = "Carnew/Tomacork"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Martin Casey.jpg"
    Priest.Status       = "Active"
    Priests["Martin Casey"]  = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cashman"
    Priest.Firstname    = "Rev James"
    Priest.Title        = ""
    Priest.Ordination   = "Waterford: 01/06/86"
    Priest.Address      = "1 Pinewood, Clonard, Wexford"
    Priest.Phone        = "053-9147681"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "Chaplain Loreto Community Wexford 053-9143470"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Cashman.jpg"
    Priest.Status       = "Active"
    Priests["James Cashman"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cleary"
    Priest.Firstname    = "V Rev Lorenzo Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 03/06/56"
    Priest.Address      = "The Stables, Hayestown, Wexford"
    Priest.Phone        = "053-9144346 "
    Priest.Mobile       = ""
    Priest.Email        = "lorenzoc@iol.ie"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Lorenzo Cleary.jpg"
    Priest.Status       = "Retired"
    Priests["Lorenzo Cleary"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cogley"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Rosslare Harbour (Maynooth): 22/06/80"
    Priest.Address      = "Oylegate, Co Wexford"
    Priest.Phone        = "053-9138163"
    Priest.Mobile       = "086-2471063"
    Priest.Email        = "frjimcogley@hotmail.com"
    Priest.Parish       = "Oylegate"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Cogley.jpg"
    Priest.Status       = "Active"
    Priests["James Cogley"]  = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Comiskey"
    Priest.Firstname    = "Most Rev Brendan"
    Priest.Title        = "DD"
    Priest.Ordination   = "Tanagh, Monaghan: 25/06/61"
    Priest.Address      = "c/o Bishop’s House, Wexford"
    Priest.Phone        = "053-9122177"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Comiskey2.jpg"
    Priest.Status       = "Retired"
    Priests["Brendan Comiskey"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Conroy"
    Priest.Firstname    = "Rev Thomas"
    Priest.Title        = ""    
    Priest.Ordination   = "Wexford: 02/06/91"
    Priest.Address	= "Coolnamona Road, Craanford, Gorey, Co Wexford"
    Priest.Phone        = ""
    Priest.Mobile       = "087-4134063"
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Tommy Conroy.jpg"
    Priest.Status       = "Sabbatical"
    Priests["Thomas Conroy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Corish"
    Priest.Firstname    = "Rt Rev Mgr Patrick"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth: 17/06/45"
    Priest.Address      = "St Patrick’s College, Maynooth, Co Kildare"
    Priest.Phone        = "01 6285222"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Corish.jpg"
    Priest.Status       = "Retired"
    Priests["Patrick Corish"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cosgrave"
    Priest.Firstname    = "V Rev William"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 20/06/65"
    Priest.Address      = "Monageer, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9233530"
    Priest.Mobile       = "086-3765136"
    Priest.Email        = "cosgravebill@eircom.net"
    Priest.Parish       = "Monageer"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "William Cosgrave.jpg"
    Priest.Status       = "Active"
    Priests["William Cosgrave"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Curtis"
    Priest.Firstname    = "V Rev James L"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth (Wexford): 21/06/64"
    Priest.Address      = "3 Oldtown Court, Clongeen, Foulksmills, Co Wexford"
    Priest.Phone        = "051-565123"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Curtis.jpg"
    Priest.Status       = "Retired"
    Priests["James L Curtis"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Curtis"
    Priest.Firstname    = "V Rev James B Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth (Wexford): 06/06/54"
    Priest.Address      = "Dulce Domum, Rathjarney, Drinagh, Co Wexford"
    Priest.Phone        = "053-9158183"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James B Curtis.jpg"
    Priest.Status       = "Retired"
    Priests["James B Curtis"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Curtis"
    Priest.Firstname    = "V Rev Thomas J Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 05/06/55"
    Priest.Address      = "2 The Hollows, Lugduff, Tinahely, Co Wicklow"
    Priest.Phone        = "0402-38610"
    Priest.Mobile       = "087-2079454"
    Priest.Email        = "curtisthomas@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thomas Curtis.jpg"
    Priest.Status       = "Retired"
    Priests["Thomas Curtis"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cushen"
    Priest.Firstname    = "V Rev Bernard"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 09/06/74"
    Priest.Address      = "Ramsgrange, Co Wexford"
    Priest.Phone        = "051-389148"
    Priest.Mobile       = "087-2129961"
    Priest.Email        = "bmcushen@eircom.net"
    Priest.Parish       = "Ramsgrange"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Bernard Cushen.jpg"
    Priest.Status       = "Active"
    Priests["Bernard Cushen"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Cushen"
    Priest.Firstname    = "V Rev Patrick"
    Priest.Title        = "PP VF"
    Priest.Ordination   = "Wexford: 06/06/71"
    Priest.Address      = "Parochial House, Ferns, Co Wexford"
    Priest.Phone        = "053-9366152"
    Priest.Mobile       = "087-2387559"
    Priest.Email        = "paddycushen@eircom.net"
    Priest.Parish       = "Ferns"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Cushen.jpg"
    Priest.Status       = "Active"
    Priests["Patrick Cushen"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Dalton"
    Priest.Firstname    = "V Rev Thomas"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 05/06/94"
    Priest.Address      = "Rathangan, Duncormick, Co Wexford"
    Priest.Phone        = "051-563104"
    Priest.Mobile       = "087-2388276"
    Priest.Email        = "tom.dalton@indigo.ie"
    Priest.Parish       = "Cleariestown (Rathangan)"
    Priest.Appointment1 = "Diocesan Master of Ceremonies"
    Priest.Appointment2 = "Chaplain, Intellectual Disability Services"
    Priest.Appointment3 = "Centering Prayer Co-ordinator"
    Priest.Appointment4 = "Chaplain, Presentation Secondary School, Wexford"
    Priest.Photo        = "Tom Dalton.jpg"
    Priest.Status       = "Active"
    Priests["Tom Dalton"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Desmond"
    Priest.Firstname    = "V Rev Diarmuid"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/65"
    Priest.Address      = "Kilrane, Co Wexford"
    Priest.Phone        = "053-9133128"
    Priest.Mobile       = ""
    Priest.Email        = "amaru@iol.ie"
    Priest.Parish       = "Kilrane"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Diarmuid Desmond.jpg"
    Priest.Status       = "Active"
    Priests["Diarmuid Desmond"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "de Vál"
    Priest.Firstname    = "V Rev Séamas Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth : 18/06/50"
    Priest.Address      = "1 Irish St, Bunclody, Co Wexford"
    Priest.Phone        = "053-9376140"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "Diocesan Archivist"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Séamas De Val.jpg"
    Priest.Status       = "Retired"
    Priests["Séamas de Vál"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Devereux"
    Priest.Firstname    = "Rev Seán"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford : 07/06/87"
    Priest.Address      = "6 Meadowvale, Coolcotts, Wexford"
    Priest.Phone        = "053-9143932"
    Priest.Mobile       = ""
    Priest.Email        = "sean_devereux@eircom.net"
    Priest.Parish       = "Clonard"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Sean Devereux.jpg"
    Priest.Status       = "Active"
    Priests["Seán Devereux"] = Priest
   
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "V Rev Denis"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/71"
    Priest.Address      = "Kilmore, Co Wexford"
    Priest.Phone        = "053-9135181"
    Priest.Mobile       = "087-9260430"
    Priest.Email        = "denis2doyle@eircom.net"
    Priest.Parish       = "Kilmore"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Denis Doyle.jpg"
    Priest.Status       = "Active"
    Priests["Denis Doyle"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "Rev James"
    Priest.Title        = "CC"
    Priest.Ordination   = "Murrintown: 25/6/06"
    Priest.Address      = "Market Square, Bunclody, Co Wexford"
    Priest.Phone        = "053-9377264"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Bunclody"
    Priest.Appointment1 = "Diocesan Representative FDYS Youth Work Ireland"
    Priest.Appointment2 = "Diocesan Representative World Youth Day 2008"
    Priest.Appointment3 = ""
    Priest.Photo        = "James Doyle.jpg"
    Priest.Status       = "Active"
    Priests["James Doyle"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "Rev J J"
    Priest.Title        = ""
    Priest.Ordination   = "Marshalstown: 24/06/01"
    Priest.Address      = "c/o Bishop's House, Wexford"
    Priest.Phone        = "053-9122177"
    Priest.Fax          = ""
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "J J Doyle.jpg"
    Priest.Status       = "Sabbatical"   
    Priests["J J Doyle"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "Rev Martin"
    Priest.Title        = "CC"
    Priest.Ordination   = "Bunclody: 15/06/86"
    Priest.Address      = "1 Clonard Park, Wexford"
    Priest.Phone        = "053-9147686"
    Priest.Mobile       = ""
    Priest.Email        = "mparkdoyle1@hotmail.com"
    Priest.Parish       = "Clonard"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Martin Doyle.jpg"
    Priest.Status       = "Active"
    Priests["Martin Doyle"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "Rev Michael A"
    Priest.Title        = "CC"
    Priest.Ordination   = "Terrerath: 29/05/94"
    Priest.Address      = "The Presbytery, Ballyfad, Gorey, Co Wexford"
    Priest.Phone        = "0402-37124"
    Priest.Mobile       = ""
    Priest.Email        = "frmichaelanthonydoyle@yahoo.com"
    Priest.Parish       = "Ballyfad (Kilanerin)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Michael Doyle.jpg"
    Priest.Status       = "Active"
    Priests["Michael Doyle"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "V Rev Oliver J"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 28/05/78"
    Priest.Address      = "St Ann’s Cathedral / 213 3rd Avenue North, PO Box 1708 / Great Falls, MT 59403 17085 USA"
    Priest.Phone        = ""
    Priest.Mobile       = ""
    Priest.Email        = "Ooduill@aol.com"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Oliver Doyle.jpg"
    Priest.Status       = "Elsewhere"
    Priests["Oliver Doyle"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "Rev Thaddeus"
    Priest.Title        = ""
    Priest.Ordination   = "Craanford (Maynooth): 10/06/74"
    Priest.Address      = "House of Mission, Shillelagh,Co Wicklow"
    Priest.Phone        = "053-9429926"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thaddeus Doyle.jpg"
    Priest.Status       = "Active"
    Priests["Thaddeus Doyle"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Doyle"
    Priest.Firstname    = "V Rev Thomas"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 03/06/62"
    Priest.Address      = "Craanford, Gorey, Co Wexford"
    Priest.Phone        = "053-9428163"
    Priest.Mobile       = "086-3564530"
    Priest.Email        = ""
    Priest.Parish       = "Craanford"
    Priest.Appointment1 = "Director, Fatima Pilgrimage"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thomas Doyle.jpg"
    Priest.Status       = "Active"
    Priests["Thomas Doyle"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Eustace"
    Priest.Firstname    = "V Rev Thomas"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 05/06/60"
    Priest.Address      = "The Cools, Barntown, Wexford"
    Priest.Phone        = "053-9134431"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thomas Eustace.jpg"
    Priest.Status       = "Retired"
    Priests["Thomas Eustace"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Fegan"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "Adm"
    Priest.Ordination   = "East Wall Dublin (Wexford): 22/06/86"
    Priest.Address      = "The Presbytery, 12 School Street,Wexford"
    Priest.Phone        = "053-9122055"
    Priest.Fax          = "053-9121724"
    Priest.Mobile       = "087-2395087"
    Priest.Email        = "james.Fegan@indigo.ie"
    Priest.Parish       = "Wexford"
    Priest.Appointment1 = "Chaplain, Loreto Secondary School and Our Lady of Fatima School, Wexford"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Fegan.jpg"
    Priest.Status       = "Active"    
    Priests["James Fegan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Finn"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/76"
    Priest.Address      = "Crossabeg, Co Wexford"
    Priest.Phone        = "053-9159015"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Ballymurn (Crossabeg)"
    Priest.Appointment1 = "Diocesan Vocations Director"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Finn.jpg"
    Priest.Status       = "Active"
    Priests["James Finn"] = Priest

        
    Priest = new PriestRecord();
    Priest.Surname      = "Fitzpatrick"
    Priest.Firstname    = "Rev James"
    Priest.Title        = "CC"
    Priest.Ordination   = "Gorey (Maynooth): 28/08/94"
    Priest.Address      = "Galbally, Curracloe, Co Wexford"
    Priest.Phone        = "053-9137140"
    Priest.Mobile       = "087-2529236"
    Priest.Email        = "revfitz@eircom.net"
    Priest.Parish       = "Screen (Castlebridge)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Fitzpatrick.jpg"
    Priest.Status       = "Active"
    Priests["James Fitzpatrick"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Flynn"
    Priest.Firstname    = "Rev William"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 02/06/91"
    Priest.Address      = "The Presbytery, Gorey, Co Wexford"
    Priest.Phone        = "053-9421117"
    Priest.Mobile       = ""
    Priest.Email        = "billyf@iolfree.ie"
    Priest.Parish       = "Gorey"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "William Flynn.jpg"
    Priest.Status       = "Active"
    Priests["William Flynn"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Forde"
    Priest.Firstname    = "V Rev Walter"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 16/06/68"
    Priest.Address      = "Castlebridge, Co Wexford"
    Priest.Phone        = "053-9159769"
    Priest.Fax          = "053-9159158"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Castlebridge"
    Priest.Appointment1 = "Chairman, Diocesan Justice & Peace Committee"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Walter Forde.jpg"
    Priest.Status       = "Active"    
    Priests["Walter Forde"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "French"
    Priest.Firstname    = "V Rev John"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 05/06/60"
    Priest.Address      = "Horeswood, New Ross, Co Wexford"
    Priest.Phone        = "051-593916"
    Priest.Mobile       = ""
    Priest.Email        = "frfrench@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John French.jpg"
    Priest.Status       = "Retired"
    Priests["John French"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Furlong"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 02/06/69"
    Priest.Address      = "Parochial House, Raheen, Co Wexford"
    Priest.Phone        = "053 9240677"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Raheen (Newbawn)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    Priests["James Furlong"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Furlong"
    Priest.Firstname    = "Rev Odhrán"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 28/05/95"
    Priest.Address      = "Rathgarogue, New Ross, Co Wexford"
    Priest.Phone        = "051-424521"
    Priest.Fax          = ""
    Priest.Mobile       = ""
    Priest.Email        = "odhranfurlong@gmail.com"
    Priest.Parish       = "Rathgarogue (Cushinstown)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Appointment4 = ""
    Priest.Photo        = "Odhrán Furlong.jpg"
    Priest.Status       = "Active"    
    Priests["Odhrán Furlong"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Gahan"
    Priest.Firstname    = "Rev Dermot"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 28/05/95"
    Priest.Address      = "Ballaghkeene, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9136200"
    Priest.Mobile       = ""
    Priest.Email        = "dgahan1@hotmail.com"
    Priest.Parish       = "Ballaghkeene (Oulart)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Dermot Gahan.jpg"
    Priest.Status       = "Active"
    Priests["Dermot Gahan"] = Priest
        
    Priest = new PriestRecord();
    Priest.Surname      = "Gahan"
    Priest.Firstname    = "V Rev Raymond"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 02/06/68"
    Priest.Address      = "Kilaveney, Tinahely, Co Wicklow"
    Priest.Phone        = "0402-38188"
    Priest.Mobile       = ""
    Priest.Email        = "raygahan@eircom.net"
    Priest.Parish       = "Kilaveney"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Raymond Gahan.jpg"
    Priest.Status       = "Active"
    Priests["Raymond Gahan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Glynn"
    Priest.Firstname    = "V Rev Matthias"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth (Wexford): 21/06/64"
    Priest.Address      = "Tagoat, Co Wexford"
    Priest.Phone        = "053-9131139"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Tagoat"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Matthias Glynn.jpg"
    Priest.Status       = "Active"
    Priests["Matthias Glynn"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Gorman"
    Priest.Firstname    = "V Rev Sean"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 28/05/78"
    Priest.Address      = "Taghmon, Co Wexford"
    Priest.Phone        = "053-9134123"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Taghmon"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Sean Gorman.jpg"
    Priest.Status       = "Active"
    Priests["Sean Gorman"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Hammel"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/65"
    Priest.Address      = "Annacurra, Tinahely, Co Wicklow"
    Priest.Phone        = "0402-36119"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Annacurra"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Hammel.jpg"
    Priest.Status       = "Active"
    Priests["James Hammel"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Hartley"
    Priest.Firstname    = "V Rev Noel Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 05/06/55"
    Priest.Address      = "10 Donovan’s Wharf, Crescent Quay, Wexford"
    Priest.Phone        = "053-9140046"
    Priest.Mobile       = "087-2368481"
    Priest.Email        = "nlhart@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Noel Hartley.jpg"
    Priest.Status       = "Retired"
    Priests["Noel Hartley"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Hayden"
    Priest.Firstname    = "Rev Christopher"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 02/06/91"
    Priest.Address      = "Irish College, Rome"
    Priest.Phone        = ""
    Priest.Mobile       = ""
    Priest.Email        = "chrismh@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Chris Hayden.jpg"
    Priest.Status       = "Elsewhere"
    Priests["Chris Hayden"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Hayes"
    Priest.Firstname    = "V Rev Richard"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth (Wexford): 21/06/64"
    Priest.Address      = "Cloughbawn, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9244115"
    Priest.Mobile       = "087-9861645"
    Priest.Email        = "cloughbawn1@eircom.net"
    Priest.Parish       = "Cloughbawn"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Richard Hayes.jpg"
    Priest.Status       = "Active"
    Priests["Richard Hayes"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Howell"
    Priest.Firstname    = "V Rev William"
    Priest.Title        = "PP"
    Priest.Ordination   = "Camolin (Maynooth): 08/06/74"
    Priest.Address      = "Parochial House, Gorey, Co Wexford"
    Priest.Phone        = "053-9421112, Office Fax 053-9480459"
    Priest.Mobile       = ""
    Priest.Email        = "whowell@gofree.indigo.ie"
    Priest.Parish       = "Gorey"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "William Howell.jpg"
    Priest.Status       = "Active"
    Priests["William Howell"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Jones"
    Priest.Firstname    = "V Rev Aidan G"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth (Wexford): 21/06/64"
    Priest.Address      = "Parochial House, <br/>Bunclody, <br/>Co Wexford"
    Priest.Phone        = "053-9377319"
    Priest.Mobile       = ""
    Priest.Email        = "agjoneskhs@gmail.com"
    Priest.Parish       = "Bunclody"
    Priest.Appointment1 = "Chairperson, History & Archive Group"
    Priest.Appointment2 = "Co-Chairperson, Ecumenical Committee"
    Priest.Appointment3 = ""
    Priest.Photo        = "Aidan Jones.jpg"
    Priest.Status       = "Active"
    Priests["Aidan Jones"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Jordan"
    Priest.Firstname    = "V Rev John"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 01/06/69"
    Priest.Address      = "Oulart, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9136139"
    Priest.Mobile       = "087-2388417"
    Priest.Email        = "jjjordan01@gmail.com"
    Priest.Parish       = "Oulart"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John Jordan.jpg"
    Priest.Status       = "Active"
    Priests["John Jordan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Jordan"
    Priest.Firstname    = "V Rev Liam"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 02/06/63"
    Priest.Address      = "Coolamain, Oylegate, Co Wexford"
    Priest.Phone        = "053-9177743"
    Priest.Mobile       = ""
    Priest.Email        = "wtjordan26@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Liam Jordan.jpg"
    Priest.Status       = "Retired"
    Priests["Liam Jordan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Kavanagh"
    Priest.Firstname    = "V Rev Aidan"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 28/04/57"
    Priest.Address      = "Bree, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9247843"
    Priest.Mobile       = "087-6343258"
    Priest.Email        = "fraidankav@eircom.net"
    Priest.Parish       = "Bree"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Aidan Kavanagh.jpg"
    Priest.Status       = "Active"
    Priests["Aidan Kavanagh"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Kavanagh"
    Priest.Firstname    = "V Rev Joseph"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 09/06/74"
    Priest.Address      = "Camolin, Co Wexford"
    Priest.Phone        = "053-9383136"
    Priest.Mobile       = "087-2324549"
    Priest.Email        = "josephkav@eircom.net"
    Priest.Parish       = "Camolin"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Joseph Kavanagh.jpg"
    Priest.Status       = "Active"
    Priests["Joseph Kavanagh"] = Priest
 
    Priest = new PriestRecord();
    Priest.Surname      = "Kehoe"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Castledockrell (Rome): 04/07/71"
    Priest.Address      = "Bannow, Co Wexford"
    Priest.Phone        = "051-561192"
    Priest.Mobile       = "087-2599473"
    Priest.Email        = "jbannow@eircom.net"
    Priest.Parish       = "Bannow"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Kehoe.jpg"
    Priest.Status       = "Active"
    Priests["James Kehoe"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Kehoe"
    Priest.Firstname    = "Rt Rev Mgr Joseph L"
    Priest.Title        = "PA"
    Priest.Ordination   = "Wexford: 31/05/59"
    Priest.Address      = "13 Priory Court, Spawell Rd, Wexford"
    Priest.Phone        = ""
    Priest.Fax          = ""
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Joseph Kehoe.jpg"
    Priest.Status       = "Retired"    
    Priests["Joseph Kehoe"] = Priest 

    Priest = new PriestRecord();
    Priest.Surname      = "Kehoe"
    Priest.Firstname    = "Rev Tomás"
    Priest.Title        = "CC"
    Priest.Ordination   = "Bree: 29/06/08"
    Priest.Address      = "The Presbytery, New Ross, Co Wexford"
    Priest.Phone        = "051-447086"
    Priest.Fax          = ""
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "New Ross"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Tomas Kehoe.jpg"
    Priest.Status       = "Active"    
    Priests["Tomás Kehoe"] = Priest       

    Priest = new PriestRecord();
    Priest.Surname      = "Kelly"
    Priest.Firstname    = "V Rev Denis"
    Priest.Title        = "Adm"
    Priest.Ordination   = "Wexford: 05/06/83"
    Priest.Address      = "St Aidan’s Cathedral, Enniscorthy,Co Wexford"
    Priest.Phone        = "053-9235777"
    Priest.Mobile       = ""
    Priest.Email        = "kellyballybrittas@hotmail.com"
    Priest.Parish       = "Enniscorthy St Aidan’s"
    Priest.Appointment1 = "Chaplain St Mary’s CBS Secondary School, Enniscorthy"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Denis Kelly.jpg"
    Priest.Status       = "Active"
    Priests["Denis Kelly"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Kenny"
    Priest.Firstname    = "Rt Rev Mgr Donald"
    Priest.Title        = "CC"
    Priest.Ordination   = "Atlanta: 08/12/84"
    Priest.Address      = "Ballykelly, New Ross, Co Wexford"
    Priest.Phone        = "051-425455 "
    Priest.Mobile       = "087-6567276"
    Priest.Email        = "donkenny1@gmail.com"
    Priest.Parish       = "Ballykelly (Horeswood)"
    Priest.Appointment1 = "Chaplain Ramsgrange Community School 051-389211"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Donald Kenny.jpg"
    Priest.Status       = "Active"
    Priests["Donald Kenny"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Kinsella"
    Priest.Firstname    = "V Rev Tobias"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth: 17/06/56"
    Priest.Address      = "Atlanta Nursing Home, Sidmonton Rd, Bray, Co Wicklow"
    Priest.Phone        = ""
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Tobias Kinsella.jpg"
    Priest.Status       = "Retired"
    Priests["Tobias Kinsella"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Kirby"
    Priest.Firstname    = "V Rev Brendan Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 08/06/48"
    Priest.Address      = "9 Kilmantin Hill, Wicklow"
    Priest.Phone        = "0404-68949"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Retired"
    Priests["Brendan Kirby"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Laffan"
    Priest.Firstname    = "Rev Sean"
    Priest.Title        = "MSC CC"
    Priest.Ordination   = "Moyne Pk, Ballyglunin, Co Galway: 03/09/1961"
    Priest.Address      = "Gusserane, New Ross, Co Wexford"
    Priest.Phone        = "051-562786"
    Priest.Mobile       = ""
    Priest.Email        = "s.f.x.laffan@gmail.com"
    Priest.Parish       = "Gusserane (Ballycullane)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    Priests["Sean Laffan"] = Priest


    Priest = new PriestRecord();
    Priest.Surname      = "Larkin"
    Priest.Firstname    = "V Rev Séamus"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 19/06/60"
    Priest.Address      = "Kilmuckridge, Co Wexford"
    Priest.Phone        = "053-9130116"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Kilmuckridge"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    Priests["Séamus Larkin"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Lawless"
    Priest.Firstname    = "Rev Richard"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 05/06/88"
    Priest.Address      = "St Aidan’s Cathedral, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9235777"
    Priest.Mobile       = ""
    Priest.Email        = "lawlessr@gofree.indigo.ie"
    Priest.Parish       = "Enniscorthy St Aidan’s"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Richard Lawless.jpg"
    Priest.Status       = "Active"
    Priests["Richard Lawless"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Lennon"
    Priest.Firstname    = "Rt Rev Mgr Denis"
    Priest.Title        = "PP VF"
    Priest.Ordination   = "Wexford: 04/06/67"
    Priest.Address      = "39 Beechlawn, Wexford"
    Priest.Phone        = "053-9124417"
    Priest.Mobile       = ""
    Priest.Email        = "denle@eircom.net"
    Priest.Parish       = "Clonard"
    Priest.Appointment1 = "Episcopal Vicar for Clergy"
    Priest.Appointment2 = "Deputy Child Protection Delegate"
    Priest.Appointment3 = "Chairman, Ferns on Mission Fund"
    Priest.Photo        = "Denis Lennon.jpg"
    Priest.Status       = "Active"
    Priests["Denis Lennon"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Lennon"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "CC"
    Priest.Ordination   = "(Hexham & Newcastle) Kilkenny : 05/06/60"
    Priest.Address      = "Castledockrell, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9388569"
    Priest.Mobile       = "087-7858238"
    Priest.Email        = ""
    Priest.Parish       = "Castledockrell (Marshalstown)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Lennon.jpg"
    Priest.Status       = "Active"
    Priests["James Lennon"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Marken"
    Priest.Firstname    = "Rev Aodhán"
    Priest.Title        = "CC"
    Priest.Ordination   = "Clones (Wexford): 19/06/94"
    Priest.Address      = "The Presbytery, 12 School St, Wexford"
    Priest.Phone        = "053-9122055"
    Priest.Mobile       = ""
    Priest.Email        = "maodhan@hotmail.com"
    Priest.Parish       = "Wexford"
    Priest.Appointment1 = "Chaplain, Scouting Ireland"
    Priest.Appointment2 = "Chaplain, St Peter’s College and CBS Primary School, Wexford"
    Priest.Appointment3 = ""
    Priest.Photo        = "Aodhán Marken.jpg"
    Priest.Status       = "Active"
    Priests["Aodhán Marken"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "McCarthy"
    Priest.Firstname    = "V Rev Seán Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 12/04/53"
    Priest.Address      = "'Loma', Newtown Rd, Wexford"
    Priest.Phone        = "053-9147199"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "Chaplain St John of God Convent, Newtown Road, Wexford"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Seán McCarthy.jpg"
    Priest.Status       = "Retired"
    Priests["Seán McCarthy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "McDonald"
    Priest.Firstname    = "V Rev Daniel"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 28/05/78"
    Priest.Address      = "Marshalstown, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9388521"
    Priest.Mobile       = ""
    Priest.Email        = "dannymac@gofree.indigo.ie"
    Priest.Parish       = "Marshalstown"
    Priest.Appointment1 = "Chaplain, Order of Malta"
    Priest.Appointment2 = "Chaplain, Vocational College, Enniscorthy"
    Priest.Appointment3 = ""
    Priest.Photo        = "Danny McDonald.jpg"
    Priest.Status       = "Active"
    Priests["Daniel McDonald"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "McGrath"
    Priest.Firstname    = "Rt Rev Mgr Joseph"
    Priest.Title        = "PP VF VG"
    Priest.Ordination   = "Wexford (Maynooth): 23/06/88"
    Priest.Address      = "Parochial House, New Ross, Co Wexford"
    Priest.Phone        = "051-421348"
    Priest.Mobile       = "086-2661740"
    Priest.Email        = "joemcgrath2@me.com"
    Priest.Parish       = "New Ross"
    Priest.Appointment1 = "Chaplain, St Joseph’s Young Priests Society"
    Priest.Appointment2 = "Chaplain, Mercy Secondary School, New Ross, Vocations Direction & Promotion"
    Priest.Appointment3 = ""
    Priest.Photo        = "Joseph McGrath.jpg"
    Priest.Status       = "Active"
    Priests["Joseph McGrath"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "McGrath"
    Priest.Firstname    = "V Rev Thomas"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 4/06/1967"
    Priest.Address      = "Parochial House, Newbawn, Co Wexford"
    Priest.Phone        = "051-428227"
    Priest.Mobile       = "087-9357668"
    Priest.Email        = ""
    Priest.Parish       = "Newbawn"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thomas McGrath.jpg"
    Priest.Status       = "Active"
    Priests["Thomas McGrath"] = Priest   
    
    Priest = new PriestRecord();
    Priest.Surname      = "McGuire"
    Priest.Firstname    = "Rev Robert"
    Priest.Title        = "CC"
    Priest.Ordination   = "Murrintown: 31/10/99"
    Priest.Address      = "Donard, Poulpeasty, Clonroche, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9244116"
    Priest.Mobile       = ""
    Priest.Email        = "robertjmcguire@eircom.net"
    Priest.Parish       = "Poulpeasty (Cloughbawn)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Robert McGuire.jpg"
    Priest.Status       = "Active"
    Priests["Robert McGuire"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Mernagh"
    Priest.Firstname    = "Rev Patrick"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 07/06/92"
    Priest.Address      = "McKee Barracks, Blackhorse Avenue, Dublin 7"
    Priest.Phone        = "01-8046268"
    Priest.Mobile       = ""
    Priest.Email        = "patmernagh@hotmail.com"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Pat Mernagh.jpg"
    Priest.Status       = "Elsewhere"
    Priests["Patrick Mernagh"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Morris"
    Priest.Firstname    = "Rev Fintan"
    Priest.Title        = "CC"
    Priest.Ordination   = "Kilaveney (Maynooth): 30/05/91"
    Priest.Address      = "Kiltealy, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9255124"
    Priest.Mobile       = ""
    Priest.Email        = "fintanmorris@eircom.net"
    Priest.Parish       = "Kiltealy (Ballindaggin)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Fintan Morris.jpg"
    Priest.Status       = "Active"
    Priests["Fintan Morris"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Moynihan"
    Priest.Firstname    = "Rev James CC"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 05/06/88"
    Priest.Address      = "The Presbytery, Murrintown, Co Wexford"
    Priest.Phone        = "053-9139136"
    Priest.Mobile       = ""
    Priest.Email        = "jmony09@yahoo.co.uk"
    Priest.Parish       = "Murrintown (Piercestown)"
    Priest.Appointment1 = "Chaplain, Catholic Girl Guides"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Moynihan.jpg"
    Priest.Status       = "Active"
    Priests["James Moynihan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Murphy"
    Priest.Firstname    = "V Rev Colm"
    Priest.Title        = "PP"
    Priest.Ordination   = "Rosslare Harbour: 28/11/76"
    Priest.Address      = "Clongeen, Foulksmill, Co Wexford"
    Priest.Phone        = "051-565610"
    Priest.Mobile       = ""
    Priest.Email        = "colmcmurphy@eircom.net"
    Priest.Parish       = "Clongeen"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Colm Murphy.jpg"
    Priest.Status       = "Active"
    Priests["Colm Murphy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Murphy"
    Priest.Firstname    = "Rev David"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 02/06/91"
    Priest.Address      = "Caroreigh, Co Wexford"
    Priest.Phone        = "053-9134113"
    Priest.Mobile       = "087-2511488"
    Priest.Email        = ""
    Priest.Parish       = "Caroreigh/Trinity (Taghmon)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "David Murphy.jpg"
    Priest.Status       = "Active"
    Priests["David Murphy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Murphy"
    Priest.Firstname    = "Rev Francis"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 07/06/81"
    Priest.Address      = "The Presbytery, Gorey, Co Wexford"
    Priest.Phone        = "053-9421117"
    Priest.Mobile       = "087-2368411"
    Priest.Email        = "fernsed@gmail.com"
    Priest.Parish       = "Gorey"
    Priest.Appointment1 = "CPSMA"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Frank Murphy.jpg"
    Priest.Status       = "Active"
    Priests["Frank Murphy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Murphy"
    Priest.Firstname    = "Rev James"
    Priest.Title        = "CC"
    Priest.Ordination   = "Kiltealy (Maynooth): 14/06/87"
    Priest.Address      = "St Brigid's, Rosslare Strand, Co Wexford"
    Priest.Phone        = "053-9132118"
    Priest.Mobile       = "087-81-JAMES"
    Priest.Email        = "frjames@eircom.net"
    Priest.Parish       = "Rosslare (Tagoat)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Murphy.jpg"
    Priest.Status       = "Active"
    Priests["James Murphy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Nolan"
    Priest.Firstname    = "V Rev Brendan"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford : 01/06/80"
    Priest.Address      = "Our Lady's Island, Broadway, Co Wexford"
    Priest.Phone        = "053-9131167"
    Priest.Mobile       = ""
    Priest.Email        = "bearlough@eircom.net"
    Priest.Parish       = "Our Lady's Island"
    Priest.Appointment1 = "Director, Our Lady's Island Pilgrimage"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Brendan Nolan.jpg"
    Priest.Status       = "Active"
    Priests["Brendan Nolan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Nolan"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/76"
    Priest.Address      = "Davidstown, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9233382"
    Priest.Mobile       = ""
    Priest.Email        = "revjnolan2005@eircom.net"
    Priest.Parish       = "Courtnacuddy (Davidstown)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Nolan.jpg"
    Priest.Status       = "Active"
    Priests["James Nolan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Nolan"
    Priest.Firstname    = "V Rev John P"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 06/06/71"
    Priest.Address      = "Duncannon, Co Wexford"
    Priest.Phone        = "051-389118"
    Priest.Mobile       = ""
    Priest.Email        = "revjp@eircom.net"
    Priest.Parish       = "Duncannon"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John P Nolan.jpg"
    Priest.Status       = "Active"
    Priests["John P Nolan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Nolan"
    Priest.Firstname    = "V Rev Robert"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 04/06/67"
    Priest.Address      = "Adamstown, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9240512"
    Priest.Mobile       = ""
    Priest.Email        = "robertnolanadamstown@hotmail.com"
    Priest.Parish       = "Adamstown"
    Priest.Appointment1 = "Chaplain, Hearing Impaired"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Robert Nolan.jpg"
    Priest.Status       = "Active"
    Priests["Robert Nolan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Brien"
    Priest.Firstname    = "Rev John"
    Priest.Title        = ""
    Priest.Ordination   = "Maynooth: 17/06/62"
    Priest.Address      = "Elmfield Mews, Spawell Rd, Wexford"
    Priest.Phone        = "053-9140733"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""    
    Priest.Photo        = "John O'Brien.jpg"
    Priest.Status       = "Retired"
    Priests["John O'Brien"] = Priest
      
    Priest = new PriestRecord();
    Priest.Surname      = "O'Brien"
    Priest.Firstname    = "V Rev Patrick"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 22/06/58"
    Priest.Address      = "Kilanerin, Gorey, Co Wexford"
    Priest.Phone        = "0402-37120"
    Priest.Mobile       = "086-2400402"
    Priest.Email        = "pcobrien@iol.ie"
    Priest.Parish       = "Kilanerin"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick O'Brien.jpg"
    Priest.Status       = "Active"
    Priests["Patrick O'Brien"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Byrne"
    Priest.Firstname    = "V Rev Hugh"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 05/06/66"
    Priest.Address      = "Blackwater, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9127118"
    Priest.Mobile       = ""
    Priest.Email        = "hobyrne7@eircom.net"
    Priest.Parish       = "Blackwater"
    Priest.Appointment1 = "Contact Priest, Pontifical Mission Societies"
    Priest.Appointment2 = "Contact Priest/Support Priest for Requests for Retreats/Healing Services/Perpetual Adoration"
    Priest.Appointment3 = ""
    Priest.Photo        = "Hugh O'Byrne.jpg"
    Priest.Status       = "Active"
    Priests["Hugh O'Byrne"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "O'Connell"
    Priest.Firstname    = "V Rev Anthony"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 16/6/68"
    Priest.Address      = "Rathnure, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9255122"
    Priest.Mobile       = ""
    Priest.Email        = "toc@hotmail.com"
    Priest.Parish       = "Rathnure"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Anthony O'Connell.jpg"
    Priest.Status       = "Active"
    Priests["Anthony O'Connell"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Conor"
    Priest.Firstname    = "Rev Patrick"
    Priest.Title        = "SSC CC"
    Priest.Ordination   = ""
    Priest.Address      = "Mulrankin, Tomhaggard, Co Wexford"
    Priest.Phone        = "053-9175705"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Mulrankin (Kilmore)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick O'Conor.jpg"
    Priest.Status       = "Active"
    Priests["Patrick O'Conor"] = Priest

   
    Priest = new PriestRecord();
    Priest.Surname      = "O'Connor"
    Priest.Firstname    = "V Rev Laurence"
    Priest.Title        = "PP"
    Priest.Ordination   = "Maynooth: 19/06/66"
    Priest.Address      = "Ballycullane, New Ross, Co Wexford"
    Priest.Phone        = "051-562123"
    Priest.Mobile       = "087-2355328"
    Priest.Email        = "conlar@iol.ie"
    Priest.Parish       = "Ballycullane"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    Priests["Laurence O'Connor"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Connor"
    Priest.Firstname    = "Rev Peter"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 03/06/84"
    Priest.Address      = "10 Cranfield Place, Dublin 4"
    Priest.Phone        = "01-6676438"
    Priest.Mobile       = ""
    Priest.Email        = "peteroc@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Elsewhere"
    Priests["Peter O'Connor"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Leary"
    Priest.Firstname    = "V Rev Gerald"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 27/05/79"
    Priest.Address      = "Horeswood, New Ross, Co Wexford"
    Priest.Phone        = "051-388129"
    Priest.Mobile       = "086-8515394"
    Priest.Email        = "geraldoleary@gmail.com"
    Priest.Parish       = "Horeswood"
    Priest.Appointment1 = "Chairman, Child Protection Committee"
    Priest.Appointment2 = "Vocations Direction & Promotion"
    Priest.Appointment3 = ""
    Priest.Photo        = "Gerald O'Leary.jpg"
    Priest.Status       = "Active"
    Priests["Gerald O'Leary"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Neill"
    Priest.Firstname    = "Rev Roger"
    Priest.Title        = "CC"
    Priest.Ordination   = "Clonard: 04/07/04"
    Priest.Address      = "The Presbytery, New Ross, Co Wexford"
    Priest.Phone        = "051-421214"
    Priest.Mobile       = "rogerloneill@hotmail.com"
    Priest.Email        = ""
    Priest.Parish       = "New Ross"
    Priest.Appointment1 = "Chaplain, Vocational College, New Ross"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Roger O'Neill.jpg"
    Priest.Status       = "Active"
    Priests["Roger O'Neill"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Reilly"
    Priest.Firstname    = "V Rev John"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 27/05/79"
    Priest.Address      = "Piercestown, Co Wexford"
    Priest.Phone        = "053-9158851"
    Priest.Mobile       = "087 2024030"
    Priest.Email        = "jorwoodtown@msn.com"
    Priest.Parish       = "Piercestown"
    Priest.Appointment1 = "Chairperson, St Ibar’s Fund"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John O'Reilly.jpg"
    Priest.Status       = "Active"
    Priests["John O'Reilly"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Orr"
    Priest.Firstname    = "Rev Thomas"
    Priest.Title        = "CC"
    Priest.Ordination   = "Ferns, Ballyduff: 24/09/00"
    Priest.Address      = "Ballycanew, Gorey, Co Wexford"
    Priest.Phone        = "053-9427184"
    Priest.Mobile       = "087-7538684"
    Priest.Email        = "tjporr@hotmail.com"
    Priest.Parish       = "Ballyoughter (Camolin)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Thomas Orr.jpg"
    Priest.Status       = "Active"
    Priests["Thomas Orr"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Shea"
    Priest.Firstname    = "Rev Michael"
    Priest.Title        = "CC"
    Priest.Ordination   = "New Ross: 25/01/04"
    Priest.Address      = "The Presbytery, 12 School Street, Wexford"
    Priest.Phone        = "053-9122055"
    Priest.Mobile       = ""
    Priest.Email        = "mposhea@hotmail.com"
    Priest.Parish       = "Wexford"
    Priest.Appointment1 = "Chaplain, Ozanam House, Wexford"
    Priest.Appointment2 = "Chaplain, Gael Scoil and Clochar Mhuire, St John’s Road"
    Priest.Appointment3 = ""
    Priest.Photo        = "Michael O' Shea.jpg"
    Priest.Status       = "Active"
    Priests["Michael O'Shea"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Power"
    Priest.Firstname    = "V Rev Joseph"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 01/06/72"
    Priest.Address      = "Kilrush, Bunclody, Co Wexford"
    Priest.Phone        = "053-9377262"
    Priest.Mobile       = "086-3397991"
    Priest.Email        = "josepower1@eircom.net"
    Priest.Parish       = "Askamore (Kilrush)"
    Priest.Appointment1 = "Chairman, St Aidan’s Retirement Fund"
    Priest.Appointment2 = "Chaplain, Apostolic Work Society"
    Priest.Appointment3 = ""
    Priest.Photo        = "Joseph Power.jpg"
    Priest.Status       = "Active"
    Priests["Joseph Power"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Power"
    Priest.Firstname    = "V Rev Nicholas Canon"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 06/06/54"
    Priest.Address      = "Moorfield, Rathaspeck, Co Wexford"
    Priest.Phone        = "053-9144088"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Retired"
    Priests["Nicholas Power"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Quinn"
    Priest.Firstname    = "Rev Kenneth"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 13/08/95"
    Priest.Address      = "The Presbytery, Glenbrien, Co Wexford"
    Priest.Phone        = "053-9138112"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "Chaplain to Travelling Community"
    Priest.Appointment2 = "Chaplain, Wexford General Hospital"
    Priest.Appointment3 = ""
    Priest.Photo        = "Ken Quinn.jpg"
    Priest.Status       = "Active"
    Priests["Kenneth Quinn"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Redmond"
    Priest.Firstname    = "Rev Richard"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 05/06/94"
    Priest.Address      = "Ballyduff, Ferns, Co Wexford"
    Priest.Phone        = "053-9366301"
    Priest.Fax          = ""
    Priest.Mobile       = "087-2817122"
    Priest.Email        = ""
    Priest.Parish       = "Clologue (Ferns)"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Richard Redmond.jpg"
    Priest.Status       = "Active"    
    Priests["Richard Redmond"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Ryan"
    Priest.Firstname    = "V Rev James"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford : 04/06/67"
    Priest.Address      = "Priest in Residence, Cleariestown, Co Wexford"
    Priest.Phone        = "053-9139110"
    Priest.Mobile       = "086-8168944"
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "Chairperson, Sick Priests’ Fund"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "James Ryan.jpg"
    Priest.Status       = "Retired"
    Priests["James Ryan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Sheridan"
    Priest.Firstname    = "Rev John-Paul"
    Priest.Title        = "CC"
    Priest.Ordination   = "Enniscorthy (Rome): 14/07/90"
    Priest.Address      = "Blackwater, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9129288"
    Priest.Mobile       = "086-8561526"
    Priest.Email        = "1965sher@gmail.com"
    Priest.Parish       = "Blackwater"
    Priest.Appointment1 = "Diocesan Adviser for Primary Schools"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John Paul Sheridan.jpg"
    Priest.Status       = "Active"
    Priests["John Paul Sheridan"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Sinnott"
    Priest.Firstname    = "V Rev John"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 02/06/63"
    Priest.Address      = "Ballindaggin, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9388559"
    Priest.Mobile       = "087-2587684"
    Priest.Email        = ""
    Priest.Parish       = "Ballindaggin"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John Sinnott.jpg"
    Priest.Status       = "Active"
    Priests["John Sinnott"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Sinnott"
    Priest.Firstname    = "V Rev Patrick"
    Priest.Title        = "CC"
    Priest.Ordination   = "Wexford: 02/06/63"
    Priest.Address      = "St Aidan’s Cathedral, Enniscorthy,Co Wexford"
    Priest.Phone        = "053-9235777"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Enniscorthy St Aidan’s"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Sinnott.jpg"
    Priest.Status       = "Active"
    Priests["Patrick Sinnott"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Stafford"
    Priest.Firstname    = "V Rev Patrick"
    Priest.Title        = "PP"
    Priest.Ordination   = "Wexford: 05/06/66"
    Priest.Address      = "Glynn, Enniscorthy, Co Wexford"
    Priest.Phone        = "053-9128115"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Glynn"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Patrick Stafford.jpg"
    Priest.Status       = "Active"
    Priests["Patrick Stafford"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Swan"
    Priest.Firstname    = "Rev William"
    Priest.Title        = ""
    Priest.Ordination   = "Wexford: 07/06/98"
    Priest.Address      = "Pontifical Irish College, Via dei SS Quattro 1, Roma 00184 Italia "
    Priest.Phone        = "003906 772631"
    Priest.Mobile       = ""
    Priest.Email        = "billyswan68@hotmail.com"
    Priest.Parish       = ""
    Priest.Appointment1 = "Director of Formation, Irish College Rome"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "William Swan.jpg"
    Priest.Status       = "Elsewhere"
    Priests["William Swan"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Sweeney"
    Priest.Firstname    = "V Rev Oliver"
    Priest.Title        = "PP"
    Priest.Ordination   = "Glynn (Wexford): 07/12/75"
    Priest.Address      = "Poulfur, Fethard-on-Sea, New Ross, Co Wexford"
    Priest.Phone        = "051-397048"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Poulfur (Templetown)"
    Priest.Appointment1 = "Director, Knock Pilgrimage"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "Oliver Sweeney.jpg"
    Priest.Status       = "Active"
    Priests["Oliver Sweeney"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Sweetman"
    Priest.Firstname    = "V Rev John"
    Priest.Title        = "PP VF"
    Priest.Ordination   = "Bannow (Maynooth): 25/06/78"
    Priest.Address      = "Riverchapel, Courtown Harbour, Gorey Co Wexford"
    Priest.Phone        = "053-9425241"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Riverchapel"
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = "John Sweetman.jpg"
    Priest.Status       = "Active"
    Priests["John Sweetman"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Whelan"
    Priest.Firstname    = "Rev Brian"
    Priest.Title        = "CC"
    Priest.Ordination   = "Blackwater: 17/04/05"
    Priest.Address      = "The Presbytery, 12 School Street, Wexford"
    Priest.Phone        = "053-9237611"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = "Wexford"
    Priest.Appointment1 = "Chaplain, St John of God School, The Faythe"
    Priest.Appointment2 = "Chaplain CBS Secondary School, Wexford"
    Priest.Appointment3 = ""
    Priest.Photo        = "Brian Whelan.jpg"
    Priest.Status       = "Active"
    Priests["Brian Whelan"] = Priest

// Other priests ...

    Priest = new PriestRecord();
    Priest.Surname      = "Mendy"
    Priest.Firstname    = "Rev Paschal"
    Priest.Title        = ""
    Priest.Ordination   = ""
    Priest.Address      = ""
    Priest.Phone        = "053-9255149"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = "weekend ministry"
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    OtherPriests["Paschal Mendy"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "O'Leary"
    Priest.Firstname    = "Rev Aidan"
    Priest.Title        = "OSA"
    Priest.Ordination   = ""
    Priest.Address      = "Grantstown Priory,Wellingtonbridge, Co Wexford"
    Priest.Phone        = "051-561119"
    Priest.Mobile       = ""
    Priest.Email        = "aclonmines@eircom.net"
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    OtherPriests["Aidan O'Leary"] = Priest

    Priest = new PriestRecord();
    Priest.Surname      = "Codd"
    Priest.Firstname    = "V Rev Patrick"
    Priest.Title        = "OSA"
    Priest.Ordination   = ""
    Priest.Address      = "Augustinian Priory, New Ross, Co Wexford"
    Priest.Phone        = "051-421237"
    Priest.Mobile       = ""
    Priest.Email        = ""
    Priest.Parish       = ""
    Priest.Appointment1 = ""
    Priest.Appointment2 = ""
    Priest.Appointment3 = ""
    Priest.Photo        = ""
    Priest.Status       = "Active"
    OtherPriests["Patrick Codd"] = Priest


// Deceased priests ...

    Priest = new PriestRecord();
    Priest.Surname      = "Finn"
    Priest.Firstname    = "V Rev James Canon"
    Priest.DateOfBirth  = "25 July 1924"
    Priest.Ordination   = "5 June 1949, St Peter's College,Wexford"
    Priest.Appointment1 = "1949-1951 House of Missions"
    Priest.Appointment2 = "1951-1962 Chaplain St John's Hospital & Sanatorium"
    Priest.Appointment3 = "1962-1974 Cleariestown"
    Priest.Appointment4 = "1975-1974 Ballaghkeene"
    Priest.Appointment5 = "1974-1994 Glynn"
    Priest.Died         = "15 May 2010"
    Priest.Photo        = "James Canon Finn.jpg"
    Priest.Obituary     = "One of the highlights of Canon Finn's pastorate was the celebration of the bi-centenary of Glynn Parish Church.  During his nineteen years in Glynn, Canon Finn renovated the church, provided a carpark, had work carried out on the graveyard, built a community centre, and added four new classrooms to the school."
    DeceasedPriests["Canon James Finn"] = Priest
    
    Priest = new PriestRecord();
    Priest.Surname      = "Staples"
    Priest.Firstname    = "V Rev Francis"
    Priest.DateOfBirth  = "15 July 1922"
    Priest.Ordination   = "22 June 1947 at St Patrick's College Maynooth"
    Priest.Appointment1 = "1947-1948 Edinburgh"
    Priest.Appointment2 = "1948-1954 Kilmuckridge"
    Priest.Appointment3 = "1954-1959 Ballycanew"
    Priest.Appointment4 = "1959-1974 Ballaghkeene"
    Priest.Appointment5 = "1974-1989 Craanford"
    Priest.Died         = "17 December 2008"
    Priest.Photo        = "Francis Staples.jpg"
    Priest.Obituary     = "Speaking at Fr Frank's funeral Mass, Bishop Brennan acknowledged Fr Frank's 60 years of priesthood in the diocese of Ferns.  They were years of faithful service of God and the people of God.  He acknowledged the huge generosity of the Staples family to the church in Ferns and indeed further afield.  Fr Bob, whose mission could be described as gospel sans frontiers - Bob was everywhere!  Fr Frank in Ferns, Fr Leo in Kenya and Sr Pauline in Australia, a remarkably generous contribution by one family."
    DeceasedPriests["Francis Staples"] = Priest
         
    Priest = new PriestRecord();
    Priest.Surname      = "Stafford"
    Priest.Firstname    = "V Rev Francis"
    Priest.DateOfBirth  = "7 December 1949"
    Priest.Ordination   = "1 June 1975 at St Peter’s College, Wexford "
    Priest.Appointment1 = "1975-1976 Dublin Regional Marriage Tribunal & Parish Chaplain, Cabra, Dublin"
    Priest.Appointment2 = "1976-1978 Post Graduate Studies in Canon Law, Gregorian University Rome"
    Priest.Appointment3 = "1978-1981 Dublin Regional Marriage Tribunal & Parish Chaplain, Rivermount, Dublin"
    Priest.Appointment4 = "1981-1984 Bunclody & Director of Judicial Group for Marriage"
    Priest.Appointment5 = "1984-1998 Boolavogue & Director of Judicial Group for Marriage"
    Priest.Appointment6 = "1998-2002 Kilmyshal"
    Priest.Appointment7 = "2002-2006 Cushinstown (retired due to ill health)"
    Priest.Died         = "13 November 2007"
    Priest.Photo        = "Francis Stafford.jpg"
    Priest.Obituary     = "Fr Frank was a gifted musician and used this talent to great advantage in his various appointments.  He was also a well known and well respected figure in drama circles, locally and nationally.  At the time of his death he was the proud holder of three All-Ireland medals for drama, an indication of his talent and skill in this area."
    DeceasedPriests["Francis Stafford"] = Priest

    
// Churches 

    c = new Church()
    c.Name       = "St Abban"
    c.MassTimes  = "Vigil 7.30 pm (Winter) 8 pm (Summer) <br>Sunday 10.30 am <br>Daily 9.30 am"
    c.Photo      = "Adamstown.jpg"    
    Churches["Adamstown"] = c

    c = new Church()
    c.Name       = "St Bridget"
    c.MassTimes  = "Vigil 7.30 pm  <br>Sunday 9 11 am <br>Daily 9.30 am"
    c.Photo      = "Annacurra.jpg"
    Churches["Annacurra"] = c

    c = new Church()
    c.Name       =  "St Colman"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 8.30 11 am <br>Daily 9 am"
    c.Photo      =  "Ballindaggin.jpg"
    Churches["Ballindaggin"] = c

    c = new Church()
    c.Name       =  "St John the Baptist"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11 am, Daily 9 am"
    c.Photo      =  "Caim.jpg"
    Churches["Caim"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Daily 9.45 am"
    c.Photo      =  ""
    Churches["Kiltealy"] = c

    c = new Church()
    c.Name       =  "St Martin"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 11 am <br>Weekdays 9.30 am Wednesday 7.30 pm"
    c.Photo      =  "Ballycullane.jpg"
    Churches["Ballycullane"] = c
    
    c = new Church()
    c.Name       =  "St John the Baptist"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Monday to Friday 9.30 am, Saturday 11 am"
    c.Photo      =  "Gusserane.jpg"
    Churches["Gusserane"] = c
    
    c = new Church()
    c.Name       =  "Holy Spirit"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 9 am <br>Monday to Friday 9.30 am"
    c.Photo      =  "StLeonard.jpg"
    Churches["St Leonard’s"] = c    

    c = new Church()
    c.Name       =  "Our Lady Star of the Sea"
    c.MassTimes  =  "Vigil 7.00 pm   <br>Sunday 9.30 11 am <br>Daily Mass 9.30 am"
    c.Photo      =  "Ballygarrett.jpg"
    Churches["Ballygarrett"] = c

    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Sunday 10.30 am <br>Tuesday and Thursday 7.30 pm <br>Wednesday at 9.40 am followed by Adoration 10-11 am and 7-8 pm"
    c.Photo      =  "Ballymore.jpg"
    Churches["Ballymore"] = c

    c = new Church()
    c.Name       =  "St Fintan"
    c.MassTimes  =  "Vigil 7.30 pm <br>Monday and Friday 9.30 am"
    c.Photo      =  "Mayglass.jpg"
    Churches["Mayglass"] = c

    c = new Church()
    c.Name       =  "Mary Immaculate & St Joseph"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 11 am <br>Daily 9.30 am"
    c.Photo      =  "Bannow.jpg"
    Churches["Bannow"] = c

    c = new Church()
    c.Name       =  "St Peter’s"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8 10.15 am <br>Daily 9.30 am"
    c.Photo      =  "Ballymitty.jpg"
    Churches["Ballymitty"] = c

    c = new Church()
    c.Name       =  "Augustinian Priory (Grantstown)"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am"
    c.Photo      =  "Grantstown.jpg"
    Churches["Grantstown"] = c
    
    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Vigil 7.30 pm (Winter) 8.00 pm (Summer) <br>Sunday 10 11.15 am (12.30 pm Bank Holidays and selected Sundays, July & August)<br> Monday-Friday 9.30 am<br>Ballyvaloo Sunday 9 am<br>Monday-Friday 8.45 am Saturday 10 am"
    c.Photo      =  "Blackwater.jpg"
    Churches["Blackwater"] = c    

    c = new Church()
    c.Name       =  "Assumption"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Daily 9 am"
    c.Photo      =  "Bree.jpg"
    Churches["Bree"] = c

    c = new Church()
    c.Name       =  "St John the Baptist"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11 am <br>Monday/Wednesday 10 am"
    c.Photo      =  "Galbally.jpg"
    Churches["Galbally"] = c

    c = new Church()
    c.Name       =  "St John the Baptist"
    c.MassTimes  =  "Sunday 9 am, Tuesday 7 pm"
    c.Photo      =  "Bellvue.jpg"
    Churches["Bellvue"] = c

    c = new Church()
    c.Name       =  "Holy Trinity"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 am 12 noon <br>Daily 9 am"
    c.Photo      =  "Bunclody.jpg"
    Churches["Bunclody"] = c

    c = new Church()
    c.Name       =  "St Mary Magdalene"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 10.30 am <br>Mon, Tues, Thurs & Fri 9.30 am Wednesday 7.30 pm"
    c.Photo      =  "Kilmyshall.jpg"
    Churches["Kilmyshall"] = c

    c = new Church()
    c.Name       =  "Immaculate Conception"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 10.30 am <br>Daily 9.30 am"
    c.Photo      =  "Camolin.jpg"
    Churches["Camolin"] = c

    c = new Church()
    c.Name       =  "St Moling"
    c.MassTimes  =  "Vigil 6 pm <br>Sunday 11.30 a.m. <br>Wednesday and Friday 9.30 am"
    c.Photo      =  "Ballycanew.jpg"
    Churches["Ballycanew"] = c

    c = new Church()
    c.Name       =  "Sacred Heart"
    c.MassTimes  =  "Sunday 9.45 am, <br>Tuesday and Thursday 9.30 am"
    c.Photo      =  "Ballyoughter.jpg"
    Churches["Ballyoughter"] = c

    c = new Church()
    c.Name       =  "Our Lady Queen of the Most Holy Rosary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9 am & 11 am <br>Monday 7.30 pm, <br>Tuesday/Thursday/Friday 8.30 am,<br>Wednesday and Saturday 10 am <br>First Friday 8.30 am and 7.30 pm"
    c.Photo      =  "Carnew.jpg"   
    Churches["Carnew"] = c

    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Sunday 10 am <br>Wednesday and Friday 9 am First Friday 9 am"
    c.Photo      =  "Tomacork.jpg"
    Churches["Tomacork"] = c

    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9 am <br>Monday/Friday 9.30 am"
    c.Photo      =  "Coolfancy.jpg"
    Churches["Coolfancy"] = c

    c = new Church()
    c.Name       =  "Immaculate Conception"
    c.MassTimes  =  "Vigil 6.30 pm <br>Sunday 10.30 am <br>Tuesday and Thursday 9.30 a.m. <br>First Friday 9.30 pm"
    c.Photo      =  "Shillelagh.jpg"
    Churches["Shillelagh"] = c

    c = new Church()
    c.Name       =  "St Ibar"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8, 10.30 am <br>Monday, Tuesday, Thursday, Friday 9.30 am <br>Wednesday 7.30 pm"
    c.Photo      =  "Castlebridge.jpg"
    Churches["Castlebridge"] = c

    c = new Church()
    c.Name       =  "St Cyprian"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11 am <br>Weekdays Tuesday and Thursday 9.30 am"
    c.Photo      =  "Screen.jpg"
    Churches["Screen"] = c

    c = new Church()
    c.Name       =  "St Margaret"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9.30 am July/August 12 pm <br>Weekday Wednesday 9.30 am"
    c.Photo      =  "Curracloe.jpg"
    Churches["Curracloe"] = c

    c = new Church()
    c.Name       =  "Church of the Annunciation"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 10 11.15 am 12.30 pm <br>Daily 7.30 10 am and 7 pm, Saturday 10 am"
    c.Photo      =  "Clonard.jpg"
    Churches["Clonard"] = c
    
    c = new Church()
    c.Name       =  "St Aidan"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am <br>Daily 8.50 am"
    c.Photo      =  "Clongeen.jpg"
    Churches["Clongeen"] = c

    c = new Church()
    c.Name       =  "Assumption"
    c.MassTimes  =  "Sunday 9 am"
    c.Photo      =  "Little Cullenstown.jpg"
    Churches["Little Cullenstown"] = c
    
    c = new Church()
    c.Name       =  "St Clement"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am <br>Daily 9.30 am"
    c.Photo      =  ""
    Churches["Cloughbawn"] = c

    c = new Church()
    c.Name       =  "Christ the King"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 11 am <br> Monday-Friday 9.30 am Eucharistic Adoration Mondays 10 am - 7 pm"
    c.Photo      =  "Poulpeasty.jpg"
    Churches["Poulpeasty"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am"
    c.Photo      =  "Craanford.jpg"
    Churches["Craanford"] = c

    c = new Church()
    c.Name       =  "St Brendan"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9.30 am <br>Daily 9.30 am"
    c.Photo      =  "Monaseed.jpg"
    Churches["Monaseed"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 11.15 am <br>Monday 7.30 pm Wednesday and Friday 9.30 am"
    c.Photo      =  "Crossabeg.jpg"
    Churches["Crossabeg"] = c

    c = new Church()
    c.Name       =  "The Assumption & St Malachy"
    c.MassTimes  =  "Vigil 8.15 pm <br>Sunday 10 am <br>Tuesday 7.30 pm Thursday and Saturday 9.30 am"
    c.Photo      =  "Ballymurn.jpg"
    Churches["Ballymurn"] = c

    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8 am 11.15 am <br>Daily as announced"
    c.Photo      =  "Cushinstown.jpg"
    Churches["Cushinstown"] = c

    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Vigil 6.30 pm <br>Sunday 10 am <br>Daily as announced"
    c.Photo      =  "Terrerath.jpg"
    Churches["Terrerath"] = c

    c = new Church()
    c.Name       =  "St Anne and St John"
    c.MassTimes  =  "Vigil 8pm (winter) 8.30 pm (summer) <br>Sunday 10 am, Daily Masses - as announced"
    c.Photo      =  "Rathgarogue.jpg"
    Churches["Rathgarogue"] = c

    c = new Church()
    c.Name       =  "St David"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 11 am <br>Tuesday & Wednesday 9.30 am First Friday 9.30 am"
    c.Photo      =  ""
    Churches["Davidstown"] = c

    c = new Church()
    c.Name       =  "St Carthage"
    c.MassTimes  =  "Vigil 8.15 pm <br>Sunday 9.30 am <br>Monday & Thursday 9.30 am First Friday 10 am"
    c.Photo      =  "Courtnacuddy.jpg"
    Churches["Courtnacuddy"] = c

    c = new Church()
    c.Name       =  "Our Lady Star of the Sea"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 11 am <br>Daily 9.30 am"
    c.Photo      =  "Duncannon.jpg"
    Churches["Duncannon"] = c

    c = new Church()
    c.Name       =  "St Aidan"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 8.30, 11 am <br>Daily 9.30 am (Monday-Saturday) <br>Adoration Convent: Wednesday 7 pm"    
    c.Photo      =  "Ferns.jpg"
    Churches["Ferns"] = c

    c = new Church()
    c.Name       =  "St Columba"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 9.30 am <br>Weekend Thursday 9.30 am"
    c.Photo      =  ""
    Churches["Ballyduff"] = c

    c = new Church()
    c.Name       =  "St Bridget"
    c.MassTimes  =  "Sunday 10.15 am <br>Tuesday 9.30 am"
    c.Photo      =  "Clologue.jpg"
    Churches["Clologue"] = c

    c = new Church()
    c.Name       =  "St Lawrence"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 8 10 am <br>Daily 9.30 am"
    c.Photo      =  "Glynn.jpg"
    Churches["Glynn"] = c

    c = new Church()
    c.Name       =  "St Alphonsus"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 11 am <br>Daily 9.30 am"
    c.Photo      =  "Barntown.jpg"
    Churches["Barntown"] = c

    c = new Church()
    c.Name       =  "St Michael"
    c.MassTimes  =  "Vigil 6, 7.30 pm <br>Sunday 8.30  10.30 am 12 noon <br>Daily 7.30 10 am; 7.30 pm during Lent only <br>(No 7.30 am Mass on Saturday morning) Every First Friday 7.30 pm"
    c.Photo      =  ""
    Churches["Gorey"] = c

    c = new Church()
    c.Name       =  "St Kevin"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am <br>Wednesday and Friday 7.30 pm"
    c.Photo      =  ""
    Churches["Tara Hill"] = c

    c = new Church()
    c.Name       =  "St James"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10.30 am <br>Daily 9.30 am"
    c.Photo      =  "Horeswood.jpg"
    Churches["Horeswood"] = c

    c = new Church()
    c.Name       =  "Ss Brigid & James"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11.30 am <br>Daily as announced"
    c.Photo      =  "Ballykelly.jpg"
    Churches["Ballykelly"] = c

    c = new Church()
    c.Name       =  "St Peter & St Paul"
    c.MassTimes  =  "Vigil 7.30 pm (Winter) 8 pm (Summer) <br>Sunday 8 11 am <br>Weekdays: 9.30 am except Friday 7.30 pm (Winter) 8 pm (Summer)"
    c.Photo      =  "Kilanerin.jpg"
    Churches["Kilanerin"] = c

    c = new Church()
    c.Name       =  "Our Lady of The Nativity"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9 am <br>Tues 7.30 pm, Wed-Sat 9.30 am"
    c.Photo      =  "Ballyfad.jpg"
    Churches["Ballyfad"] = c
    
    c = new Church()
    c.Name       =  "St Kevin"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8 11 am <br>Daily 9.30 am Tuesday 7.30 pm"
    c.Photo      =  "Killaveney.jpg"
    Churches["Kilaveney"] = c

    c = new Church()
    c.Name       =  "St Peter & St Paul"
    c.MassTimes  =  "Sunday 9 am <br>Tuesday 7.30 pm <br>Wednesday-Friday 9.30 am <br>Saturday 10.30 am"
    c.Photo      =  "Crossbridge.jpg"
    Churches["Crossbridge"] = c
    
    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10 am, Children's Mass 12 noon <br>Monday-Friday 9 am Saturday 10 am First Friday 7.30 pm <br>Holydays Eve 7.30 pm Morning 10 am"
    c.Photo      =  "Kilmore.jpg"
    Churches["Kilmore"] = c

    c = new Church()
    c.Name       =  "St Peter"
    c.MassTimes  =  "Vigil: 6.30 pm <br>Sunday 10.30 am <br>Morning Mass 9.30 am <br>Holydays Eve 6.30 pm Morning 10.30 am"
    c.Photo      =  "KilmoreQuay.jpg"
    Churches["Kilmore Quay"] = c

    c = new Church()
    c.Name       =  "St David"
    c.MassTimes  =  "Sunday 11 am <br>Tuesday-Friday 9.45 am <br>Holydays: 11 am"
    c.Photo      =  "Mulrankin.jpg"
    Churches["Mulrankin"] = c

    c = new Church()
    c.Name       =  "St Anne & St James"
    c.MassTimes  =  "Saturday Vigil 7.30 pm <br>Weekdays Monday 9.30 am <br> Holydays: Vigil 7.30 pm"
    c.Photo      =  "Tomhaggard.jpg"
    Churches["Tomhaggard"] = c

    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Vigil 7.30 pm (Winter) 8 pm (Summer) <br>Sunday 9, 11 am <br>Daily 9.30 am <br>July/August Vigil 6 8 pm Sunday 9 11 am 12.30 pm"
    c.Photo      =  "Kilmuckridge.jpg"
    Churches["Kilmuckridge"] = c

    c = new Church()
    c.Name       =  "St Moling"
    c.MassTimes  =  "Vigil 7.30 pm  <br>Sunday 8.30 10.30 am <br>Weekdays - as announced at weekend Masses"
    c.Photo      =  "Monamolin.jpg"
    Churches["Monamolin"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10.30 am June-October 11.30 am <br>Thursday-Saturday 9.30 am"
    c.Photo      =  "RosslareHarbour.jpg"
    Churches["Kilrane (Rosslare Harbour)"] = c

    c = new Church()
    c.Name       =  "St Ruane"
    c.MassTimes  =  "Sunday 8.30 am <br>Monday-Wednesday 9.30 am"
    c.Photo      =  "Kilrane.jpg"
    Churches["Kilrane"] = c

    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10 am, <br>Monday - Friday 9.30 am"
    c.Photo      =  ""
    Churches["Kilrush"] = c

    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Vigil 6.30 pm <br>Sunday 11 am <br>Tuesday and Thursday 9.30 am"
    c.Photo      =  "Askamore.jpg"
    Churches["Askamore"] = c

    c = new Church()
    c.Name       =  "St Joseph"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9 11 am <br>Monday to Friday 9.30 am"
    c.Photo      =  ""
    Churches["Marshalstown"] = c

    c = new Church()
    c.Name       =  "All Saints"
    c.MassTimes  =  "Sunday 10 am <br>Weekdays 9.30 am"
    c.Photo      =  ""
    Churches["Castledockrell"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Daily 9.30 am"
    c.Photo      =  "Monageer.jpg"
    Churches["Monageer"] = c

    c = new Church()
    c.Name       =  "St Cormac"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11 am <br>Weekdays 9.30 am or as announced"
    c.Photo      =  "Boolavogue.jpg"
    Churches["Boolavogue"] = c

    c = new Church()
    c.Name       =  "St Mary & St Michael"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 11 am 12.15 pm 7 pm <br>Daily 8 10 am, including 7 pm <br>Friday Holydays 8 10 am 1.05 and 7 pm <br> Polish Mass weekly at 8 pm"
    c.Photo      =  ""
    Churches["New Ross"] = c

    c = new Church()
    c.Name       =  "Mount Carmel"
    c.MassTimes  =  "8.30 a.m. every morning Monday-Sunday"
    c.Photo      =  ""
    Churches["Mount Carmel"] = c

    c = new Church()
    c.Name       =  "Augustinian Priory"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 9.30 10.30 11.30 am <br>Daily 10 am <br>Holydays as per Sundays"
    c.Photo      =  "Augustinian Priory.jpg"
    Churches["Augustinian Priory"] = c

    c = new Church()
    c.Name       =  "Sacred Heart"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 10.30 am <br>Weekdays 9.30 am"
    c.Photo      =  "Newbawn.jpg"
    Churches["Newbawn"] = c

    c = new Church()
    c.Name       =  "Raheen"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 am <br>Weekdays - Wednesday & Thursday 9.30 am <br>First Fridays 7.30 pm"
    c.Photo      =  "Raheen.jpg"
    Churches["Raheen"] = c

    c = new Church()
    c.Name       =  "St Patrick"
    c.MassTimes  =  "Vigil 7 pm (Winter) 7.30 (Summer) <br> Sunday 8 10.30 am <br>Daily 9 am"
    c.Photo      =  "Oulart.jpg"
    Churches["Oulart"] = c

    c = new Church()
    c.Name       =  "St John the Baptist"
    c.MassTimes  =  "Vigil 7 pm (winter) 7.30pm (summer) <br>Sunday 8 11 am <br>Daily 9.30 am"
    c.Photo      =  "Ballaghkeene.jpg"
    Churches["Ballaghkeene"] = c

    c = new Church()
    c.Name       =  "The Assumption"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 11 am <br>Mon, Tues, Thur, Fri 10 am"
    c.Photo      =  "Our Lady’s Island.jpg"
    Churches["Our Lady’s Island"] = c

    c = new Church()
    c.Name       =  "St Catherine"
    c.MassTimes  =  "Sunday 10 am <br>Wed 10 am"
    c.Photo      =  "Tacumshane.jpg"
    Churches["Tacumshane"] = c

    c = new Church()
    c.Name       =  "St David"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Daily 9.30 am"
    c.Photo      =  "Oylegate.jpg"
    Churches["Oylegate"] = c

    c = new Church()
    c.Name       =  "St Peter"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 8.30 11 am <br>Weekdays 9.30 am"
    c.Photo      =  "Glenbrien.jpg"
    Churches["Glenbrien"] = c

    c = new Church()
    c.Name       =  "St Martin"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10 am <br>Weekdays Tues to Fri 9.30 am"
    c.Photo      =  "Piercestown.jpg"
    Churches["Piercestown"] = c

    c = new Church()
    c.Name       =  "St Catherine"
    c.MassTimes  =  "Sunday 9 11 am <br>Weekdays Mon to Thur 9 am Fri 10 am"
    c.Photo      =  "Murrintown.jpg"
    Churches["Murrintown"] = c

    c = new Church()
    c.Name       =  "St James"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8.30 10.30 am <br>Monday-Friday 9 am"
    c.Photo      =  "Ramsgrange.jpg"
    Churches["Ramsgrange"] = c

    c = new Church()
    c.Name       =  "Our Lady of The Assumption & St Laurence O'Toole"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 11 am <br>Weekday Mass Friday 9.30 am" 
    c.Photo      =  "Rathangan.jpg"
    Churches["Rathangan"] = c

    c = new Church()
    c.Name       =  "St Peter"
    c.MassTimes  =  "Weekday Mass Thursday 9.30 am"
    c.Photo      =  ""
    Churches["Duncormick"] = c

    c = new Church()
    c.Name       =  "St Mannon & Assumption"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 10 am <br>Weekday Mass Tuesday 9.30 am <br> Eucharistic Adoration Thursday"
    c.Photo      =  "Cleariestown.jpg"
    Churches["Cleariestown"] = c

    c = new Church()
    c.Name       =  "St Anne"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 10.30 am <br>Monday, Tuesday & Thursday 9.30 am"
    c.Photo      =  ""
    Churches["Rathnure"] = c

    c = new Church()
    c.Name       =  "St Mary & St Lawrence"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 11 am <br>Weekday: Wednesday 9.30 am"
    c.Photo      =  ""
    Churches["Templeudigan"] = c

    c = new Church()
    c.Name       =  "Our Lady Star of the Sea"
    c.MassTimes  =  "Vigil 6 pm  <br>Sunday 9 11 am, July/August 9 11 12 noon <br>Daily Mass/Prayer Service 9 am"
    c.Photo      =  ""
    Churches["Riverchapel"] = c

    c = new Church()
    c.Name       =  "St Fintan"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8 am (Summer) 9 am (Winter) 10.30 am (Summer and Winter) <br>Daily 9.30 am"
    c.Photo      =  "Taghmon.jpg"
    Churches["Taghmon"] = c

    c = new Church()
    c.Name       =  "St Garvan"
    c.MassTimes  =  "Vigil 8 pm <br>Sunday 8, 11.15 am"
    c.Photo      =  "Caroreigh.jpg"
    Churches["Caroreigh"] = c

    c = new Church()
    c.Name       =  "Most Holy Trinity"
    c.MassTimes  =  "Vigil 6.30 pm <br>Sunday 9.30 am"
    c.Photo      =  "Trinity.jpg"
    Churches["Trinity"] = c

    c = new Church()
    c.Name       =  "St Mary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 11 am <br>Daily 9.30 am"
    c.Photo      =  "Tagoat.jpg"
    Churches["Tagoat"] = c

    c = new Church()
    c.Name       =  "St Brigid"
    c.MassTimes  =  "Vigil 6 pm <br>Sunday 10 am all year, Public Holiday weekends and July and August 10 am, 11 am, 12 noon <br>Monday to Friday 10 am unless otherwise announced"
    c.Photo      =  "Rosslare.jpg"
    Churches["Rosslare"] = c

    c = new Church()
    c.Name       =  "All Saints"
    c.MassTimes  =  "Vigil 7.30 pm February, April June August October December <br>Sunday 11.15 am <br>Monday, Wednesday Friday 9.30 am"
    c.Photo      =  "Templetown.jpg"
    Churches["Templetown"] = c

    c = new Church()
    c.Name       =  "St Aidan"
    c.MassTimes  =  "Vigil 7.30 pm January March May July September November <br>Sunday 10 am <br>Tuesday and Thursday 8.30 am"
    c.Photo      =  "Poulfur.jpg"
    Churches["Poulfur"] = c

    c = new Church()
    c.Name       =  "St Aidan’s Cathedral"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 8 10 11 am 12.30 pm <br>Monday to Saturday 10 am First Friday 6.05 pm"
    c.Photo      =  "EnniscorthyCathedral.jpg"
    Churches["Enniscorthy St Aidan’s"] = c

    c = new Church()
    c.Name       =  "St John’s Hospital Chapel"
    c.MassTimes  =  "Sunday 11.15 am <br>Tuesday 2.30 pm <br>(Ward) Wednesday, Thursday and Friday 11.30 am"
    c.Photo      =  ""
    Churches["St John’s Hospital Chapel"] = c

    c = new Church()
    c.Name       =  "St Senan’s"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8.30 10 11.15 am 12.30 pm, <br>Monday to Friday 7.30 am 10 am"
    c.Photo      =  ""
    Churches["Enniscorthy St Senan’s"] = c

    c = new Church()
    c.Name       =  "St Senan’s Hospital"
    c.MassTimes  =  "Wednesday 10.30 am, Saturday 3.30 pm"
    c.Photo      =  ""
    Churches["St Senan’s Hospital"] = c

    c = new Church()
    c.Name       =  "Immaculate Conception (Rowe St)"
    c.MassTimes  =  "Vigil 6 pm <br>Sunday 10 11.15 am 12.30 pm <br>Daily 8.30 am 5.45 pm"
    c.Photo      =  ""
    Churches["Rowe St"] = c

    c = new Church()
    c.Name       =  "Assumption (Bride St)"
    c.MassTimes  =  "Vigil 7 pm <br>Sunday 9 10.30 am 12 noon <br>Daily 7.30 am (except Saturday) 10 am"
    c.Photo      =  "Wexford Bride St.jpg"
    Churches["Bride St"] = c

    c = new Church()
    c.Name       =  "Friary"
    c.MassTimes  =  "Vigil 7.30 pm <br>Sunday 8 10.45 am <br>Holydays: Vigil 7.30 pm Holyday 8 10 am 1.05 pm <br>Daily 10 am <br>Saturday 11 am <br>Bank Holidays 12 noon"
    c.Photo      =  "Friary.jpg"
    Churches["Friary"] = c

// Parishes

    p = new Parish()   
    p.Name      =  "Adamstown"
    p.Priests   =  ["Robert Nolan"]
    p.Churches  =  ["Adamstown"] 
    Parishes["Adamstown"] = p
   
    p = new Parish()   
    p.Name       =  "Annacurra"
    p.Priests    =  ["James Hammel"]
    p.Churches   =  ["Annacurra"]    
    Parishes["Annacurra"] = p
    
    p = new Parish()   
    p.Name       =  "Ballindaggin"
    p.Priests    =  ["John Sinnott"]
    p.Churches   =  ["Ballindaggin"]    
    Parishes["Ballindaggin"] = p

    p = new Parish()   
    p.Name       =  "Ballycullane"
    p.Priests    =  ["Laurence O'Connor"]
    p.Churches   =  ["Ballycullane"]    
    Parishes["Ballycullane"] = p

    p = new Parish()   
    p.Name       =  "Ballygarrett"
    p.Priests    =  ["James Butler"]
    p.Churches   =  ["Ballygarrett"]    
    Parishes["Ballygarrett"] = p

    p = new Parish()   
    p.Name       =  "Ballymore/Mayglass"
    p.Priests    =  ["Martin Byrne"]
    p.Churches   =  ["Ballymore",  "Mayglass"]    
    Parishes["Ballymore/Mayglass"] = p

    p = new Parish()   
    p.Name       =  "Bannow"
    p.Priests    =  ["James Kehoe"]
    p.Churches   =  ["Bannow", "Grantstown"]    
    Parishes["Bannow"] = p

    p = new Parish()   
    p.Name       =  "Blackwater"
    p.Priests    =  ["Hugh O'Byrne", "John Paul Sheridan"]
    p.Churches   =  ["Blackwater"]    
    Parishes["Blackwater"] = p

    p = new Parish()   
    p.Name       =  "Bree"
    p.Priests    =  ["Aidan Kavanagh"]
    p.Churches   =  ["Bree"]    
    Parishes["Bree"] = p

    p = new Parish()   
    p.Name       =  "Bunclody"
    p.Priests    =  ["Aidan Jones", "James Doyle"]
    p.Churches   =  ["Bunclody"]    
    p.Phone      =  "Tel/Fax 053-9376190"
    Parishes["Bunclody"] = p

    p = new Parish()   
    p.Name       =  "Camolin"
    p.Priests    =  ["Joseph Kavanagh"]
    p.Churches   =  ["Camolin"]    
    Parishes["Camolin"] = p

    p = new Parish()   
    p.Name       =  "Carnew"
    p.Priests    =  ["Martin Casey"]
    p.Churches   =  ["Carnew", "Tomacork"]    
    Parishes["Carnew"] = p

    p = new Parish()   
    p.Name       =  "Castlebridge"
    p.Priests    =  ["Walter Forde", "James Fitzpatrick"]
    p.Churches   =  ["Castlebridge"]    
    Parishes["Castlebridge"] = p

    p = new Parish()   
    p.Name       =  "Clonard"
    p.Priests    =  ["Denis Lennon", "Seán Devereux", "Martin Doyle"]
    p.Churches   =  ["Clonard"]    
    p.Phone      = "053-9123672"
    p.Fax        = "053-9146699" 
    p.Email      = "clonardparishoffice@eircom.net"
    Parishes["Clonard"] = p

    p = new Parish()   
    p.Name       =  "Clongeen"
    p.Priests    =  ["Colm Murphy"]
    p.Churches   =  ["Clongeen", "Little Cullenstown"]    
    Parishes["Clongeen"] = p

    p = new Parish()   
    p.Name       =  "Cloughbawn"
    p.Priests    =  ["Richard Hayes"]
    p.Churches   =  ["Cloughbawn"]    
    Parishes["Cloughbawn"] = p

    p = new Parish()   
    p.Name       =  "Craanford"
    p.Priests    =  ["Thomas Doyle"]
    p.Churches   =  ["Craanford"]    
    Parishes["Craanford"] = p

    p = new Parish()   
    p.Name       =  "Crossabeg"
    p.Priests    =  ["James Finn"]
    p.Churches   =  ["Crossabeg"]    
    Parishes["Crossabeg"] = p

    p = new Parish()   
    p.Name       =  "Cushinstown"
    p.Priests    =  ["Michael Byrne PP"]
    p.Churches   =  ["Cushinstown"]    
    Parishes["Cushinstown"] = p
    
    p = new Parish()   
    p.Name       =  "Davidstown"
    p.Priests    =  ["James Nolan"]
    p.Churches   =  ["Davidstown"]    
    Parishes["Davidstown"] = p

    p = new Parish()   
    p.Name       =  "Duncannon"
    p.Priests    =  ["John P Nolan"]
    p.Churches   =  ["Duncannon"]    
    Parishes["Duncannon"] = p

    p = new Parish()   
    p.Name       =  "Enniscorthy - Mensal Parish"
    p.Priests    =  ["Denis Kelly", "Patrick Sinnott", "Richard Lawless"]
    p.Churches   =  ["Enniscorthy St Aidan’s", "St John’s Hospital Chapel"]  
    p.Email      =  "saintaidans@eircom.net"
    p.Url        =  "www.puginireland.com"
    p.Phone      =  "Priest on Duty 087-2710478"
    p.Fax        =  "053-9237700"    
    Parishes["Enniscorthy St Aidan’s"] = p

    p = new Parish()   
    p.Name       =  "Enniscorthy - Mensal Parish"
    p.Priests    =  ["Brian Broaders", "Patrick Browne"]
    p.Churches   =  ["Enniscorthy St Senan’s", "St Senan’s Hospital"]    
    Parishes["Enniscorthy St Senan’s"] = p

    p = new Parish()   
    p.Name       =  "Ferns"
    p.Priests    =  ["Patrick Cushen", "Richard Redmond"]
    p.Churches   =  ["Ferns"]  
    p.Phone      =  "Tel/Fax 053-9366514"
    p.Email      =  "fernsparish@eircom.net"
    Parishes["Ferns"] = p

    p = new Parish()   
    p.Name       =  "Glynn"
    p.Priests    =  ["Patrick Stafford"]
    p.Churches   =  ["Glynn"]    
    Parishes["Glynn"] = p

    p = new Parish()   
    p.Name       =  "Gorey"
    p.Priests    =  ["William Howell", "Frank Murphy", "William Flynn"]
    p.Churches   =  ["Gorey"]    
    p.Email      =  "goreyparish@hotmail.com"
    p.Phone      =  "Emergency Number 087-2378773"
    p.Url        =  "www.goreyparish.com"
    Parishes["Gorey"] = p

    p = new Parish()   
    p.Name       =  "Horeswood"
    p.Priests    =  ["Gerald O'Leary"]
    p.Churches   =  ["Horeswood"]    
    Parishes["Horeswood"] = p

    p = new Parish()   
    p.Name       =  "Kilanerin"
    p.Priests    =  ["Patrick O'Brien"]
    p.Churches   =  ["Kilanerin"]    
    Parishes["Kilanerin"] = p

    p = new Parish()   
    p.Name       =  "Kilaveney"
    p.Priests    =  ["Raymond Gahan"]
    p.Churches   =  ["Kilaveney"]    
    Parishes["Kilaveney"] = p

    p = new Parish()   
    p.Name       =  "Kilmore"
    p.Priests    =  ["Denis Doyle"]
    p.Churches   =  ["Kilmore"]    
    Parishes["Kilmore"] = p

    p = new Parish()   
    p.Name       =  "Kilmuckridge"
    p.Priests    =  ["Séamus Larkin"]
    p.Churches   =  ["Kilmuckridge"]    
    Parishes["Kilmuckridge"] = p

    p = new Parish()   
    p.Name       =  "Kilrane"
    p.Priests    =  ["Diarmuid Desmond"]
    p.Churches   =  ["Kilrane (Rosslare Harbour)", "Kilrane"]    
    Parishes["Kilrane"] = p

    p = new Parish()   
    p.Name       =  "Kilrush"
    p.Priests    =  ["Joseph Power"]
    p.Churches   =  ["Kilrush"]    
    Parishes["Kilrush"] = p

    p = new Parish()   
    p.Name       =  "Marshalstown"
    p.Priests    =  ["Daniel McDonald"]
    p.Churches   =  ["Marshalstown"]    
    Parishes["Marshalstown"] = p

    p = new Parish()   
    p.Name       =  "Monageer"
    p.Priests    =  ["William Cosgrave"]
    p.Churches   =  ["Monageer"]    
    Parishes["Monageer"] = p

    p = new Parish()   
    p.Name       =  "New Ross"
    p.Priests    =  ["Joseph McGrath", "Tomás Kehoe", "Roger O'Neill"]
    p.Churches   =  ["New Ross", "Mount Carmel", "Augustinian Priory"]    
    p.Email      =  "newrossparish@iolfree.ie"
    p.Url        =  "www.newrossparish.ie"
    Parishes["New Ross"] = p

    p = new Parish()   
    p.Name       =  "Newbawn"
    p.Priests    =  ["Thomas McGrath"]
    p.Churches   =  ["Newbawn"]    
    Parishes["Newbawn"] = p

    p = new Parish()   
    p.Name       =  "Oulart"
    p.Priests    =  ["John Jordan"]
    p.Churches   =  ["Oulart"]    
    Parishes["Oulart"] = p

    p = new Parish()   
    p.Name       =  "Our Lady’s Island"
    p.Priests    =  ["Brendan Nolan"]
    p.Churches   =  ["Our Lady’s Island"]    
    p.Phone      =  "053-9131167"
    p.Fax        =  "053-9131699"
    p.Email      = "info@ourladysisland.com"
    Parishes["Our Lady’s Island"] = p

    p = new Parish()   
    p.Name       =  "Oylegate"
    p.Priests    =  ["James Cogley"]
    p.Churches   =  ["Oylegate"]    
    Parishes["Oylegate"] = p

    p = new Parish()   
    p.Name       =  "Piercestown"
    p.Priests    =  ["John O'Reilly"]
    p.Churches   =  ["Piercestown"]    
    Parishes["Piercestown"] = p

    p = new Parish()   
    p.Name       =  "Ramsgrange"
    p.Priests    =  ["Bernard Cushen"]
    p.Churches   =  ["Ramsgrange"]    
    Parishes["Ramsgrange"] = p

    p = new Parish()   
    p.Name       =  "Rathangan"
    p.Priests    =  ["Tom Dalton"]
    p.Churches   =  ["Rathangan", "Duncormick"]    
    Parishes["Rathangan"] = p

    p = new Parish()   
    p.Name       =  "Rathnure"
    p.Priests    =  ["Anthony O'Connell"]
    p.Churches   =  ["Rathnure"]    
    Parishes["Rathnure"] = p

    p = new Parish()   
    p.Name       =  "Riverchapel"
    p.Priests    =  ["John Sweetman"]
    p.Churches   =  ["Riverchapel"]    
    Parishes["Riverchapel"] = p

    p = new Parish()   
    p.Name       =  "Taghmon"
    p.Priests    =  ["Sean Gorman"]
    p.Churches   =  ["Taghmon"]    
    Parishes["Taghmon"] = p

    p = new Parish()   
    p.Name       =  "Tagoat"
    p.Priests    =  ["Matthias Glynn"]
    p.Churches   =  ["Tagoat"]    
    Parishes["Tagoat"] = p

    p = new Parish()   
    p.Name       =  "Templetown"
    p.Priests    =  ["Oliver Sweeney"]
    p.Churches   =  ["Templetown"]    
    p.Phone      =  "051-397113"
    Parishes["Templetown"] = p

    p = new Parish()   
    p.Name       =  "Wexford - Mensal Parish"
    p.Priests    =  ["James Fegan", "Aodhán Marken", "Michael O'Shea", "Brian Whelan"]
    p.PriestInResidence = "Kevin Cahill"
    p.Churches   =  ["Rowe St","Bride St", "Friary"]  
    p.Phone      = "053-9171918"
    p.Email      = "admwex@indigo.ie"
    p.Url        = "www.wexfordparish.com"
    Parishes["Wexford"] = p

// Curacies
    c = new Curacy()   
    c.Name       =  "Askamore"
    c.Parish     =  "Kilrush"
    c.Churches   =  ["Askamore"]
    c.Priests    =  ["Joseph Power"]
    Curacies["Askamore (Kilrush)"] = c
          
    c = new Curacy()       
    c.Name       = "Ballaghkeene"
    c.Parish     = "Oulart"
    c.Churches   = ["Ballaghkeene"]
    c.Priests    = ["Dermot Gahan"]
    Curacies["Ballaghkeene (Oulart)"] = c

    c = new Curacy()       
    c.Name       = "Ballycanew"
    c.Parish     = "Camolin"
    c.Churches   = ["Ballycanew"]
    c.Priests    = ["Thomas Orr"]
    Curacies["Ballycanew (Camolin)"] = c

    c = new Curacy()       
    c.Name       = "Ballyduff"
    c.Parish     = "Ferns"
    c.Churches   = ["Ballyduff"]
    c.Priests    = ["Richard Redmond"]
    Curacies["Ballyduff (Ferns)"] = c

    c = new Curacy()       
    c.Name       = "Ballyfad"
    c.Parish     = "Kilanerin"
    c.Churches   = ["Ballyfad"]
    c.Priests    = ["Michael Doyle"]
    Curacies["Ballyfad (Kilanerin)"] = c

    c = new Curacy()       
    c.Name       = "Ballykelly"
    c.Parish     = "Horeswood"
    c.Churches   = ["Ballykelly"]
    c.Priests    = ["Donald Kenny"]
    Curacies["Ballykelly (Horeswood)"] = c

    c = new Curacy()       
    c.Name       = "Ballymitty"
    c.Parish     = "Bannow"
    c.Churches   = ["Ballymitty"]
    c.Priests    = ["Kevin Cahill"]
    Curacies["Ballymitty (Bannow)"] = c

    c = new Curacy()       
    c.Name       = "Ballymurn"
    c.Parish     = "Crossabeg"
    c.Churches   = ["Ballymurn"]
    c.Priests    = ["James Finn"]
    Curacies["Ballymurn (Crossabeg)"] = c

    c = new Curacy()       
    c.Name       = "Ballyoughter"
    c.Parish     = "Camolin"
    c.Churches   = ["Ballyoughter"]
    c.Priests    = ["Thomas Orr"]
    Curacies["Ballyoughter (Camolin)"] = c

    c = new Curacy()       
    c.Name       = "Barntown"
    c.Parish     = "Glynn"
    c.Churches   = ["Barntown"]
    c.Priests    = ["John Carroll"]
    Curacies["Barntown (Glynn)"] = c

    c = new Curacy()       
    c.Name       = "Boolavogue"
    c.Parish     = "Monageer"
    c.Churches   = ["Boolavogue"]
    c.Priests    = ["Michael Byrne CC"]
    Curacies["Boolavogue (Monageer)"] = c

    c = new Curacy()   
    c.Name       =  "Caim"
    c.Parish     =  "Ballindaggin"    
    c.Churches   =  ["Caim"]
    c.Priests    =  ["Fintan Morris"]
    Curacies["Caim (Ballindaggin)"] = c

    c = new Curacy()       
    c.Name       = "Caroreigh/Trinity"
    c.Parish     = "Taghmon"
    c.Churches   = ["Caroreigh", "Trinity"]
    c.Priests    = ["David Murphy"]
    Curacies["Caroreigh/Trinity (Taghmon)"] = c

    c = new Curacy()       
    c.Name       = "Castledockrell"
    c.Parish     = "Marshalstown"
    c.Churches   = ["Castledockrell"]
    c.Priests    = ["James Lennon"]
    Curacies["Castledockrell (Marshalstown)"] = c

    c = new Curacy()       
    c.Name       = "Cleariestown"
    c.Parish     = "Rathangan"
    c.Churches   = ["Cleariestown"]
    c.Priests    = []
    c.PriestInResidence = "James Ryan"
    Curacies["Cleariestown (Rathangan)"] = c

    c = new Curacy()       
    c.Name       = "Clologue"
    c.Parish     = "Ferns"
    c.Churches   = ["Clologue"]
    c.Priests    = ["Richard Redmond"]
    Curacies["Clologue (Ferns)"] = c

    c = new Curacy()       
    c.Name       = "Coolfancy"
    c.Parish     = "Carnew"
    c.Churches   = ["Coolfancy", "Shillelagh"]
    c.Priests    = ["William Byrne"]
    Curacies["Coolfancy (Carnew)"] = c
    
    c = new Curacy()       
    c.Name       = "Courtnacuddy"
    c.Parish     = "Davidstown"
    c.Churches   =  ["Courtnacuddy"]
    c.Priests    =  ["James Nolan"]
    Curacies["Courtnacuddy (Davidstown)"] = c

    c = new Curacy()       
    c.Name       = "Crossbridge"
    c.Parish     = "Kilaveney"
    c.Churches   = ["Crossbridge"]
    c.Priests    = ["Donal Berney"]
    Curacies["Crossbridge (Kilaveney)"] = c

    c = new Curacy()       
    c.Name       = "Curracloe"
    c.Parish     = "Castlebridge"
    c.Churches   = ["Curracloe", "Screen"]
    c.Priests    = ["James Fitzpatrick"]
    Curacies["Curracloe (Castlebridge)"] = c

    c = new Curacy()       
    c.Name       = "Galbally"
    c.Parish     = "Bree"
    c.Churches   = ["Galbally", "Bellvue"]
    c.Priests    = ["Matthew Boggan"]
    Curacies["Galbally (Bree)"] = c

    c = new Curacy()       
    c.Name       = "Glenbrien"
    c.Parish     = "Oylegate"
    c.Churches   = ["Glenbrien"]
    c.Priests    = ["James Cogley"]
    Curacies["Glenbrien (Oylegate)"] = c

    c = new Curacy()       
    c.Name       = "Gusserane"
    c.Parish     = "Ballycullane"
    c.Churches   = ["Gusserane"]
    c.Priests    =  ["Sean Laffan"]
    Curacies["Gusserane (Ballycullane)"] = c

    c = new Curacy()       
    c.Name       = "Kilmore Quay"
    c.Parish     = "Kilmore"
    c.Churches   = ["Kilmore Quay"]
    c.Priests    = [""]
    Curacies["Kilmore Quay (Kilmore)"] = c

    c = new Curacy()       
    c.Name       = "Kilmyshall"
    c.Parish     = "Bunclody"
    c.Churches   = ["Kilmyshall"]
    c.Priests    = ["Gabriel Barros"]
    Curacies["Kilmyshall (Bunclody)"] = c

    c = new Curacy()       
    c.Name       = "Kiltealy"
    c.Parish     = "Ballindaggin"
    c.Churches   = ["Kiltealy"]
    c.Priests    = ["Fintan Morris"]
    Curacies["Kiltealy (Ballindaggin)"] = c

    c = new Curacy()       
    c.Name       = "Monamolin"
    c.Parish     = "Kilmuckridge"
    c.Churches   = ["Monamolin"]
    c.Priests    = ["John Byrne"]
    Curacies["Monamolin (Kilmuckridge)"] = c

    c = new Curacy()       
    c.Name       = "Monaseed"
    c.Parish     = "Craanford"
    c.Churches   = ["Monaseed"]
    c.Priests    = ["Felix Byrne"]
    Curacies["Monaseed (Craanford)"] = c

    c = new Curacy()       
    c.Name       = "Mulrankin"
    c.Parish     = "Kilmore"
    c.Churches   = ["Mulrankin", "Tomhaggard"]
    c.Priests    = ["Patrick O'Conor"]
    Curacies["Mulrankin (Kilmore)"] = c

    c = new Curacy()       
    c.Name       = "Murrintown"
    c.Parish     = "Piercestown"
    c.Churches   = ["Murrintown"]
    c.Priests    = ["James Moynihan"]
    Curacies["Murrintown (Piercestown)"] = c

    c = new Curacy()       
    c.Name       = "Poulfur"
    c.Parish     = "Templetown"
    c.Churches   = ["Poulfur"]
    c.Priests    =  ["Oliver Sweeney"]
    Curacies["Poulfur (Templetown)"] = c

    c = new Curacy()       
    c.Name       = "Poulpeasty"
    c.Parish     = "Cloughbawn"
    c.Churches   = ["Poulpeasty"]
    c.Priests    = ["Robert McGuire"]
    Curacies["Poulpeasty (Cloughbawn)"] = c

    c = new Curacy()       
    c.Name       = "Raheen"
    c.Parish     = "Newbawn"
    c.Churches   = ["Raheen"]
    c.Priests    =  ["James Furlong"]
    Curacies["Raheen (Newbawn)"] = c

    c = new Curacy()       
    c.Name       = "Rathgarogue"
    c.Parish     = "Cushinstown"
    c.Churches   = ["Rathgarogue"]
    c.Priests    = ["Odhrán Furlong"]
    Curacies["Rathgarogue (Cushinstown)"] = c

    c = new Curacy()       
    c.Name       = "Rosslare"
    c.Parish     = "Tagoat"
    c.Churches   = ["Rosslare"]
    c.Priests    = ["James Murphy"]
    Curacies["Rosslare (Tagoat)"] = c

    c = new Curacy()       
    c.Name       = "Screen"
    c.Parish     = "Castlebridge"
    c.Churches   = ["Curracloe", "Screen"]
    c.Priests    = ["James Fitzpatrick"]
    Curacies["Screen (Castlebridge)"] = c

    c = new Curacy()       
    c.Name       = "Shillelagh"
    c.Parish     = "Carnew"
    c.Churches   = ["Coolfancy","Shillelagh"]
    c.Priests    = ["William Byrne"]
    Curacies["Shillelagh (Carnew)"] = c
       
    c = new Curacy()   
    c.Name       =  "St Leonard’s"
    c.Parish     =  "Ballycullane"
    c.Churches   =  ["St Leonard’s"]
    c.Priests    =  ["Patrick Banville"]
    Curacies["St Leonard’s (Ballycullane)"] = c

    c = new Curacy()       
    c.Name       = "Tacumshane"
    c.Parish     = "Our Lady’s Island"
    c.Churches   = ["Tacumshane", "Our Lady’s Island"]
    c.Priests    = ["Brendan Nolan"]
    Curacies["Tacumshane (Our Lady’s Island)"] = c

    c = new Curacy()       
    c.Name       = "Tara Hill"
    c.Parish     = "Gorey"
    c.Churches   = ["Tara Hill"]
    c.Priests    = [""]
    Curacies["Tara Hill (Gorey)"] = c

    c = new Curacy()       
    c.Name       = "Templeudigan"
    c.Parish     = "Rathnure"
    c.Churches   = ["Templeudigan"]
    c.Priests    = ["Anthony O'Connell"]
    Curacies["Templeudigan (Rathnure)"] = c

    c = new Curacy()       
    c.Name       = "Terrerath"
    c.Parish     = "Cushinstown"
    c.Churches   = ["Terrerath"]
    c.Priests    = [""]
    Curacies["Terrerath (Cushinstown)"] = c
