Ralph Vaughan Williams (1872-1958)
Mass in G minor [23''27]
1 Kyrie [4''26]
James Tweedie (treble), Tristram Cooke (countertenor), Guy Cutting (tenor), Stuart O''Hara (bass)
2 Gloria [4''09]
James Tweedie (treble), Robin Blaze (countertenor), Julian Stocker (tenor), Guy Cutting (tenor), Jonathan Brown (bass)
3 Credo [6''16]
Benji Rimington (treble), Robin Blaze (countertenor), Julian Stocker (tenor), Stuart O''Hara (bass)
4 Sanctus [2''46]
5 Benedictus [2''23]
Freddie Ursell Beer (treble), David Gould (countertenor), William Balkwill (tenor), Jonathan Brown (bass)
6 Agnus Dei [3''27]
Freddie Ursell Beer (treble), David Martin (countertenor), William Balkwill (tenor), Jonathan Brown (bass)
Ralph Vaughan Williams (1872-1958)
7 O taste and see [1''38]
Peter Holder (organ), James Tweedie (treble)
Sir James MacMillan (b1959)
8 What man is he that feareth the Lord? [6''16]
Sir James MacMillan (b1959)
Mass of St Edward the Confessor [14''43]
9 Kyrie [3''04]
10 Gloria [5''03]
11 Sanctus & Benedictus [3''36]
12 Agnus Dei [3''00]
Simon Wall (tenor)
Sir James MacMillan (b1959)
13 A special appeal I would like to make a special appeal [6''35]
Peter Holder (organ), Mark Dobell (tenor)
Sir James MacMillan (b1959)
14 Who shall separate us? [3''03]
Sir John Tavener (1944-2013)
Magnificat and Nunc dimittis ''Collegium Regale'' [10''37]
15 Magnificat My soul doth magnify the Lord [7''26]
descSectionTop) {
desc_sections.find("ul").css({"top": 0});
if (currentScrollPos > prevScrollPos && product_window.scrollTop() > descSectionTop + headerHeight) {
desc_sections
.stop()
.addClass("desc_sections_hold")
.css({"min-height": descSectionHeight})
.find("ul")
.css({"top": 0});
} else if (prevScrollPos > currentScrollPos) {
desc_sections
.stop()
.addClass("desc_sections_hold")
.css({"min-height": descSectionHeight})
.find("ul")
.css({"top": headerHeight});
} else {
prevScrollPos = 0;
} prevScrollPos = currentScrollPos;
if ($(window).width() < 768) {
$("body").css("padding-bottom", "68px");
}
} else {
prevScrollPos = 0;
desc_sections.stop().removeClass("desc_sections_hold")
if ($(window).width() < 768) {
$("body").css("padding-bottom", "68px");
}
}
// 點選產品說明滑動
$(".desc_sections a.scroll").bind("click", function(event) {
var targetScrollTop = parseInt($($(this).attr("href")).offset().top - descSectionHeight + 1);
if (targetScrollTop > window.scrollY + 1) {
$("html, body").stop().animate({
scrollTop: targetScrollTop
}, 300);
} else {
$("html, body").stop().animate({
scrollTop: targetScrollTop - headerHeight
}, 300);
}
});
// 顯示當前產品說明
if (currentScrollPos > prevScrollInformationPos) {
$.each(desc_section_list, function(index, desc_section) {
var desc_sectionTop = $(desc_section).offset().top - descSectionHeight - 1
var desc_sectionHeight = $(desc_section).height()
var current_desc_section = $("a.scroll[href$='" + $(desc_section).attr("id") + "']");
if (product_window.scrollTop() > desc_sectionTop || index === 0) {
current_desc_section
.stop()
.addClass('active')
.parent()
.siblings()
.find("a")
.removeClass('active');
} else {
current_desc_section.removeClass('active');
} prevScrollInformationPos = currentScrollPos;
});
} else {
$.each(desc_section_list, function(index, desc_section) {
var desc_sectionTop = $(desc_section).offset().top - descSectionHeight - 1
var desc_sectionHeight = $(desc_section).height()
var current_desc_section = $("a.scroll[href$='" + $(desc_section).attr("id") + "']");
if (product_window.scrollTop() + headerHeight > desc_sectionTop) {
current_desc_section
.stop()
.addClass('active')
.parent()
.siblings()
.find("a")
.removeClass('active');
} else {
current_desc_section.removeClass('active');
}
});
prevScrollInformationPos = currentScrollPos;
}
});
})