- published: 22 Mar 2013
- views: 2181937
'+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; })); }); -->
Billy the Kid (born Henry McCarty; also known as William H. Bonney) (September 17, 1859 – July 14, 1881) was an American Old West gunfighter who participated in New Mexico's Lincoln County War and is known to have killed eight men.
His first arrest was for stealing food in late 1875, and five months later he was arrested again for stealing clothing and firearms. His escape from jail two days later and flight from New Mexico Territory into Arizona Territory made him both an outlaw and a fugitive. After murdering a blacksmith during an altercation in August 1877, Bonney became a wanted man in Arizona Territory and returned to New Mexico, where he joined a group of cattle rustlers. He took part in the Lincoln County War and joined the Regulators, making him a well-known outlaw in the region. In April 1878, however, the Regulators killed three men, including Lincoln County Sheriff William J. Brady and one of his deputies. Bonney and two other Regulators were later charged with killing all three men.
Billy the Kid is a 1938 ballet written by the American composer Aaron Copland on commission from Lincoln Kirstein. It was choreographed by Eugene Loring for Ballet Caravan. Along with Rodeo and Appalachian Spring, it is one of Copland's most popular and widely performed pieces. The ballet is most famous for its incorporation of several cowboy tunes and American folk songs and, although built around the figure and the exploits of Billy the Kid, is not so much a biography of a notorious but peculiarly appealing desperado as it is a perception of the pioneer West, in which a figure such as Billy played a vivid role.
It was premiered on 16 October 1938 in Chicago by the Ballet Caravan Company, with pianists Arthur Gold and Walter Hendl performing a two-piano version of the score. The first performance of Billy the Kid in New York City occurred on 24 May 1939, with an orchestra conducted by Fritz Kitzinger.
The story follows the life of the infamous outlaw Billy the Kid. It begins with the sweeping song "The Open Prairie" and shows many pioneers trekking westward. The action shifts to a small frontier town, in which a young Billy and his mother are present. The mother is killed by a stray bullet during a gunfight and Billy stabs his mother's killer, then goes on the run.
The Billy the Kid series of 42 western films was produced between 1940 and 1946, and released by Poverty Row studio Producers Releasing Corporation.
The initial six star Bob Steele as Billy the Kid, the next thirteen star Buster Crabbe as Billy the Kid, and the following 23 feature Crabbe as the same character, renamed "Billy Carson". All 42 films in the series are directed by Sam Newfield, "America's most prolific sound film director", sometimes under pseudonyms. All films feature Al St. John as Billy's sidekick.
The Kid or The Kids may refer to:
THE KID is a contemporary artist who questions social determinism and the frontier between innocence and corruption in modern societies. Half Dutch and half Brazilian, The Kid lives and works both in Paris and Amsterdam where he has, respectively, his painting and sculpture studios.
The Kid's socially-committed and thought-provoking art works include wall-size blue Bic ballpoint pen drawings, charcoal drawings, and oil paintings, as well as controversial hand-made hyper-realistic lifesize silicon sculptures and installations. In recent years, The Kid's works have been exhibited at the Louvre and Le Grand Palais and during solo and group shows at ALB Anouk Le Bourdiec Gallery in Paris, France.
Through the social and political dimensions of his subjects and due to an influential collectors' international audience, The Kid has also become a committed supporter of the leading International non-governmental organization Human Rights Watch, in particular for its fight against social discrimination and juvenile justice, two repeating themes of The Kid's art work. Beyond Paris, he has also lived and worked in New York, London, and Milan.
Mark Ryan (2 March 1959 – 31 January 2011) was an English guitarist who played in different punk bands during the late 1970s.
He was born in Tottenham, London, to an Irish Catholic family. His father was a university lecturer and his mother was a nurse and midwife. Ryan left school at sixteen, working in factories and dedicating to music.
In 1977, after being in a number of experimental punk bands, he joined The Ants, replacing Lester Square, to complete the line-up who debuted live at the ICA restaurant in May, recorded Plastic Surgery and a number of demos with the band. After appearing with the band in the Derek Jarman movie Jubilee (released in July 1977) Ryan was fired in October 1977. Subsequently, he joined The Photons, and was involved with The Moors Murderers. The vocalist in both bands was Steve Strange, who later became the singer for Visage. He also was in King, alongside The Damned's Captain Sensible.
From 1985 to 1989, Ryan attended the Dartington College of Arts, earning a Bachelor's degree in music in 1989. He turned his interest in performance to the theatre and began a successful career as a writer for the stage based in Cardiff, Wales. He is the author of The Strange Case Of Dr Jekyll And Mr Hyde As Told To Carl Jung By An Inmate Of Broadmoor Asylum, first produced in 1998.
Billy the Kid is a children's novel by the English author Michael Morpurgo, first published in 2000.
Billy, an 80-year-old Chelsea Pensioner, looks back on his life. As a boy he loved football and was chosen to play for Chelsea Football Club. His youthful brilliance earned him the nickname of "Billy the Kid". Then his life was interrupted by the start of the Second World War and Billy joined the army. When he returned home, injured, he found that his home had been bombed and all his family killed.
He became a vagrant but was later befriended by a family and encouraged their son Sam to play football. Sam grew up to play for Chelsea also.
HarperCollins Children's Books, reissued 2009. ISBN 978-0-00-710547-2.
In 1981, Billy Joel released his first live album titled Songs In The Attic. Listen to Billy Joel perform the track 'The Ballad of Billy The Kid' from a live 1980 performance at Madison Square Garden in New York City. http://smarturl.it/BJ_M17ITA_YT?IQid=ytd.bj.ballada Listen to music off of Songs In The Attic http://smarturl.it/BJ_BOBKPM_YT?IQid=ytd.bj.ballada Listen to the studio version of 'The Ballad of Billy The Kid' iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.ballada Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.ballada Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.ballada Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.ballada Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.ballada Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.ballada Subscr...
"The Ballad of Billy the Kid" by Billy Joel performing live from The River Of Dreams Tour Listen to Billy Joel: https://billyjoel.lnk.to/listenYD Subscribe to the Billy Joel YouTube Channel: https://billyjoel.lnk.to/subscribe Watch more Billy Joel videos: https://billyjoel.lnk.to/listenYC/youtube Follow Billy Joel: Facebook: https://billyjoel.lnk.to/followFI Instagram: https://billyjoel.lnk.to/followII Twitter: https://billyjoel.lnk.to/followTI Website: https://billyjoel.lnk.to/followWI Spotify: https://billyjoel.lnk.to/followSI YouTube: https://billyjoel.lnk.to/subscribe Lyrics: Well, he never traveled heavy Yes, he always rode alone And he soon put many older guns to shame And he never had a sweetheart And he never had a home But the cowboys and the ranchers Knew his name #BillyJoel ...
Billy Joel “The Ballad Of Billy The Kid" live from Billy Joel Tonight, 1976 Listen to Billy Joel: https://billyjoel.lnk.to/playlist Available for the first time digitally, Billy Joel Tonight is one of the earliest official video documents of Billy Joel in concert, recorded live at the University of Connecticut over two nights in 1976. Here, Billy and his band play songs from the recently released Turnstiles, plus favorites from his growing catalog of classic songs. Follow Billy Joel: Facebook: https://billyjoel.lnk.to/facebookFI Instagram: https://billyjoel.lnk.to/instagramII Twitter: https://billyjoel.lnk.to/twitterTI Website: https://billyjoel.lnk.to/websiteWI Subscribe to Billy Joel: https://billyjoel.lnk.to/subscribe Lyrics: From a town known as Wheeling, West Virginia Rode a boy ...
Provided to YouTube by Sony Music Entertainment The Ballad of Billy The Kid (Live at Madison Square Garden, New York, NY - June 1980) · Billy Joel Songs In the Attic ℗ 1981 Columbia Records, a division of Sony Music Entertainment Released on: 1981-09-14 Drums, Percussion: Liberty DeVitto Bass Guitar: Doug Stegmeyer Acoustic Guitar, Electric Guitar: Russel Javors Acoustic Guitar, Electric Guitar: David Brown Flute, Organ, Saxophone: Richie Cannata Mixing Engineer, Producer: Phil Ramone Producer: Brian Ruggles Engineer, Mixing Engineer: Elliot Scheiner Engineer, Mixing Engineer: Jim Boyer Assistant Engineer: Chaz Clifton Assistant Engineer: Paul Hulse Assistant Engineer: Bradshaw Leigh Assistant Engineer: Larry Franke Assistant Engineer: Domonick Maita Assistant Engineer: ...
LYRICS: From a town known as Wheeling, West Virginia Rode a boy with a six gun in his hand And his daring life of crime Made him a legend in his time East and west of the Rio Grande. Well he started with a bank in Colorado In the pocket of his vest, a Colt he hid And his age and his size Took the teller by surprise And, the word spread of Billy the kid Well he never travelled heavy Yes he always rode alone And he soon put many older guns to shame And he never had a sweetheart And he never had a home But the cowboy and the rancher knew his name Well he robbed his way from Utah to Oklahoma And the largest could not seem to track him down And it served his legend well For the folks they loved to tell about When Billy the kid came to town. Well on...
Provided to YouTube by Columbia/Legacy The Ballad Of Billy The Kid (Live at Shea Stadium, Queens, NY - July 2008) · Billy Joel Live At Shea Stadium ℗ 2011 Sony Music Entertainment Released on: 2011-03-08 Band Leader, Guitar, Vocal: Tommy Byrnes Flute, Guitar, Saxophone, Vocal: Mark Rivera Guitar, Percussion, Saxophone, Vocal: Crystal Taliefero Keyboards, Organ, Piano, Vocal: Dave Rosenthal Bass, Vocal: Andy Cichon Drums: Chuck Burgi Saxophone, Trumpet: Carl Fischer Mixing Engineer: Frank Filipetti Mastering Engineer: Ted Jensen Assistant Producer: Bruce Dickinson Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises The Ballad of Billy the Kid (In the Style of Billy Joel) (Karaoke Version) · The Karaoke Channel The Karaoke Channel - Sing the Ballad of Billy the Kid Like Billy Joel ℗ 2014 Stingray Music Group Released on: 2014-10-08 Auto-generated by YouTube.
Billy the Kid (born Henry McCarty; also known as William H. Bonney) (September 17, 1859 – July 14, 1881) was an American Old West gunfighter who participated in New Mexico's Lincoln County War and is known to have killed eight men.
His first arrest was for stealing food in late 1875, and five months later he was arrested again for stealing clothing and firearms. His escape from jail two days later and flight from New Mexico Territory into Arizona Territory made him both an outlaw and a fugitive. After murdering a blacksmith during an altercation in August 1877, Bonney became a wanted man in Arizona Territory and returned to New Mexico, where he joined a group of cattle rustlers. He took part in the Lincoln County War and joined the Regulators, making him a well-known outlaw in the region. In April 1878, however, the Regulators killed three men, including Lincoln County Sheriff William J. Brady and one of his deputies. Bonney and two other Regulators were later charged with killing all three men.
Some love is just a lie of the heart
The cold remains of what began with a passionate start
And they may not want it to end
But it will it's just a question of when
I've lived long enough to have learned
The closer you get to the fire the more you get burned
But that won't happen to us
Because it's always been a matter of trust
I know you're an emotional girl
It took a lot for you to not lose your faith in this world
I can't offer you proof
But you're going to face a moment of truth
It's hard when you're always afraid
You just recover when another belief is betrayed
So break my heart if you must
It's a matter of trust
You can't go the distance
With too much resistance
I know you have doubts
But for God's sake don't shut me out
This time you've got nothing to lose
You can take it, you can leave it
Whatever you choose
I won't hold back anything
And I'll walk a way a fool or a king
Some love is just a lie of the mind
It's make believe until its only a matter of time
And some might have learned to adjust
But then it never was a matter of trust
I'm sure you're aware, love,
We've both had our share of
Believing too long
When the whole situation was wrong
Some love is just a lie of the soul
A constant battle for the ultimate state of control
After you've heard lie upon lie
There can hardly be a question of why
Some love is just a lie of the heart
The cold remains of what began with a passionate start
But that can't happen to us