- published: 06 Dec 2009
- views: 1789651
'+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; })); }); -->
Rupert Holmes (born David Goldstein on February 24, 1947) is a British-born American composer, singer-songwriter, musician, and author of plays, novels, and stories. He is widely known for his number one pop hit "Escape (The Piña Colada Song)" (1979/1980) and the song "Him", which reached the number 6 position on the Billboard Hot 100 U.S. pop chart in 1980. He is also known for his 1985 Tony Award-winning musical Drood (originally The Mystery of Edwin Drood) and his 2007 Drama Desk Award-winning book for the Broadway musical Curtains, and for his television series Remember WENN.
Holmes was born David Goldstein in Northwich, Cheshire, England. His father, Leonard Eliot Goldstein, was a United States Army warrant officer and bandleader. His mother, Gwendolen Mary (nee Pynn), was English, and both were musical. Holmes has dual British and American citizenship. The family moved when Holmes was six years old to the northern New York City suburb of Nanuet, New York, where Holmes grew up and attended nearby Nyack High School and then the Manhattan School of Music (majoring in clarinet). Holmes' brother, Richard, is an opera singer based in New York City and is the principal lyric baritone of the New York Gilbert and Sullivan Players, sings roles with regional opera companies, such as Glimmerglass Opera, Lake George, and Virginia Opera, among others, and has appeared at the Metropolitan Opera.
Touch and Go and similar may refer to:
This is a list of episodes of the Teenage Mutant Ninja Turtles 2003 TV series. The series debuted on February 8, 2003 on the Fox Network as part of Fox's 4Kids TV Saturday morning lineup, and ended on March 27, 2010. The series was produced by Mirage Studios, which owned one third of the rights to the show.
Teenage Mutant Ninja Turtles' first season originally aired between February 4, 2003 and November 1, 2003, beginning with the "Things Change" episode. The episodes were released in two separate volumes, the first on May 22, 2007 with twelve episodes, and the second on September 18, 2007 with fourteen episodes.
The Shredder returns in season 2 and is revealed to be an Utrom named Ch'rell. Karai the daughter of the Shredder makes her first appearance in this season.
Many of the Ninja Turtles enemies return in season 3. This is the final season that includes Utrom Shredder.
Touch & Go is a 2003 Canadian film comedy directed by Scott Simpson.
A visual interpretation of the song Touch and Go by Rupert Holmes. This is a project in English. No copyright infringement intended. This is a project made by Group 9 of 3211: Art Cerio Karl Cu Nica Torres Grace Romero Thanks for watching! Comments or suggestions are highly encouraged. :D
Download the full below https://zambianmusichits.com/b-flow-ft-yo-maps-touch-go-mp3-download/
#bflow #yomaps #touchandgo #sundastation
t'chut..! ;) Artist: Touch and Go Album: I Find You Very Attractive [1999] Song: 12 Straight To... Number One (Dreamcatcher's Mix)
The official audio for Ed Sheeran - Touch and Go Taken from the 'Wembley Edition' of the studio album X (multiply) released in 2014, which featured the hit singles 'Sing', 'Don't', 'Thinking Out Loud', 'Bloodstream', & 'Photograph'. Subscribe to the Ed Sheeran channel for all the best and latest official music videos, behind the scenes and live performances. http://bit.ly/SubscribeToEdSheeran See more official videos from Ed Sheeran here: https://www.youtube.com/watch?v=ryJgDL9jzKk&list=PLjp0AEEJ0-fGKG_3skl0e1FQlJfnx-TJz Listen to more from the album x (multiply): https://www.youtube.com/playlist?list=PLjp0AEEJ0-fEuKWBJV30ebHCGoi1Ny69U Follow Ed Sheeran on: Facebook: http://www.facebook.com/EdSheeranMusic Twitter: http://twitter.com/edsheeran Instagram: http://instagram.c...
INTERVALS // THE WAY FORWARD // AVAILABLE NOW! PHYSICAL TREATS: USA | http://bit.ly/2169RRI CANADA | http://bit.ly/2ywUL46 EU/UK | http://bit.ly/2xaYQqQ AUSTRALIA | http://bit.ly/2znVX6P DIGITAL TREATS: BANDCAMP | http://bit.ly/2yCG2T5 ITUNES | http://apple.co/2irQVmI APPLE MUSIC | http://apple.co/2AnKFBl SPOTIFY | http://spoti.fi/2BqfyUN On tour now with Veil of Maya, Strawberry Girls and Cryptodira March 18th - Milwaukee, WI @ The Rave II March 19th - St. Paul, MN @ Amsterdam Bar & Grill March 21st - Denver, CO @ The Oriental March 22nd - Salt Lake City, UT @ The Depot March 23rd - Boise, ID @ Treefort Festival March 25th - Portland, OR @ Hawthorne Theatre March 26th - Seattle, WA @ El Corazon March 28th - Sacramento, CA @ Ace Of Spades March 29th - Berkley, CA @ Cornerstone March ...
Provided to YouTube by The Orchard Enterprises Touch and Go (Singles) · Rupert Holmes Songs That Sound Like Movies: The Complete Epic Recordings ℗ 2018 Cherry Red Records Released on: 2018-02-23 Auto-generated by YouTube.
SONGS FOR YOU coming soon
Touch And Go! Celebra el Dia de la Niñez al mejor estilo #barbie Gabriel Canci fiel al "Barbiecore" viste de rosa a todo el programa con varias sorpresas. Fran nos cuenta como proteger a los animales de la calle, Mery esta mas divertida que nunca, Kartajena, nos presenta a un niño prodigio, Azucena recuerda su infancia como brujita, Karina nos trae un super desfile de Barbies. Gaby junto a los técnicos de Idraet y La Hermandad Estilistas cumplen el sueno de Sara y cambian su look. Todo esto y mucho mas! Disfruta "Touch And Go!", seguinos a traves de las redes @touch.and.goo participa de los desafíos de cada semana y gana importantes premios. 👉https://www.instagram.com/touch.and.goo/ 👉Instagram Gabriel Canci: https://www.instagram.com/gabrielcanci/ Disfruta "Touch And Go!", seguinos a...
One of best song of lupert holmes i hope you like it :)
https://www.patreon.com/Leonardo2003 - Help me to continue posting TOP quality TMNT news updates, walkthroughs, top 10 lists, and more! Your support is greatly appreciated, and my gratitude is sincere. Check out my Patreon page to check out all of my cool rewards and goals, and become a patron! THANK YOU and Cowabunga! Tell me your favorite episodes in the comments! My personal list of my favorite episodes from season 1! Subscribe! Lone Raph and Cub, Return to New York, The Shredder Strikes Back, Fallen Angel, Things Change, The Search for Splinter
https://www.patreon.com/Leonardo2003 - Help me to continue posting TOP quality TMNT news updates, walkthroughs, top 10 lists, and more! Your support is greatly appreciated, and my gratitude is sincere. Check out my Patreon page to check out all of my cool rewards and goals, and become a patron! THANK YOU and Cowabunga! 2105 Animatic - https://www.youtube.com/watch?v=eX6KkS-gSAk&t=85s The lost episodes, seasons and ideas from the 2003 series of Teenage Mutant Ninja Turtles. Including - Nightmares Recycled Fast Forward Season 2 Back To The Sewers Season 2 TMNT: Overload Nano Shredder Shredder Wars Wedding Bells and Bytes Alt. Ending Did I miss anything?
https://www.patreon.com/Leonardo2003 - Help me to continue posting TOP quality TMNT news updates, walkthroughs, top 10 lists, and more! Your support is greatly appreciated, and my gratitude is sincere. Check out my Patreon page to check out all of my cool rewards and goals, and become a patron! THANK YOU and Cowabunga! My top 10 episodes from Season 4 of Teenage Mutant Ninja Turtles (2003) Thank you for watching! Subscribe for more! Good Genes Part 1 and 2, Outbreak, The Ancient One, Ninja Tribunal, The Scion of The Shredder, Prodigal Son and more!
Teenage Mutant Ninja Turtles 2003 is property of Mirage Comics and 4Kids Entertainment. Here I share, and review, my favorite Teenage Mutant Ninja Turtles 2003 episode. Ultimate Drako shows up in the lair and uses the Time Scepter (that they snatched from Lord Simultaneous) to send each turtle to different realities. This results in the episodes, "Reality Check," "Across the Universe," "Same As It Never Was," and "The Real World." I have recently opened up a Design by Humans store. I'm really excited about this opportunity. Some of the information that I obtained came from here: http://turtlepedia.wikia.com/wiki/Same_As_It_Never_Was Here's the episode: https://www.youtube.com/watch?v=Out1mvnrEgM&t=683s I have cool merchandise available. The thing I love is that the design is on shirt...
Bet you don't remember seeing all of these adult TMNT moments as a kid! Subscribe to our channel: http://goo.gl/ho3Hg6 Ever since the late 1980’s, there seems to always be some version of the Teenage Mutant Ninja Turtles getting released. These versions range from cartoons to live-action theatrical releases. While every version of the ninja turtles is aimed towards kids, animators and writers have found a number of different ways to sneak in adult moments. On the CG Nickelodeon version of the Ninja Turtles, the villain known as Fishface takes one of his puns a little too far. Dr. Stockman has spent years trying to foil the turtles, but Shredder may be the one who has tortured him the most, especially in the 4Kids animated series. April works crazy hours at the news network, but apparentl...
https://www.patreon.com/Leonardo2003 - Help me to continue posting TOP quality TMNT news updates, walkthroughs, top 10 lists, and more! Your support is greatly appreciated, and my gratitude is sincere. Check out my Patreon page to check out all of my cool rewards and goals, and become a patron! THANK YOU and Cowabunga! My top 10 episodes from Season 3 of Teenage Mutant Ninja Turtles (2003) Thank you for watching! Subscribe for more! Same as it Never Was, Exodus, The Real World, Touch and Go, Bishop's Gambit, Hun on The Run and more!
https://www.patreon.com/Leonardo2003 - Help me to continue posting TOP quality TMNT news updates, walkthroughs, top 10 lists, and more! Your support is greatly appreciated, and my gratitude is sincere. Check out my Patreon page to check out all of my cool rewards and goals, and become a patron! THANK YOU and Cowabunga! Teenage Mutant Ninja Turtles (2003) The Lost and Rare songs. This video mostly covers the "Pick Us a Rockin' Theme Song Before Mikey Gets His Way Challenge." Which were 6 Songs voted on by fans to be the theme for Season 7, Back to the Sewers. There were also the three songs that Mikey wanted to be the theme song, that are very funny. And finally a demo song that was a possible theme for the first season. Enjoy!
Part 1 walkthrough for Teenage Mutant Ninja Turtles (2003) Videogame for Game Boy Advance, Xbox, PlayStation 2, Microsoft Windows, GameCube. Below is a link to my playlist for this walkthrough. #tmnt #TeenageMutantNinjaTurtles Teenage Mutant Ninja Turtles (2003) Videogame 100% Walkthrough Playlist: https://www.youtube.com/playlist?list=PL8CJ901elwTdOE0IiSbBWDveIwOwbkreZ FOR MORE: https://en.wikipedia.org/wiki/Teenage_Mutant_Ninja_Turtles_(2003_video_game) BUY GAME ON AMAZON: https://goo.gl/K6omyZ SUBSCRIBE: https://www.youtube.com/crazygaminghub?sub_confirmation=1 -~-~~-~~~-~~-~- Please watch: "Mario Party Series - Wario Vs Waluigi Vs Rosalina Vs Toadette Vs Mario Vs Peach Vs Luigi Vs Daisy" https://www.youtube.com/watch?v=ny5p1m84Hls -~-~~-~~~-~~-~-
Rupert Holmes (born David Goldstein on February 24, 1947) is a British-born American composer, singer-songwriter, musician, and author of plays, novels, and stories. He is widely known for his number one pop hit "Escape (The Piña Colada Song)" (1979/1980) and the song "Him", which reached the number 6 position on the Billboard Hot 100 U.S. pop chart in 1980. He is also known for his 1985 Tony Award-winning musical Drood (originally The Mystery of Edwin Drood) and his 2007 Drama Desk Award-winning book for the Broadway musical Curtains, and for his television series Remember WENN.
Holmes was born David Goldstein in Northwich, Cheshire, England. His father, Leonard Eliot Goldstein, was a United States Army warrant officer and bandleader. His mother, Gwendolen Mary (nee Pynn), was English, and both were musical. Holmes has dual British and American citizenship. The family moved when Holmes was six years old to the northern New York City suburb of Nanuet, New York, where Holmes grew up and attended nearby Nyack High School and then the Manhattan School of Music (majoring in clarinet). Holmes' brother, Richard, is an opera singer based in New York City and is the principal lyric baritone of the New York Gilbert and Sullivan Players, sings roles with regional opera companies, such as Glimmerglass Opera, Lake George, and Virginia Opera, among others, and has appeared at the Metropolitan Opera.
I've come back this mornin' to where I first came alive
Here within this terminal where the buses arrive
I was a commuter on the 804
Work for a computer on the 19th floor and...
You came down the aisle of the bus and you sat by my
side
Shoulder up to shoulder we shared that 9 o'clock ride
Oh, my heart was screamin' as you left your seat
Followin' your movements I was at your feet and...
Oh, down into the terminal both of us smiled
So we entered the terminal just as you smiled
"Won't you leave out work for today?" you ask of me
then
So I phoned-in-sick on the way to the home of a friend
We were all alone from 10 A.M. till 3
Really thought the fire had gone out of me but...
You awoke the sleep of my life from gray into red
Made the weary wonder of Wall Street rise from the dead
Could have held up budding my entire life
But I had to get home to the kids and the wife and...
So I left for the terminal where I began
Baby, no, I wouldn't have left if I'd been half a man
So here I am this morning where love had asked for the
dance
Here within this terminal where I passed on a chance
Lord, I'll never find her though I've truly tried
Probably she's found another bus to ride and...
I am now about to begin the last of my days
I'm within what others would call a terminal phase
I myself can only say it's livin' dead
Ridin' to the office with a song in my head that
goes...
La da da...
And you know it grows
La da da...
Oh, la da da...