CD 1–5 BEETHOVEN Symphonies 1–9; Egmont Overture Popp, Watkinson, Schreier Holl
CD 6 BEETHOVEN Symphony No.9 Price, Finnilä, Laubenthal, Rintzler
CD 7–9 BEETHOVEN Piano Concertos 1–5 Arrau
CD 10–12 BEETHOVEN Piano Concertos 1–5 Perahia
CD 13 BEETHOVEN Violin Concerto, Romances Szeryng
CD 14 BEETHOVEN Violin Concerto Krebbers
CD 15 BEETHOVEN Symphony No.8; Romances Grumiaux MENDELSSOHN Symphony No.4; Hebrides Overture
CD 16 MENDELSSOHN A Midsummer Night’s Dream Woodland
CD 17 MENDELSSOHN Violin Concerto; BRUCH Violin Concerto No.1 Perlman
CD 18 HAYDN Symphonies 96 & 99; HANDEL Music for the Royal Fireworks Suite
CD 19 SCHUBERT Symphonies 5 & 8
CD 20 SCHUBERT Symphony No.9
CD 21 SCHUBERT Rosamunde Heynis
CD 22–25 BRAHMS Symphonies 1–4; Hungarian Dances 1–8; Serenades; St Anthony Variations (1974); Tragic & Academic Festival Overtures
CD 26 BRAHMS Violin Concerto Szeryng
CD 27 BRAHMS Violin Concerto Krebbers
CD 28 BRAHMS Double Concerto Szeryng, Starker; BRUCH Violin Concerto No.1 Grumiaux
CD 29 BRAHMS Double Concerto Perlman, Rostropovich
CD 30–31 BRAHMS Piano Concertos 1 & 2 Arrau
CD 32 BRAHMS Piano Concerto No.2 Brendel
CD 33 BRAHMS Piano Concerto No.1 Ashkenazy; St Anthony Variations* (1984)
CD 34–35 SCHUMANN Symphonies 1–4; Overtures to Genoveva, Manfred
CD 36–48 BRUCKNER Symphonies 0–9; Te Deum [includes two recordings of Symphonies Nos. 7, 8 & 9]
CD 49–63 MAHLER Symphonies 1–10 (Unfinished); Das Lied von der Erde; Das Klagende Lied, Lieder eines fahrenden Gesellen; Kindertotenlieder; Songs from Des Knaben Wunderhorn [includes two recordings of Symphonies Nos. 1, 4 & 7]
CD 64–71 TCHAIKOVSKY Symphonies 1–6, Manfred; Romeo and Juliet Overture-Fantasia; Slavonic March; Francesca da Rimini; The Storm [includes two recordings of Symphonies Nos. 4 & 6]
CD 72 TCHAIKOVSKY & MENDELSSOHN Violin Concertos Grumiaux
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;
}
});
})