Banner Headline: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam rhoncus non lacus eget commodo.
Call to Action
Menu
Menu
Hi,' + fname + '
'; }; }); }; let photoFilepath = data["image"]; let role = data["userRoleFormatted"] || ""; let domain = "https://d2wsrejhnxatgp.cloudfront.net/"; // Set the user profile image let url = domain + photoFilepath; if (photoFilepath === undefined || photoFilepath === "") { url = "/static/media/user_profile_logo.1943adb5.svg"; } //populate menu profile for non-SC if ( role !== "Sundance Circle") { //populate desktop menu profile jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile profile name jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //populate menu profile for SC if ( role === "Sundance Circle") { //populate desktop menu jQuery('li.menu-item-14573 a').each(function(i) { let userGreeting = 'Hi,'; if (jQuery('li.menu-item-14573 a')[i].innerHTML === userGreeting) { jQuery('li.menu-item-14573 a').css("opacity", "1"); jQuery('li.menu-item-14573 a')[i].innerHTML = '
' + role + '
Hi,' + fname + '
'; }; }); //populate mobile name and user type for SC jQuery('#user-profile-name').html('
Hi, ' + fname + '
' + role + '
'); //Populate mobile profile image upper nav jQuery('#mobile-profile-image').html(''); }; //show my festival menu links jQuery('.my-fest-mobile').show(); //Populate mobile profile // jQuery('.mobile-profile').html('
Hi, ' + fname + ''); //show user profile menu on desktop jQuery('elementor-nav-menu--layout-horizontal li.menu-item-14573').show(); jQuery(".mobile_menu .menu-item-14573").css("display","none") // Hide Sign In / Register jQuery('li.menu-item-1281').hide(); // Show Cart Icon //jQuery('.cart_icon').show(); //jQuery('.cart_header_column').show(); // Show Schedule Icon //jQuery('.calendar_header_column').show(); //jQuery('.calendar_icon').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide search Icon// jQuery('.search_icon').hide(); //show/hide desktop profile Item depending on screensize// if(jQuery(window.width() < 768) {// //show user profile menu// jQuery('li.menu-item-1260').show();// } else {// jQuery('li.menu-item-1260').hide();// }); jQuery('.mobile_logged_in').show(); jQuery('.mobile_logged_out').hide();} else { // Hide My Library jQuery('li.menu-item-942').hide(); // Hide Hi, User jQuery('li.menu-item-14573').hide(); // Hide role specific pages jQuery('li.menu-item-22560').hide(); jQuery('li.menu-item-22561').hide(); jQuery('li.menu-item-22562').hide(); // Show Sign In / Register jQuery('li.menu-item-1281').show(); // Widen nav_header_column// jQuery('.nav_header_column').css("width","80%"); //hide upper sign-in button jQuery(".upper-sign-in-button").show(); //increase upper nav column width jQuery(".upper-nav-col").css("width","30%"); //decrease logo col width jQuery(".logo-col").css("width","55%"); //align sign-in button jQuery('.upper-sign-in-button').css("margin-bottom","0px !important"); // Hide Cart Icon //jQuery('.cart_header_column').hide(); //jQuery('.cart_icon').hide(); // Hide Schedule Icon //jQuery('.calendar_header_column').hide(); //jQuery('.calendar_icon').hide(); //show my festival menu links jQuery('.my-fest-mobile').hide(); //hide search Icon// jQuery('.search_icon').hide(); jQuery('.mobile_logged_in').hide(); jQuery('.mobile_logged_out').show();}// Sign OutjQuery(".menu-item-object-custom .menu-item-1261 a").click(function(event) { signOut(event);});jQuery(".mobile-sign-out").click(function(event) { signOut(event);});jQuery(".mobile-logout-button").click(function(event) { signOut(event);});// Show Cart Items (hidden during off season)if (loggedinData) { data = JSON.parse(loggedinData); jQuery.ajax({ url: cartUrl, type: 'post', data: { "userToken": data["token"] }, headers: { auth: "Bearer 5iMhxOXyxzKylr41AY5X6BljYpCBK1n6" }, dataType: 'json', success: function (data) { if (data.message.count > 0) { jQuery('.cart_items').html(data.message.count); jQuery('.cart_items').show(); } } });}// Open SearchjQuery(".search_icon").click(function(event) { jQuery('.elementor-element-6eba26eb').show();});// Close SearchjQuery(".close_search").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.elementor-element-6eba26eb').hide();});// NOTE: DISABLED Spaceship for SFF23 as New Frontier cancelled.// Set the Spaceship link//let tokenData = getCookie("myLoginToken");let tokenData = false;if (tokenData) { jQuery.ajax({ url: 'https://digitalcms.sundance.org:3000/api/thirdPartyToken', type: 'post', data: {"id": "62bc1275092076223a6764c5","redirectLink": "https://newfrontier.sundance.org/"}, headers: { Authorization: "Bearer " + tokenData }, dataType: 'json', success: function (data) { jQuery('li.menu-item-934 a').attr('href',data.URL); } });}// Toggle the mobile menujQuery("#elementor-popup-modal-2099 .dialog-close-button").click(function(event) { event.preventDefault; event.stopPropogation; event.stopImmediatePropogation; jQuery('.toggle_menu').removeClass('navmenu-active'); var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname);});jQuery("#elementor-popup-modal-2099 .dialog-widget-content").on("transitionend webkitTransitionEnd oTransitionEnd", function(){ //do something here console.log('mobile popup animationend');}, false);// Do not search if less than two charactersjQuery(".sd_enter_serach").click(function(event) { event.preventDefault(); if (jQuery("#serach_form input")[0].value.length < 2) { jQuery(".sd_error_msg").html('Enter at least two characters to search.'); jQuery("#search_input").attr("placeholder", ""); } else { jQuery(".sd_error_msg").html(''); jQuery("#serach_form").submit(); }});// when user clicks to start typing in the search input, hide error messagejQuery("#search_input").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});jQuery(".sd_error_msg").click(function(event) { event.preventDefault(); jQuery(".sd_error_msg").html('');});}jQuery( document ).ready(function() { configHeader();});//--------------------------------// Re-run configHeader once mobile menu is Open//-------------------------------- // Select the entire DOM for observing:const target = document.querySelector('body'); // Create a new observer instance:const observer = new MutationObserver(function() { if (document.getElementById('elementor-popup-modal-2099')) { //jQuery('.toggle_menu').toggleClass('navmenu-active'); //jQuery('body,html').toggleClass('dialog-prevent-scroll'); setTimeout(() => { var pathname = window.location.pathname; window.history.pushState("object or string", "Title", pathname); }, "10"); //jQuery('.toggle_menu').toggleClass('navmenu-active'); configHeader(); }}); // Set configuration object:const config = { childList: true }; // Start the observerobserver.observe(target, config);
Highlights
- October 10, 2024
- October 10, 2024
By Jessica Herndon
We all have moments from movies that we love to rewatch. Some of the most unforgettable and adored scenes in indie movies are the ones we least suspect. Michael Madsen dancing around to Stealers Wheel inReservoir Dogs. Jeff Bridges doing the mashed potato dance inThe Big Lebowski. Come to think of it, many of these favorite moments rely on a surprise musical moment presenting itself to spice things up.
In this storied tradition, the lip-synch scene fromThe Skeleton Twins— a touching, bittersweet comedy-drama starring Kristen Wiig and Bill Hader as estranged siblings — is high on this writer’s list and always worth another play.
Today marks the 10th anniversary of the hidden gem film’s theatrical release.The Skeleton Twinspremiered at the 2014 Sundance Film Festival, won the Waldo Salt Screenwriting Award, and revealed another side of theSaturday Night Livealums. Even now, a decade later, I still get the same sense of elation as I groove along with Maggie (Wiig) and Milo (Hader) as they pretend to belt out to Starship’s “Nothing’s Gonna Stop Us Now.”
This dance break is a sweet shock to the system within a film that focuses on deep issues and emotional trauma. The story is set in motion when Milo, an actor who’s struggled to find success in Los Angeles, comes to stay with his twin, Maggie, in Nyack, New York, after he attempts suicide. Reunited after being estranged for 10 years, the two reckon with the past and what it means to move forward despite neither feeling like they deserve to be alive.
The pivotal lip-synch session, which Milo initiates to break the tension between him and his sister after they start arguing, captures the delicate balance of comedy and hardships that defines the movie, using humor as a vehicle to navigate complex feelings. It serves as a reminder that among all the confusion, self-hatred, regret, longing, and loneliness these characters — and many of us in the audience — feel daily, doses of joy can offset that weight.
The Skeleton Twinsis among great company of other Sundance Film Festival titles where characters break out into deeply resonant and impromptu performances to epic earworms. To celebrate a decade ofThe Skeleton Twins, we’ve compiled a dopamine rush of film clips from heartwarming, hilarious, and vivid musical moments from past Fest favorites.
Spoiler alert! There are plot reveals ahead.
Reality Bites(1994 Sundance Film Festival)
Known as one of the quintessential Gen X movies,Reality Bitesstars Winona Ryder,Ethan Hawke, Janeane Garofalo, and Steve Zahn in Ben Stiller’s film about a group of young adults freshly out of college as they navigate life in the 1990s. Here, as Lelaina (Ryder) and her friends stock up on food at the gas station with the gas card her dad gave her, The Knack’s “My Sharona” comes on the radio. After Vickie (Garofalo) asks the gas attendant to turn up the volume, they break out into a dance party. All except the grungy, indifferent Troy (Hawke), who won’t dance, but flashes a reluctant grin at the bewildered, middle-aged attendant who watches the 20-somethings jam out. Checkherefor viewing options.
Party Girl(1995 Sundance Film Festival)
Set in the ’90s underground club scene in New York,Party Girlfollows Parker Posey as Mary, a sharp and sassy Club Kid — and she is irresistible. Her style, her attitude, her spacious loft, her crew of equally idiosyncratic 20-somethings (Guillermo Diaz among them), and the parties she throws to earn money to pay back her grandmother for bailing her out of jail make this film a cult classic. In this scene, Mary vogues at one of her soirées to Cajmere’s “U Got Me Up (Underground Goodie Mix ’93) [feat. Dajae]” with real-life downtown party figure Natasha Twist, who makes a cameo in the film. It’s an infectious moment that screams, “You had to be there!” Checkherefor viewing options.
American Psycho(2000 Sundance Film Festival)
Christian Bale, as disturbed, achievement-obsessed murderer Patrick Bateman in the neo-noirAmerican Psycho, loves breaking down the brilliance of contemporary artists before he kills. Here, he turns up Huey Lewis and the News’ “Hip to Be Square” — the film is set in the late 1980s, after all — and gives a speech about the band’s pop progression before he takes the life of fellow businessman Paul Allen (Jared Leto), whom he envies. Patrick doesn’t do much dancing in the scene, except for a little hip shake before he slams an axe down on Paul’s head. But the tempo of his crime has a rhythm all its own. Checkherefor viewing options.
Napoleon Dynamite(2004 Sundance Film Festival)
When Napoleon (Jon Heder) and his best friend, who is running for class president — Vote for Pedro! — learn that Pedro (Efren Ramirez) is supposed to perform a skit after his campaign speech, Napoleon steps up and dances to Jamiroquai’s “Canned Heat” in front of the entire student body. Don’t we all wish we had a friend who would get on stage and dance on our behalf? That’s loyalty! This scene and the wacky and endearing uniqueness of each character in this film, which celebrated its20th anniversarythis year, helped make it a cult classic. Checkherefor viewing options.
Little Miss Sunshine(2006 Sundance Film Festival)
This is the performance we were waiting for! The quirky, Oscar-winning comedy culminates in this wild, heartfelt moment backed by Rick James’ “Super Freak” at the Little Miss Sunshine beauty pageant after Olive (Abigail Breslin) and her dysfunctional family, including mom Sheryl (Toni Collette), dad Richard (Greg Kinnear), brother Dwayne (Paul Dano), uncle Frank (Steve Carell), and grandpa Edwin (Alan Arkin), take a road trip from Albuquerque to California in an old Volkswagen so Olive can compete. Checkherefor viewing options.
(500) Days of Summer(2009 Sundance Film Festival)
Tom Hansen (Joseph Gordon-Levitt) feels like the man when he exits his bathroom and finds Summer (Zooey Deschanel) waiting for him on his bed. As he approaches his dream girl, we transition to a fantasy sequence where Tom’s elation plays out in the form of a campy, heavily choreographed number to Daryl Hall and John Oates’ “You Make My Dreams.” Strangers join Tom flash dance–style, praise him with handshakes and applause, and hoist him up on their shoulders after he’s handed a bat and mimes hitting a home run. If only he could have made this feeling last. Checkherefor viewing options.
After Yang(2022 Sundance Film Festival)
A couple (Colin Farrell and Jodie Turner-Smith) adopt a girl (Malea Emma Tjandrawidjaja) and buy her a robot named Yang (Justin H. Min) as a companion in this futuristic story about loss, identity, and what constitutes family. We’re immediately placed in this new, semi-familiar sci-fi society through the opening credits dance competition. Aska Matsumiya’s “Welcome to Family of 4” soundtracks the community’s nightly ritual where these dances are performed by the family — Yang included! — and others. Checkherefor viewing options.
PRESENTING SPONSORS
PRESENTING SPONSORS
FESTIVAL HOST STATE
FESTIVAL HOST STATE
LEADERSHIP SPONSORS
LEADERSHIP SPONSORS
SUSTAINING SPONSORS
SUSTAINING SPONSORS
MEDIA SPONSORS
MEDIA SPONSORS
VIEW ALL SPONSORS
January 23–February 2
January 23–February 2
Festival News
& Updates
Sign Up
[form_submit_test]
Sign Up
Festival News
& Updates
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
Tickets
In Person
Online
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
My Festival
My Account
Log Out
Sign In
Create Account
Top Links
Merch
Highlights
Lodging
Sundance Industry Office
Press Center
Customer Support
How to Fest
At a Glance
Ticketing
Attend in Person
Watch Online
Accessibility
Donors
Press
Industry
Tickets
In Person
Online
My Festival
Sign In
Create Account
Log Out
My Account
Copyright © 2024 Sundance Institute, All Rights Reserved
About Sundance Institute
Community Agreement
Privacy Policy
Privacy Policy
About Sundance Institute
Community Agreement
Copyright © 2024 Sundance
Institute, All Rights Reserved