// DATA - Miscellaneous Information

// -----------------------------------------------------------------------------------------------------------
function loadMessenger()
{

//  Repeat 'addMessengerPDF' for each pdf file to be made available (ensure the file exists in the 'files' directory).
//     Format -> addMessengerPDF('description', 'filename', 'lastyearmonth in document')

        addMessengerPDF('Messenger - October 2009', 'MessengerIssue222.PDF', '201006');

}
// -----------------------------------------------------------------------------------------------------------
function loadMusicInformation()
{

//  Repeat 'addMusic' as required
//     Format -> addMusic('musicfilename', 'title', 'artist', 'composer')

        addMusic('HowLovely.wma', 'How Lovely are Thy Dwelling', 'Choir of St Mary the Virgin', 'Noel Rawsthorne');
        addMusic('LookatTheWorld.wma', 'Look at the World', 'Choir of St Mary the Virgin', 'John Rutter');

}
// -----------------------------------------------------------------------------------------------------------
function loadContactInformation()
{

        setContactEmail('yattonmoor@waitrose.com');
        setContactTelephone('01934 832184');

        addContactAddress('St Mary\'s Church');
        addContactAddress('Church Road');
        addContactAddress('Yatton');
        addContactAddress('Bristol');
        addContactAddress('BS49 4HH');

        addContactHours('Monday to Friday: 9:00am to 11:30am');

}
// -----------------------------------------------------------------------------------------------------------
