- published: 29 Apr 2023
- views: 13535
'+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; })); }); -->
June Christy (November 20, 1925 – June 21, 1990), born Shirley Luster, was an American singer, known for her work in the cool jazz genre and for her silky smooth vocals. Her success as a singer began with The Stan Kenton Orchestra. She pursued a solo career from 1954 and is best known for her debut album Something Cool. After her death, she was hailed as "one of the finest and most neglected singers of her time."
Shirley Luster was born in Springfield, Illinois, and moved with her family to Decatur, Illinois, when she was three years old. She began to sing with the Decatur-based Bill Oetzel Orchestra at thirteen. While attending Decatur High School she appeared with Oetzel and his society band, the Ben Bradley Band, and Bill Madden's Band. After high school she moved to Chicago, changed her name to Sharon Leslie, and sang with a group led by Boyd Raeburn. Later she joined Benny Strong's band. In 1944, Strong's band moved to New York at the same time Christy was quarantined in Chicago with scarlet fever.
Night People or The Night People may refer to:
Night People is an Irish horror / science fiction film which marks the feature film debut of director Gerard Lough and stars Michael Parle, Jack Dean-Shepherd and Claire Blennerhassett. A pair of professional but badly mismatched criminals break into a vacant house to carry out an insurance scam. Awkwardly thrown together with an hour to kill, they reluctantly start telling each other tall tales. One concerns two friends who discover a mysterious device that may be of alien origin. The more they learn about it, the closer to breaking point their friendship is pushed. The other is about an ambitious business woman who provides a dating agency for wealthy fetishists. She attempts to escape this shady line of work by taking on a new client who's habits may be of the vampiric variety .
The film had its premiere at the Horrorthon Film Festival at the Irish Film Institute on October 25, 2015 and was released in cinemas in Ireland on November 13, 2015.
After finishing his promotional duties on the Sci-Fi short film Ninety Seconds, Lough decided it was now the right time to make his feature film debut. He was inspired by the "Horror / Sci-Fi anthology films of the ’80s such as Creepshow, The Twilight Zone and Cat's Eye but with the goal of having each story blend together to make one big story and then bring it stylistically up to date for a modern audience." The screenplay went through close to a dozen drafts and the original idea of four interconnecting stories was eventually changed to three. Many of the same cast and crew he previously worked with on his short films returned for this film. Other influences included the New Wave music scene of the early 80's and France's 'Cinema du look' movement.
Love Bomb is an album by The Tubes produced by Todd Rundgren. It was released in 1985 on Capitol Records. It is the last major-label release by The Tubes.
Songs include the single "Piece By Piece", "Stella", "Night People", "Eyes", "Feel It", "For A Song", "Love Bomb", "Muscle Girls", "Theme from A Woolly Place", and others.
Following the release of Love Bomb, the band would break up, with drummer Prairie Prince and keyboardist Vince Welnick joining Rundgren's touring band. Rundgren would also record his own version of "Feel It" for his 1989 album Nearly Human, which also featured the two musicians.
A 1954 War Drama Starring Gregory Peck, Broderick Crawford, Buddy Ebsen, and Anita Bjork. Directed by Nunnally Johnson. This is an extremely well done motion picture. The first directorial job of longtime writer Nunnally Johnson revealed a fine talent which created suspense and captures the audience minds without resorting to chases and explosions. Everything happens indoors, and it is question of brains not of fists. A magnificent job by Broderick Crawford and Gregory Peck, and a well done investigation into cold war minds, all about the kidnapping by the Russians of an U.S.Corporal in Berlin, in order to exchange him for a couple of elderly Germans wanted supposedly by former Nazis in the service of the Soviets. Everything works wonderfully, until one asks why didn't the Russians kid...
INTRODUCING ’NIGHT PEOPLE - A HEAVY METAL TRIBUTE’, DEBUT SINGLE RELEASED, FIRST GIG ANNOUNCED 🤘 Night People - A Heavy Metal Tribute is a brand new Finnish cover/party band (both live and studio), dedicated to the vast richness of the heavy metal genre. The band consists of the following members: Vocals: Mikael Salo (ex-Dyecrest; ex-Metal De Facto) Guitars: Juha Kupiainen (De Lirium’s Order) Guitars: Vesa Nupponen (De Lirium’s Order; ex-Excalion) Bass: Juho Jokimies (Blame Me; Where’s My Bible) Keyboards: Oskar Ketola (Kick The Giant) Drums: Make Lievonen (Kenziner) Comments the bands lead vocalist Mikael: ”The idea to conjure up an epic heavy metal tribute band came to me already back in 2017-18, when we played some heavy metal cover shows together with Oskar in a group called ”Sungaz...
Night People 1954 Film in English, Nunnally Johnson, Gregory Peck, Anita Björk
Night People is just plain scary. Terrifying. A simple horror game that actually scares me. LISTEN TO DISTRACTIBLE ►► https://open.spotify.com/show/2X40qLyoj1wQ2qE5FVpA7x Play the Game ► https://steamvoy.itch.io/night-people Edited By ► https://www.youtube.com/LixianTV Scary Games Playlist ► https://www.youtube.com/playlist?list=PL3tRBEVW0hiBSFOFhTC5wt75P2BES0rAo Horror Outro ► https://soundcloud.com/shurkofficial/haunted
Gregory Peck, Broderick Crawford | Full Adventure, Mystery Movie A U.S. soldier stationed in West Berlin after the end of World War II is kidnapped and held captive in East Berlin. Col. Steve Van Dyke (Gregory Peck) is leading the kidnapping investigation, which becomes more complex as he is forced to deal with deceit, conspiracies and double identities. As Van Dyke begins to discover the truth about the case, he finds himself in a perilous situation -- even his closest ally, his former lover Hoffy (Anita Björk), may not be who she says she is. Director: Nunnally Johnson All Copyrights belong to their rightful owners. If you are the author of the fragment video and distribute it Infringes your copyright please contact us. DISCLAIMER: Copyright Disclaimer Under Section 107 of the Copyri...
Directed by Nunnally Johnson with Gregory Peck, Broderick Crawford, Anita Björk and Rita Gam. Watch (on Prime) : https://amzn.to/3PDK864 Blu-ray (Amazon) : https://amzn.to/43y73p9 AKA: A Sombra da Noite Ad diplomatisk vej Beslissing te middernacht Canje en la noche Ciemne sprawki Das unsichtbare Netz Decisión a medianoche Décision à minuit Gece Kuslari Gente da Noite Gente de noche Gente di notte Les gens de la nuit Nattmänniskor Night People Nocni svet O anthropos tis nyhtas Oamenii noptii The Cannibals Yöihmisiä Нощни птици
Provided to YouTube by Universal Music Group Night People · Dio Dream Evil ℗ 1987 Niji Productions, Inc., under exclusive license to Universal International Music B.V. Released on: 1987-01-01 Producer: Ronnie James Dio Composer Lyricist: Craig Goldy Composer Lyricist: Vincent Appice Composer Lyricist: Jimmy Bain Composer Lyricist: Claude Schnell Composer Lyricist: Ronnie James Dio Auto-generated by YouTube.
"You Me At Six - Night People (Official Video) Taken from 'Night People', out now: https://ymas.lnk.to/NightPeopleYD For news, tour dates and more, check out: https://youmeatsix.ffm.to/web.oyd Follow You Me At Six: Instagram: https://youmeatsix.ffm.to/instagram.oyd Facebook: https://youmeatsix.ffm.to/facebook.oyd Twitter: https://youmeatsix.ffm.to/twitter.oyd Spotify: https://youmeatsix.ffm.to/spotify.oyd Apple Music: https://youmeatsix.ffm.to/applemusic.oyd"
Also LIVE on: Tiktok - @superplexis Twitch - gmedley Join the Discord here to get notified: https://discord.gg/usq3PGGV3Q
Listen to the full album: http://bit.ly/2zlta7S "Night People" (feat. Chelsea Wolfe) by Deafheaven from the album 'Ordinary Corrupt Human Love,' available now Order at https://deafheaven.com/ Video by Ben Chisholm Lyrics Biblical sky speckled with flame, Do you hold your mother’s eyes from Wetting the earth? From weeping for those Who reward fame to absolutes of war? Or for heroic myths provided to children Married into ferocity? They instead witness themselves And the black sand of your body slipped through… I found myself at your side I spied along the concrete canvas, a woman Her eyes brimming with vacancy And bear hugging barbiturates, Her head rolled from faint shoulders And skipped three times Each thud sprouting a fountain of splashing gold Official Site: http://deafheaven...
A baby with the power to see the dead explores the night in a short horror film by Ryan Benson
A deranged man hides in the attic of a new house and becomes obsessed with the unsuspecting family that moves in. 🔥 Watch more FULL MOVIES ➜ https://www.youtube.com/playlist?list=PLZnAnC2Obx739eG0-T37cUKJQazA_Km06 ✔️ More exclusive movies on Facebook ➤ https://facebook.com/108385778224859 Genre : Full Movie in English, Cinema, Drama, Thriller © All Rights Reserved #FullMovieENGLISH #FullMovie
OPENING NIGHT @ THE PEOPLE'S FILM FESTIVAL 2017 - I'M STILL HERE promo
WALK ALL NIGHT: A DRUM BEAT JOURNEY
Chicago Comedy Film Festival brings you smart comedy for smart people. New videos weekly! 2015 Tickets- http://www.eventbrite.com/o/chicago-comedy-film-festival-2368800338 If you LOVE comedy, subscribe- http://goo.gl/9FR6uE Follow Us http://Twitter.com/ccfilmfest http://chicagocomedyfilmfestival.com for info about the fest Chicago Comedy Film Festival brings you smart comedy for smart people. More videos here- http://youtu.be/EvYCiIiU6JI?list=PLelLk-tabSnwChYDPY4FHnG9exyNhVkzb
https://www.genesiscinema.co.uk/films/events/buff-2015-sunday-night-shorts-sun-20th-sept/ Supported by Channel 4, watch the British Urban Film Festival trailer for 'Matter of Fact', directed by Adam Lannon. Watch this short plus 8 others as part of BUFF Sunday Night Shorts from Genesis Cinema, Whitechapel on Sunday 20 September (7.30pm-10.30pm). Follow @buffenterprises and @adamlannon on Twitter for the very latest updates. Acknowledgements: Stuart Black/Adam Lannon/Justin Marosa. (c) copyright August 2015, all rights reserved.
📕 "How I Made 52 Films In 3 Years" https://mybook.to/Filmmaking 🎨 Color Graded Using My Cinematic LUTs: https://geni.us/MyLUTs ❗️Camera I Use: https://geni.us/blakecamera ❗️Lens I Use: https://geni.us/MyLens ❗️Best Gimbal: https://geni.us/MyGimbal ❗️My Go to Mic: https://geni.us/MyGoToMic ❗️Affordable Tube Lights: https://geni.us/TubeLights ❗️Music For My Films: https://geni.us/MusicForFilms As an Amazon Associate I earn from qualifying purchases. WANNA SUPPORT ME? ⬇️ Patreon: https://patreon.com/blakeridder Donation: https://geni.us/PaypaleMe CONNECT WITH ME Instagram - https://instagram.com/blake.ridder TikTok - https://www.tiktok.com/@blake.ridder Twitter - https://twitter.com/blakeridder #vampire #shortfilm
NIGHT: THE FINAL CUT | HD ACTION MOVIE | FULL FREE THRILLER FILM IN ENGLISH | REVO MOVIES When a detective starts skipping work and cavorting with unseemly characters of an indeterminate species, his partner sets out on a rescue mission. REVO Movies! Every week exclusive premiere movies on Youtube! All movies have been licensed by the major distribution companies worldwide! For any issues related to copyright please contact [email protected]!
Highlights from opening night People's Film Festivl May 29th 2014 at Magic Johnson Theatre and after party
June Christy (November 20, 1925 – June 21, 1990), born Shirley Luster, was an American singer, known for her work in the cool jazz genre and for her silky smooth vocals. Her success as a singer began with The Stan Kenton Orchestra. She pursued a solo career from 1954 and is best known for her debut album Something Cool. After her death, she was hailed as "one of the finest and most neglected singers of her time."
Shirley Luster was born in Springfield, Illinois, and moved with her family to Decatur, Illinois, when she was three years old. She began to sing with the Decatur-based Bill Oetzel Orchestra at thirteen. While attending Decatur High School she appeared with Oetzel and his society band, the Ben Bradley Band, and Bill Madden's Band. After high school she moved to Chicago, changed her name to Sharon Leslie, and sang with a group led by Boyd Raeburn. Later she joined Benny Strong's band. In 1944, Strong's band moved to New York at the same time Christy was quarantined in Chicago with scarlet fever.
there's lots of stories in the big city
and two sides to every one
if you've ever been inside a triangle
there's only so far you can run
alone in the darkness this tangle of emotions once was
home
love doesn't live here anymore
when did she slip away?
when did trouble walk through the door and stay?
love doesn't live here anymore
honey, we both walked in with baggage
equal parts of hope and fear
we'd help each other break the cycle
and the pain would disappear
ah, the cost of good intentions