- published: 07 Aug 2008
- views: 713972
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Rachel Getting Married is a 2008 comedy-drama film directed by Jonathan Demme, and starring Anne Hathaway, Rosemarie DeWitt, Bill Irwin and Debra Winger. The film was released in the U.S. to select theaters on October 3, 2008. The film opened the 65th Venice International Film Festival. The film also opened in Canada's Toronto Film Festival on September 6, 2008. Hathaway received an Academy Award nomination for Best Actress for her performance in the film.
Kym Buchman (Anne Hathaway) is released from drug rehab for a few days so she can go home to attend the wedding of her sister Rachel (Rosemarie DeWitt). At home, the atmosphere is strained between Kym and her family members as they struggle to reconcile themselves with her past and present. Kym's father Paul (Bill Irwin) shows intense concern for her well-being and whereabouts, which Kym interprets as mistrust. Kym also resents her sister's choice of her best friend to be her maid of honor instead of her. Rachel, for her part, resents the attention her sister's drug addiction is drawing away from her wedding, a resentment that comes to a head at the rehearsal dinner, where Kym, amid toasts from friends and family, takes the microphone to offer an apology for her past actions, as part of her twelve-step program.
Anne Hathaway (1555/56 – 6 August 1623) was the wife of William Shakespeare, the English poet, playwright and actor. They were married in 1582, when she was 26 years old. She outlived her husband by seven years. Very little is known about her beyond a few references in legal documents, but her personality and relationship to Shakespeare have been the subject of much speculation by historians and creative writers.
Hathaway is believed to have grown up in Shottery, a small village just to the west of Stratford-upon-Avon, Warwickshire, England. She is assumed to have grown up in the farmhouse that was the Hathaway family home, which is located at Shottery and is now a major tourist attraction for the village. Her father, Richard Hathaway, was a yeoman farmer. He died in September 1581 and left his daughter the sum of ten marks or £6 13s 4d (six pounds, thirteen shillings and fourpence) to be paid "at the day of her marriage". In her father's will, her name is listed as "Agnes", leading to some scholars believing that she should be referred to as "Agnes Hathaway".
Anne Hathaway (born 1982) is an American actress.
Anne Hathaway may also refer to:
Rachel Bluwstein Sela (September 20 (Julian calendar), 1890 – April 16, 1931) was a Hebrew-language poet who immigrated to Palestine in 1909. She is known by her first name, Rachel, (Hebrew: רחל) or as Rachel the Poetess (Hebrew: רחל המשוררת).
Rachel was born in Saratov in Imperial Russia on September 20, 1890, the eleventh daughter of Isser-Leib and Sophia Bluwstein, and granddaughter of the rabbi of the Jewish community in Kiev. During her childhood, her family moved to Poltava, Ukraine, where she attended a Russian-speaking Jewish school and, later, a secular high school. She began writing poetry at the age of 15. When she was 17, she moved to Kiev and began studying painting.
At the age of 19, Rachel visited Palestine with her sister en route to Italy, where they were planning to study art and philosophy. They decided to stay on as Zionist pioneers, learning Hebrew by listening to children’s chatter in kindergartens. They settled in Rehovot and worked in the orchards. Later, Rachel moved to Kvutzat Kinneret on the shores of the Sea of Galilee, where she studied and worked in a women's agricultural school. At Kinneret, she met Zionist leader A. D. Gordon who was to be a great influence on her life, and to whom she dedicated her first Hebrew poem. During this time, she also met and had a romantic relationship with Zalman Rubashov—the object of many of her love poems —who later became known as Zalman Shazar and was the third president of Israel.
Rachel, born in Cavaillon, Vaucluse, is a French singer best known in Europe for representing France in the Eurovision Song Contest 1964.
She entered a singing competition organised by Mireille Hartuch who had invited Rachel to her 'Petit Conservatoire'.
She went on to sign a contract with the Barclay Records label, and released her first (45 rmp) recording entitled Les Amants Blessés in 1963.
In 1964, she represented France in the Eurovision Song Contest in Copenhagen with her entry called "Le Chant de Mallory", which was her greatest hit. She did not win, but scored 14 points and finished in fourth place.
Rachel (Hebrew: רָחֵל, Standard Raḥel Tiberian Rāḫēl, Rāḥēl), Arabic: راحیل, Rāḥīl); also spelled Rachael, meaning "ewe") is a feminine given name. The name ranks in the top hundred most popular names for girls in the United States, Canada, the United Kingdom, Ireland, and Australia as well as in Israel. According to United States Social Security card applications in 2005, the name Rachel ranked 38th out of the top 100 names chosen by parents for their baby girls. Statistics for England and Wales from the Office for National Statistics show a decline in popularity of the name: it was the 9th most popular name given to baby girls in 1984, but only 235th in 2014.
When KYM (Anne Hathaway) returns to the Buchman family home for the wedding of her sister RACHEL (Rosemarie Dewitt), she brings a long history of personal crisis and family conflict along with her. The wedding party's abundant cast of friends and relations have gathered for an idyllic weekend of feasting, music and love, but Kym—with her black-comic one-liners and knack for bombshell drama—is a catalyst for long-simmering tensions in the family dynamic. Filled with the rich and eclectic characters that have always been a hallmark of Jonathan Demme's films, RACHEL GETTING MARRIED paints a strikingly perceptive and sometimes hilarious family portrait. Director Demme, first-time writer Jenny Lumet, and the stellar acting ensemble leaven the drama of these difficult but compelling people wi...
Rachel Getting Married (2008) A young woman who has been in and out of rehab for the past ten years, returns home for the weekend for her sister's wedding. Director: Jonathan Demme Writer: Jenny Lumet Stars: Anne Hathaway, Rosemarie DeWitt, Debra Winger
Please visit : http://victorpuig.bandcamp.com/ - http://www.youtube.com/user/victorpuigmusic Fragment de la pel-lícula "Rachel getting married" (2008), interpretada per Anne Hathaway i Debra Winger entre d'altres, en el qual el cantant i actor Tunde Adebimpe interpreta la cançó "Unknown Legend", original de Neil Young Sequence from the film "Rachel Getting Married" (2008), starring Anne Hathaway and Debra Winger among others, in which the singer and actor Tunde Adebimpe performs the song "Unknown Legend", a theme original of Neil Young
Can someone ID the bgm?
COPYRIGHT SONY PICTURES CLASSICS #rachelgettingmarried is a 2008 drama film starring #annehathway as Kym Buchman, who attends her sister Rachel's wedding, just a few days after being released from rehab. While friends and family prepare for the festivities, Kym struggles to reintegrate with them, as her history of substance abuse has made her the black sheep of the family. SUBSCRIBE FOR MORE CLIPS!! https://www.youtube.com/channel/UCs9pWwXMBRcqdF4-GvwHCxQ?sub_confirmation=1 #rachelgettingmarried #annehathway #debrawinger
When Kym (Anne Hathaway) returns to the Buchman family home for the wedding of her sister Rachel (Rosemarie Dewitt), she brings a long history of personal crisis, family conflict and tragedy along with her. The wedding couple’s abundant party of friends and relations has gathered for a joyful weekend of feasting, music and love, but Kym—with her biting one-liners and flair for bombshell drama—is a catalyst for long-simmering tensions in the family dynamic. Filled with the rich and eclectic characters that remain a hallmark of Jonathan Demme’s films, Rachel Getting Married paints a heartfelt, perceptive and sometimes hilarious family portrait. Director Demme, first-time writer Jenny Lumet, and the stellar acting ensemble leaven the drama of these difficult but comp...
Pequena, mas não menos poderosa, cena do repleto de incríveis momentos, "Rachel Getting Married", de 2008, dirigido por Jonathan Demme. Aqui temos um momento crucial da trama, que é basicamente sobre conflitos - pesados - de família, em que irmãs, após briga homérica, se reencontram e em um banho e preparativos pra uma festa redirecionam suas dores e sentimentos. Com o seu falecimento ontem, muito da carreira desse grande diretor tem sido relembrada. Aqui fica um de seus últimos, e melhores trabalhos. Demme teve uma trajetória prolífica entre o cinema e a música, dirigiu clipes e shows de diversas bandas, tendo alcaçando o auge do sucesso em 1991, quando ganhou o Oscar - junto com seus atores - por The Silence Of The Lambs. Por "Rachel" recebeu críticas maravilhadas, como há muito não rece...
Drew Barrymore sits down with Anne Hathaway to address a conspiracy theory that she and her husband are actually the reincarnations of Shakespeare and his wife (also named Anne Hathaway)! #DrewBarrymoreShow #AnneHathaway #Shakespeare Subscribe to The Drew Barrymore Show: https://www.youtube.com/channel/UCWIj8e2_-uK1m886ADSYO6g?sub_confirmation=1 Keep the party going with a visit to https://thedrewbarrymoreshow.com FOLLOW THE DREW BARRYMORE SHOW Instagram: https://www.instagram.com/thedrewbarrymoreshow Twitter: https://twitter.com/DrewBarrymoreTV Facebook: https://www.facebook.com/TheDrewBarrymoreShow Pinterest: https://www.pinterest.com/thedrewbarrymoreshow Snapchat: https://www.snapchat.com/add/drewbarrymoretv TikTok: https://www.tiktok.com/@thedrewbarrymoreshow FOLLOW DREW BARRY...
Anne Hathaway sits down with Drew Barrymore to respond to conspiracy theories that her husband is actually the reincarnation of William Shakespeare, discuss her new film, and so much more. #DrewBarrymoreShow #AnneHathaway #WilliamShakespeare Subscribe to The Drew Barrymore Show: https://www.youtube.com/channel/UCWIj8e2_-uK1m886ADSYO6g?sub_confirmation=1 Keep the party going with a visit to https://thedrewbarrymoreshow.com FOLLOW THE DREW BARRYMORE SHOW Instagram: https://www.instagram.com/thedrewbarrymoreshow Twitter: https://twitter.com/DrewBarrymoreTV Facebook: https://www.facebook.com/TheDrewBarrymoreShow Pinterest: https://www.pinterest.com/thedrewbarrymoreshow Snapchat: https://www.snapchat.com/add/drewbarrymoretv TikTok: https://www.tiktok.com/@thedrewbarrymoreshow FOLLOW DR...
Anne Hathaway was the wife of the famous Elizabethan playwright and poet, William Shakespeare. We don't really know much about her, though, even though we really should talk about her more. Listen to the podcast: https://anchor.fm/tastefulhistory #theroyalwomen #tudor #history
Was Anne Hathaway Actually William Shakespeare's Wife? So, if you are ready, Let's go down This Rabbit Hole. #annehathaway #mystery #celebrity *Join this channel to get access to perks: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA/join ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get some merch: https://www.theburrowsupplies.com/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- * Subscribe for more content just like this: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA ------------------------------------------------------------------...
Many on Twitter say Anne Hathaway's Husband resembles William Shakespeare.
Did you know Anne Hathaway Almost Became A Nun? Anne Hathaway, the acclaimed actress known for her versatility, has a life full of surprising facts that might astonish even her biggest fans. For starters, she was almost a nun! Growing up in a devout Catholic household, Anne initially aspired to join the clergy, but she abandoned the idea after her brother came out as gay. This experience shaped her outspoken advocacy for LGBTQ+ rights. Despite her glamorous Hollywood image, Hathaway has struggled with anxiety and depression in the past. She has openly shared how she overcame these challenges, inspiring others with her resilience and honesty. Interestingly, Anne’s preparation for roles is famously intense. For her Oscar-winning performance as Fantine in *Les Misérables*, she not only cut...
Could Ann Hathaway, and William Shakespeare really be reincarnating every 400 years?
Rachel Getting Married is a 2008 comedy-drama film directed by Jonathan Demme, and starring Anne Hathaway, Rosemarie DeWitt, Bill Irwin and Debra Winger. The film was released in the U.S. to select theaters on October 3, 2008. The film opened the 65th Venice International Film Festival. The film also opened in Canada's Toronto Film Festival on September 6, 2008. Hathaway received an Academy Award nomination for Best Actress for her performance in the film.
Kym Buchman (Anne Hathaway) is released from drug rehab for a few days so she can go home to attend the wedding of her sister Rachel (Rosemarie DeWitt). At home, the atmosphere is strained between Kym and her family members as they struggle to reconcile themselves with her past and present. Kym's father Paul (Bill Irwin) shows intense concern for her well-being and whereabouts, which Kym interprets as mistrust. Kym also resents her sister's choice of her best friend to be her maid of honor instead of her. Rachel, for her part, resents the attention her sister's drug addiction is drawing away from her wedding, a resentment that comes to a head at the rehearsal dinner, where Kym, amid toasts from friends and family, takes the microphone to offer an apology for her past actions, as part of her twelve-step program.