CD 1
1.Overture 5:18
Opening Act I
2. I Curly: 'Oh, What a Beautiful Morning' with Aunt Eller 3:19
3. 2 Laurey: Laurey's Entrance 0:26
4. 3 Curly, Aunt Eller, and Laurey: 'The Surrey with the Fringe on Top' 6:04
5. 4 Will Parker, Aunt Eller, Ike Skidmore, and Boys: 'Kansas City' 5:23
6. 5 Aunt Eller and Curly: 'The Surrey with the Fringe on Top' (Reprise) 0:59
7. 6 Ado Annie: 'I Can't Say No!' 3:11
8. 7 Ado Annie: 'I Cain't Say No!' (Encore) 0:57
9. 8 Will Parker, Ado Annie, Curly, and All: Entrance of Ensemble 0:59
10. 9 Laurey, Aunt Eller, and Girls: 'Many a New Day' 3:06
11. 10 Girls and Laurey: 'Many a New Day' (Dance and Reprise) 3:49
12. 11 Ali Hakim, Men, and Girls: 'It's a Scandal! It's a Outrage!' 3:25
13. 12 Curly and Laurey: 'People Will Say We're in Love' - 5:55
14. 13 Change of Scene 2:26
15. 14 Curly and Jud Fry: 'Pore Jud is Daid' 5:07
16. 15 Jud Fry: 'Lonely Room' 2:41
CD 2
Act I concluded
1. 16 Change of Scene 1:46
Dream Sequence
2. a. Melos Vivian, Laurey, Gertie, Cummings, Ellen, and Kate 0:42
3. b. Out of My Dreams. Kate, Ellen, Virginia, Vivian, and Laurey 2:31
4. c. Interlude to Ballet 0:15
5. d. Dream Ballet1 3:28
6. 18 Entr'acte 2:34
Act II
7. 19 Andrew Carnes, Aunt Eller, Will Parker, Curly, Cord Elam, 4:22
Farmer, Fred, Ado Annie, and All: 'The Farmer and the Cowman'
8. 20 Farmer Dance. All 2:10
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;
}
});
})