- published: 15 Apr 2013
- views: 3916638
'+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; })); }); -->
Robert Louis "Bob" Fosse (June 23, 1927 – September 23, 1987) was an American dancer, musical theatre choreographer, director, screenwriter, film director and actor.
He won 8 Tony Awards for choreography, more than anyone else, as well as one for direction. He was nominated for four Academy Awards, winning for his direction of Cabaret.
Fosse was born in Chicago, Illinois on June 23, 1927, to a Norwegian American father, Cyril K. Fosse, and Irish-born mother, Sara Alice Fosse (née Stanton), the second youngest of six. He teamed up with Charles Grass, another young dancer, and began a collaboration under the name The Riff Brothers. They toured theatres throughout the Chicago area. After being recruited, Fosse was placed in the variety show Tough Situation, which toured military and naval bases in the Pacific. Fosse moved to New York with the ambition of being the new Fred Astaire. His appearance with his first wife and dance partner Mary Ann Niles (1923–1987) in Call Me Mister brought him to the attention of Dean Martin and Jerry Lewis. Fosse and Niles were regular performers on Your Hit Parade during its 1950-51 season, and during this season Martin and Lewis caught their act in New York's Pierre Hotel and scheduled them to appear on the Colgate Comedy Hour. Fosse was signed to a MGM contract in 1953. His early screen appearances included Give A Girl A Break, The Affairs of Dobie Gillis and Kiss Me Kate, all released in 1953. A short sequence that he choreographed in the latter (and danced with Carol Haney) brought him to the attention of Broadway producers.
Michael Geoffrey St Aubyn Jackson (born 24 May 1956) is the Church of Ireland Archbishop of Dublin since 2011.
Jackson was born in Lurgan, County Armagh, Northern Ireland, the son of Church of Ireland rector (latterly appointed Archdeacon of Elphin & Ardagh), and educated at Ballinamallard Primary School and Portora Royal School, Enniskillen. Trinity College, Dublin, before going on to do postgraduate studies at Cambridge University. He is married to Inez Cooke, a medical doctor who was born in County Fermanagh, and they have one daughter, Camilla.
He was ordained to the Anglican ministry as a deacon in 1986 and a priest in 1987. His first pastoral appointment was as a curate at Zion Parish, Dublin, and lectured at Trinity College, Dublin and the Church of Ireland Theological College (now Institute). His next appointment was as College Chaplain at Christ Church, Oxford, from 1989 to 1997. He returned to Ireland and served as the Incumbent of St Fin Barre's Union and Dean of Cork, from 1997 to 2002. Jackson has held many notable positions in the Church of Ireland, including chairmanship of the Church in Society Committee and, currently, chairmanship of the Board for Social Theology. Jackson also plays an active role in the wider Anglican Communion, especially in the areas of ecumenism and inter-faith dialogue. He was elected Bishop of Clogher by the Church of Ireland House of Bishops on 21 November 2001 and consecrated at St Patrick's Anglican Cathedral, Armagh on 6 March 2002. On 2 February 2011, he was elected Archbishop of Dublin and Bishop of Glendalough, and enthroned at Christ Church Cathedral, Dublin on 8 May 2011, succeeding John Neill.
Michael Jackson (born July 15, 1957) is a former professional American football player who played linebacker in eight NFL seasons for the Seattle Seahawks.
Jackson was born in Pasco, Washington. A 1975 graduate of Pasco High School, he has enjoyed greater success and accumulated more career achievements than any other Bulldog. A three-year/three-sport letterman, he was the team captain in both football and baseball while garnering All-State honors and receiving the Denning Award for Outstanding Athlete by the Pasco Jaycees as a senior.
At the University of Washington, Jackson earned four varsity letters and was named to their All-Centennial Football Team. He was also selected as the Inland Empire Amateur Athlete of the Year in 1977, a season in which he helped lead the Huskies to the Rose Bowl. The eyes of the nation were on him during that game as he made a vital end zone interception that helped seal Washington ’s victory over the University of Michigan.
Jackson holds several defensive school records for the Huskies, including single season (210) and career (569) tackles. Among the several honors he received for the U of W include Sports Illustrated Player of the Week (11-12-77), Husky Team Captain (1978), All Pac-8 & Pac-10 Linebacker (1977–78) and several All-American selections.
Michael Jackson is a UK male singer who was lead vocalist with the heavy metal band Satan/Pariah.
Michael was born in Lancaster, Lancashire in 1964 to Estelle & Michael Jackson. He was brought up by his mother in Morecambe, Lancashire from an early age. A fanatical Queen fan Michael Jackson dreamed of being a rock singer like his idol Freddie Mercury.
Entering the Merchant Navy straight from school Michael spent 5 years sailing all over the world while singing with the band Rough Edge between assignments. Eventually he decided to answer an advertisement, learned the required songs and travelled to London for his audition with the band Satan. After a successful interview at Clink Studios, Tower Bridge, London Michael moved there to join Satan.
The first recordings Michael did with Satan later became the EP "Into the Future" which was well received by the press, leading to a deal with Steamhammer Records, Germany. In between recordings the band toured Europe, mainly the Netherlands, which culminated in their appearance at the first Dynamo Open Air Festival in 1986. Michael has fond memories of this festival, especially meeting Angelwitch and Laaz Rocket. Satan were later to tour with Angelwitch in 1987. The first full album, "Suspended Sentence" was released in 1987 and toured Europe with Running Wild to promote it.
http://www.freds.gr/ The Frug (pronounced "froog") was a dance craze from the 1960s that evolved from another dance of the era, the Chicken. The Chicken, which featured lateral body movements, was used primarily as a change of pace step while doing the Twist. As young dancers grew more tired they would do less work, moving only their hips while standing in place. They then started making up arm movements for the dance, which prompted the birth of the Swim, the Monkey, the Dog, the Watusi, the Mashed Potato, and the Jerk. The Frug is sometimes referred to as the Surf, Big Bea, and the Thunderbird. A perfect example of a Frug is found in the movie Sweet Charity, which contains a number called "The Rich Man's Frug", a wildly energetic dance number comprising three "movements" ("The Aloof", ...
Jillian Chizz (Christina Applegate) helps dance students (Taran Killam, Kenan Thompson, Nasim Pedrad, Bobby Moyihan) channel their inner Bob Fosse by doing donks, ka-konks and zuh-zaz'. [Season 38, 2012] #SNL Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
The Little Prince (1974) http://www.imdb.com/title/tt0071762/?ref_=fn_al_tt_2
1958
http://www.danzadance.com/bobfosse http://www.danzadance.com/fosseVerdon Robert Louis Fosse Danzatore, regista e coreografo, è tra i più amati e rappresentati nel mondo, geniale innovatore nel teatro moderno musicale. I più grandi artisti attuali si ispirano ancora a lui per le loro coreografie.
Check out this incredible Bob Fosse choreography from Sweet Charity! What is Sweet Charity (1969) about? Shirley MacLaine gives one of her greatest performances in this spectacular musical based on Neil Simon’s smash Broadway hit. Director Bob Fosse broke new cinematic ground with this freewheeling, visually stunning story of a lovelorn New York dance hall hostess, Charity Hope Valentine, who dreams of old-fashioned romance but gives her heart to one undeserving man after another. Watch the full movie here: https://www.uphe.com/movies/sweet-charity Welcome to TUNE, a channel that celebrates the musical moments in film. From the movie musicals to the musical biopic, we'll be bringing you iconic scenes and the tunes you love! Subscribe here: youtube.com/channel/UCcqcAJ62tsyye-HbXm5GDHA...
There’s a price to pursuing perfection. Watch the OFFICIAL TRAILER for FX’s new limited series, Fosse/Verdon. Premieres Tuesday, 4/9. Subscribe now for more Fosse/Verdon clips: http://bit.ly/SubscribeFX Bob Fosse is a visionary filmmaker and one of theater’s most influential choreographers and directors. Gwen Verdon is the greatest Broadway dancer of all time. Fosse/Verdon will tell the story of these two brilliant, complicated individuals – the love they shared, the art they created, and the price they paid in the pursuit of greatness. Watch Fosse/Verdon Season 1 videos: http://bit.ly/FosseVerdonSeason1 Like Fosse/Verdon on Facebook: https://www.facebook.com/FosseVerdonFX/ Follow Fosse/Verdon on Twitter: https://twitter.com/FosseVerdonFX Follow Fosse/Verdon on Instagram: https://www.i...
The dancers of the Fandango Ballroom perform a sultry routine for their new customers. What is Sweet Charity (1969) about? Shirley MacLaine gives one of her greatest performances in this spectacular musical based on Neil Simon’s smash Broadway hit. Director Bob Fosse broke new cinematic ground with this freewheeling, visually stunning story of a lovelorn New York dance hall hostess, Charity Hope Valentine, who dreams of old-fashioned romance but gives her heart to one undeserving man after another. Watch the full movie here: https://www.uphe.com/movies/sweet-charity Welcome to TUNE, a channel that celebrates the musical moments in film. From the movie musicals to the musical biopic, we'll be bringing you iconic scenes and the tunes you love! Subscribe here: youtube.com/channel/UCcqcA...
Un momento deslumbrante en All that Jazz se representa en el video que acompaña a la canción "Take Off With Us", compuesta por Stanley Lebowsky con letras de Fred Tobias. El magnífico intérprete de dicha canción es Anthony Holland. Esta escena es una coreografía perfecta que revela el arte de la bailarina rubia Sandahl Bergman, con un cuerpo perfecto y una estatura de 1,78 m. Su talento llamó la atención del genio Bob Fosse, quien la seleccionó como bailarina de reserva para su musical Pippin, y más tarde para el aclamado espectáculo Dancin de 1978, el cual contó con los mejores bailarines de Broadway en ese tiempo. ¡Brillante y fantástico! Video, "Take Off With Us" Music by Stanley Lebowsky. Body Ballet® Carolina de Pedro Web: www.bodyballet.es Instagram @bodyballet.adultos Facebook:...
Robert Louis "Bob" Fosse (June 23, 1927 – September 23, 1987) was an American dancer, musical theatre choreographer, director, screenwriter, film director and actor.
He won 8 Tony Awards for choreography, more than anyone else, as well as one for direction. He was nominated for four Academy Awards, winning for his direction of Cabaret.
Fosse was born in Chicago, Illinois on June 23, 1927, to a Norwegian American father, Cyril K. Fosse, and Irish-born mother, Sara Alice Fosse (née Stanton), the second youngest of six. He teamed up with Charles Grass, another young dancer, and began a collaboration under the name The Riff Brothers. They toured theatres throughout the Chicago area. After being recruited, Fosse was placed in the variety show Tough Situation, which toured military and naval bases in the Pacific. Fosse moved to New York with the ambition of being the new Fred Astaire. His appearance with his first wife and dance partner Mary Ann Niles (1923–1987) in Call Me Mister brought him to the attention of Dean Martin and Jerry Lewis. Fosse and Niles were regular performers on Your Hit Parade during its 1950-51 season, and during this season Martin and Lewis caught their act in New York's Pierre Hotel and scheduled them to appear on the Colgate Comedy Hour. Fosse was signed to a MGM contract in 1953. His early screen appearances included Give A Girl A Break, The Affairs of Dobie Gillis and Kiss Me Kate, all released in 1953. A short sequence that he choreographed in the latter (and danced with Carol Haney) brought him to the attention of Broadway producers.
[Spoken part]
Ok..this is the tempo and the melody..
"I was alone dark when I met ya"
drums {beatboxing}
[Verse 1:]
I was alone in the dark when I met ya
Uuuuuuuuuuh uuuuuuh
You took my hand and you told me you loved me
Uuuuuuuuuuh uuuuuuh
I was alone, there was no love in my life
(I was alone, there was no love in my life)
I was afraid of life and you came in time
(I was afraid of life and you came in time)
You took my hand and we kissed in the moonlight
(You took my hand and we kissed in the moonlight)
Uuuuuuuuuuh uuuuuuh
[Chorus:]
I like the way how you're holdin' me
It doesn't matter how you're holdin' me
I like the way you're lovin me'
It doesn't matter how you are lovin' me
I like the way how you're touchin' me
It doesn't matter how you are touchin' me
I like the way how you're kissin' me
It doesn't matter how you are kissin' me
You'll seeeee...
[Verse 2:]
...it won't be long 'til we make vows, I bet ya
Uuuuuuuuuuh uuuuuuh
I thank the Heavens above that I met ya
Uuuuuuuuuuh uuuuuuh
I was alone, there was no love in my life
(I was alone, there was no love in my life)
I was afraid of life and you came in time
(I was afraid of life and you came in time)
You took my hand and we kissed in the moonlight
(You took my hand and we kissed in the moonlight)
Uuuuuuuuuuh
[Chorus 2:]
I like the way how you're lovin' me
It doesn't matter how you are holdin' me
I like the way how you're holdin' me
It doesn't matter how you re lovin' me
I like the way how you're touchin' me
It doesn't matter how you are touchin' me
I like the way how you're kissin' me
It doesn't matter how you are kissin' me
[Verse 3:]
The world's a better place
'cause you came in time,
You took away the rain and brought the sunshine,
I was afraid 'cause I was hurt the last time,
Uuuuuuuuuuh Ahhhhhhhh.
[Chorus:]
I like the way how you're holdin' me,
It doesn't matter how you are holdin' me,
I like the way how you're lovin' me,
It doesn't matter how you are lovin' me,
I like the way how you're touchin' me,
It doesn't matter how you are touchin' me,
I like the way how you're kissin' me,
It doesn't matter how you are kissin' me,
You'll seeeee.
Uuuuuuuuuuh uuuuuuh [12x]
Chcksthtshtshtsh