- published: 23 Feb 2015
- views: 28202261
'+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; })); }); -->
Nathaniel Joseph "Nate" Ruess (born February 26, 1982) is an American singer and songwriter. He is the lead vocalist of indie pop band Fun and previously of the Format. As of 2015, he also performs as a solo musician.
Ruess was born on February 26, 1982, in Iowa City, Iowa to Larry Ruess and Bess Zinger. He is the younger of two children, having one sister named Elizabeth. His uncle, John Ruess, was a performer on Broadway and served as an influence for Ruess' musical ventures.
In 1986, his family moved to a farm in Glendale, Arizona, due to repeated bouts of pneumonia Ruess faced as a child. Ruess remained in Arizona throughout his childhood and attended Deer Valley High School, graduating in 2000. During his time in school, Ruess played in punk bands and upon graduation chose to pursue music professionally. In an interview with American Songwriter Ruess states, "I'm not one to take lessons, so I decided that the only way I was going to learn how to sing, if what they were saying was true, was to go in my car and put on any sort of music from a vocalist that might be really hard to mimic, turn it on as loud as possible and try to hit all those notes". He took a job in a law firm as a way to support himself while he pursued his musical ambitions.
Alecia Beth "Pink" Moore (born September 8, 1979) (stylized as P!nk) is an American singer, songwriter, dancer and actress. Originally a member of the girl group Choice, Pink rose to fame as an R&B artist with her debut solo album, Can't Take Me Home (2000). The album was certified double platinum in the United States and spawned two Billboard Hot 100 top-ten hits, "There You Go" and "Most Girls". She gained further recognition with the Moulin Rouge! soundtrack "Lady Marmalade", which gave Pink her first Grammy Award as well as her first number-one single on the Billboard Hot 100. Pink took more artistic control and pursued pop rock direction for her second album, Missundaztood (2001). It sold more than 15 million copies worldwide and yielded three U.S. top-ten singles, "Get the Party Started", "Don't Let Me Get Me", and "Just Like a Pill".
Pink's third studio album, Try This (2003), generated considerably lower sales, but earned her the Grammy Award for Best Female Rock Vocal Performance. Pink revived her popularity with her fourth and fifth studio albums, I'm Not Dead (2006) and Funhouse (2008), with the latter containing her second U.S. number-one hit, "So What". Pink concluded the first decade of her career with the compilation album Greatest Hits... So Far!!! (2010), which featured Fuckin' Perfect and the chart-topping single "Raise Your Glass". Her sixth studio album, The Truth About Love (2012), debuted at number one on the Billboard 200 and spawned the top-ten singles "Blow Me (One Last Kiss)", "Try", and "Just Give Me a Reason", with the latter becoming her fourth U.S. number-one single. In 2014, Pink recorded a collaborative album, rose ave., with Canadian musician Dallas Green under a folk music duo named You+Me.
Dobra (Hungarian: Dobra or Hunyaddobra) is a commune in Hunedoara County, Romania, close to the city of Deva. It is composed of thirteen villages: Abucea (Abucsa), Bujoru (Sztregonya), Dobra, Făgețel (Fazacsel), Lăpușnic (Lapusnyak), Mihăilești (Mihalesd), Panc (Pánk), Panc-Săliște (Pánkszelistye), Rădulești (Radulesd), Roșcani (Roskány), Stâncești (Sztancsesd), Stâncești-Ohaba (Sztancsesdohába) and Stretea (Sztrettye).
At the 2011 census, 97.8% of inhabitants were Romanians, 1.3% Roma and 0.7% Hungarians.
Stâncești village was part of the defunct Stâncești-Ohaba Commune until 1956, when it became independent. It then joined Lăpușnic in 1966 and Dobra in 1968. Its population was 172 in 1966, falling to 124 by 1992. During censuses taken in the period, over 98% of inhabitants declared themselves as Romanians.
Coordinates: 45°54′30″N 22°37′20″E / 45.90833°N 22.62222°E / 45.90833; 22.62222
Nate Ruess' official video for 'Nothing Without Love' from his debut album Grand Romantic - available now on Fueled By Ramen. Pick up Grand Romantic now - iTunes: http://smarturl.it/grandromantic - Webstore: http://smarturl.it/nate_store Download this single (http://flyt.it/NateYT) or stream it on Spotify (http://flyt.it/nwlspotify) Site: http://nateruess.com Facebook: http://facebook.com/nateruess Instagram: http://instagram.com/nateruess Twitter: http://twitter.com/nateruessmusic YouTube: http://youtube.com/nateruessmusic Directed by Anthony Mandler LYRICS I am nothing without love I’m but a ship stuck in the sand Some would say that I’m all alone But I am nothing without love I wanna hold her in my arms But she feeling low she feeling sad I would take credit for what’s wrong ...
Nate Ruess' official video for 'Great Big Storm' from the new album Grand Romantic - available now on Fueled By Ramen. http://smarturl.it/grandromantic Pick up Grand Romantic now: iTunes: http://smarturl.it/grandromantic Google Play: http://smarturl.it/grandromantic-gp Amazon: http://smarturl.it/grandromantic-az Webstore: http://smarturl.it/nate_store Listen to 'Grand Romantic' on Spotify: http://smarturl.it/NateRuess-Spotify Soundcloud: http://soundcloud.com/nateruess Follow Nate Ruess Facebook: http://smarturl.it/NateRuessFB Instagram: http://smarturl.it/NateRuessInsta Twitter: http://smarturl.it/NateRuessTwitter Website: http://smarturl.it/NateRuessWebsite Nate Ruess On Tour Tour Dates: http://smarturl.it/NateRuessTourDates Directed By: James Lees LYRICS Because we’re holding ...
Fun.'s music video for 'Some Nights' from the album, Some Nights - available now on Fueled By Ramen. Celebrate the 10th anniversary of fun.’s breakthrough album and relive the magic of 'Some Nights'. Listen to the full album here: https://lnk.to/FunSomeNights Go behind the scenes of this video at http://youtu.be/Olc6lHK-JV4 Site: http://ournameisfun.com iTunes: http://smarturl.it/somenights Spotify: http://bit.ly/1dhwfAc Facebook: http://facebook.com/ournameisfun Twitter: http://twitter.com/ournameisfun Store: http://store.ournameisfun.com Directed by Anthony Mandler LYRICS Some nights, I stay up cashing in my bad luck Some nights, I call it a draw Some nights, I wish that my lips could build a castle Some nights, I wish they'd just fall off But I still wake up, I still see your ghost...
P!nk's official music video for 'Just Give Me A Reason' ft. Nate Ruess. Click to listen to P!nk on Spotify: http://smarturl.it/PSpot?IQid=PJGMR As featured on The Truth About Love. Click to buy the track or album via iTunes: http://smarturl.it/PTALiTunes?IQid=PJGMR Google Play: http://smarturl.it/PJGMRPlay?IQid=PJGMR Amazon: http://smarturl.it/PTALAm?IQid=PJGMR More from P!nk Just Give Me A Reason: https://youtu.be/OpQFFLBMEPI So What: https://youtu.be/FJfFZqTlWrQ Raise Your Glass: https://youtu.be/XjVNlG5cZyQ Follow P!nk Website: http://www.pinkspage.com Facebook: https://www.facebook.com/pink Twitter: https://twitter.com/Pink Subscribe to P!nk on YouTube: http://smarturl.it/PSub?IQid=PJGMR More great Ultimate Hits of the Noughties videos here: http://smarturl.it/UNPlaylist?IQid=PJGM...
Fun.'s music video for 'We Are Young’ from the album, Some Nights - available now on Fueled By Ramen. Celebrate the 10th anniversary of fun.’s breakthrough album and relive the magic of 'Some Nights'. Listen to the full album here: https://lnk.to/FunSomeNights Go behind the scenes of this video at http://youtu.be/duVWUCkT92Q Site: http://ournameisfun.com iTunes: http://smarturl.it/somenights Spotify: http://bit.ly/1dhwfAc Facebook: http://facebook.com/ournameisfun Twitter: http://twitter.com/ournameisfun Store: http://store.ournameisfun.com Directed by Marc Klasfeld LYRICS Give me a second I, I need to get my story straight My friends are in the bathroom getting higher than the Empire State My lover she's waiting for me just across the bar My seat's been taken by some sunglasses asking...
http://smarturl.it/MMLP2 Video Director: Spike Lee Video Producer: Alex Wright Video Producer: Kathy Angstadt for Forty Acres & A Mule Filmworks
Foreigner & Nate Ruess perform "I Want To Know What Love Is" on ABC's "Greatest Hits" on Thursday, July 14, 2016. An exclusive release of our re-recorded duet of “I Want To Know What Love Is" is available now! iTunes: smarturl.it/IWTKWLI.IT Google Play: smarturl.it/IWTKWLI.GP Amazon: smarturl.it/IWTKWLI.AZ Spotify: smarturl.it/IWTKWLI.SP Connect with Foreigner: Site: http://www.foreigneronline.com/ Facebook: https://www.facebook.com/Foreigner/ Twitter: https://twitter.com/ForeignerMusic YouTube: https://www.youtube.com/user/FWebTeam Connect with Nate Ruess: Site: http://nateruess.com Facebook: http://facebook.com/nateruess Instagram: http://instagram.com/nateruess Twitter: http://twitter.com/nateruessmusic YouTube: http://youtube.com/nateruessmusic
Fun. and Janelle Monáe perform an acoustic version of the single 'We Are Young' from the album, Some Nights - available now on Fueled By Ramen. Download it at http://smarturl.it/somenights Directed by Travis Satten Recorded & Mixed by Ryan Fagman @ Soundscribe Studios LYRICS Give me a second I, I need to get my story straight My friends are in the bathroom getting higher than the Empire State My lover she's waiting for me just across the bar My seat's been taken by some sunglasses asking bout a scar, And I know I gave it to you months ago I know you're trying to forget But between the drinks and subtle things The holes in my apologies, you know I'm trying hard to take it back So if by the time the bar closes And you feel like falling down I'll carry you home Tonight We are young So let'...
Spoilers for season 2! ~~~ I do not own anything other than the edit itself. All rights to the clips used go to the cast, crew and creators of Good Omens! Song: Just Give Me A Reason by P!nk
“Simple Sound of Morning” from The Starling (Soundtrack from the Netflix Film) Music by Nate Ruess Listen to the soundtrack here: https://soundtracks.lnk.to/thestarlingAW ABOUT NATE RUESS: Nate Ruess has proven to be one of the most prolific songwriters in the world. With multiple number ones under his belt, his songs have resonated with audiences everywhere. Best known to fans as the lead singer of the group FUN. and featured vocalist on P!nk's "Just Give Me A Reason," Ruess has notched two GRAMMY wins and eight total nominations, a multitude of RIAA certified platinum records, and one diamond record in “We Are Young.” Ruess's career began in the early 2000s fronting The Format, but it was his work with FUN. that made him a household name. FUN.’s 2012 albu...
Nathaniel Joseph "Nate" Ruess (born February 26, 1982) is an American singer and songwriter. He is the lead vocalist of indie pop band Fun and previously of the Format. As of 2015, he also performs as a solo musician.
Ruess was born on February 26, 1982, in Iowa City, Iowa to Larry Ruess and Bess Zinger. He is the younger of two children, having one sister named Elizabeth. His uncle, John Ruess, was a performer on Broadway and served as an influence for Ruess' musical ventures.
In 1986, his family moved to a farm in Glendale, Arizona, due to repeated bouts of pneumonia Ruess faced as a child. Ruess remained in Arizona throughout his childhood and attended Deer Valley High School, graduating in 2000. During his time in school, Ruess played in punk bands and upon graduation chose to pursue music professionally. In an interview with American Songwriter Ruess states, "I'm not one to take lessons, so I decided that the only way I was going to learn how to sing, if what they were saying was true, was to go in my car and put on any sort of music from a vocalist that might be really hard to mimic, turn it on as loud as possible and try to hit all those notes". He took a job in a law firm as a way to support himself while he pursued his musical ambitions.
I gave my all to you
And you made it easy to fall in love
I fell in love with someone you pretended to be
Was too blind when I was with him, now I see, so
Don't you come back runnin'
Now my heart is achin'
I cannot find a reason to love you now
And don't you come back cryin'
Now that love is dyin'
I cannot find a reason to love you now
How can I love you now, now, now?
I thought my life was over
And I thought I'd never get over it
All the tears I cried were filled with so much pain
Tomorrow promises the pain will fade away, so
Don't you come back runnin'
Now my heart is achin'
I cannot find a reason to love you now
And don't you come back cryin'
Now that love is dyin'
I cannot find a reason to love you now
How can I love you now?
Now, it was just a game to you
What you put me through
Will come right back to you someday
Don't think I'm wishin' bad on you
Now that I know you were only here to play
Don't you ever think you have a chance again
'Cause I deserve so much more, so don't
Don't you come back runnin'
Now my heart is achin'
I cannot find a reason to love you now
And don't you come back cryin'
Now that love is dyin'
I cannot find a reason to love you now
Don't you come
Don't you come back cryin'
Now my heart is achin'
I cannot find a reason to love you now
And don't you come back cryin'
Now that love is dyin'
I cannot find a reason to love you now