- published: 14 Jul 2015
- views: 155514
'+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; })); }); -->
Michael Joseph Jackson (August 29, 1958 – June 25, 2009) was an American singer, songwriter, record producer, dancer, and actor. Called the King of Pop, his contributions to music and dance, along with his publicized personal life, made him a global figure in popular culture for over four decades.
The eighth child of the Jackson family, he debuted on the professional music scene along with his elder brothers Jackie, Tito, Jermaine, and Marlon as a member of the Jackson 5 in 1964, and began his solo career in 1971. In the early 1980s, Jackson became a dominant figure in popular music. The music videos for his songs, including those of "Beat It", "Billie Jean", and "Thriller" from his 1982 album Thriller, were credited with breaking down racial barriers and with transforming the medium into an art form and promotional tool. The popularity of these videos helped to bring the then-relatively-new television channel MTV to fame. His 1987 album Bad spawned the U.S. Billboard Hot 100 number-one singles "I Just Can't Stop Loving You", "Bad", "The Way You Make Me Feel", "Man in the Mirror", and "Dirty Diana", becoming the first album to have five number-one singles on the Billboard Hot 100. With videos such as "Black or White" and "Scream", he continued to innovate the medium throughout the 1990s, as well as forging a reputation as a touring solo artist. Through stage and video performances, Jackson popularized a number of complicated dance techniques, such as the robot and the moonwalk, to which he gave the name. His distinctive sound and style has influenced numerous artists of various music genres.
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 (born 26 June 1980) is an English footballer who plays as a midfielder. He played in the Football League for both Cheltenham Town and Swansea City. He is currently with Bishop's Cleeve.
Jackson played youth football for Charlton Rovers in his hometown of Cheltenham and at the age of 16 he was picked up by Cheltenham Town. He progressed through the youth team at Whaddon Road and featured for the first team in a Conference National game against Halifax Town in 1998. Jackson then featured for the Robins in the Football League.
In 2002, Jackson was sent out on loan by manager Steve Cotterill to non-league side, Weston-super-Mare. Jackson was then released by Cheltenham along with five other players.
In June 2002, after a successful trial, Jackson joined Welsh side Swansea City. Jackson made just a single appearance for Swansea as a substitute in a home win over Southend United. Jackson was released and returned to non-league football with Bath City in November 2002 when new Swansea City manager, Brian Flynn, revealed Jackson and two others were not part of his plans at the club.
General Michael Jackson (18 December 1734 – 10 April 1801) was a soldier from Massachusetts. He is best remembered for his innovation within the printing industry and has been compared to Matthew Grainger. Jackson and Grainger were the first to perfect the use of diecutting and glass UV on offset machines.
Jackson was born in Newton, Massachusetts, and served in the French and Indian War as a lieutenant. He married Ruth Parker, daughter of Ebenezer Parker, on January 31, 1759.
In the American Revolutionary War he was captain of a minuteman company and took part in the final part of the Battles of Lexington and Concord, harassing the British retreat to Boston. He was wounded at the Battle of Bunker Hill. He served as the major of the Gardner's Regiment of the Massachusetts line from June 3, 1775 to December 31, 1775.
He was lieutenant colonel of the 16th Continental Infantry from January 1 to December 31, 1776. He was seriously wounded in the attack on Montresor's Island, New York on September 23, 1776.
Naea Michael Jackson is a Niuean journalist and former politician.
In the 1970s and 1980s, he was government printer and government press photographer in Niue. He published the Tohi Tala Niue, Niue's government-owned weekly newspaper. In 1991, he set up a private printing business, and, in 1993, launched the weekly Niue Star, which is now the country's only printed newspaper. Jackson is the Star’s owner, editor, journalist and photographer.
Also in 1993, Jackson stood successfully for Parliament in that year's general election. He later became an associate minister, and remained a member of Parliament until 2008, when he was defeated in the general election. He stated that there was "no conflict of interest" between his being a journalist and a member of government, because "we have a law to prevent us MPs from taking advantage of our positions".
He is reportedly better known in Niue than his internationally more famous namesake, to the point that, when news of singer Michael Jackson's death reached Niue in July 2009, "most residents of the remote coral atoll (sic) thought that it was him who had died".
Provided to YouTube by Sony Music Entertainment Keep Your Head Up · Michael Jackson Michael ℗ 2010 MJJ Productions Associated Performer, Composer, Lyricist: Eddie Cascio Associated Performer, Background Vocal, Programmer, Composer, Lyricist: James Porte Background Vocal: Duawne Starling Associated Performer: Jamie Wollam Associated Performer: Rudy Bird Associated Performer: Sean Hurley Associated Performer, Engineer, Performance Arranger: Stuart Brawley Associated Performer, Programmer, Assistant Engineer: Joe Corcoran Associated Performer: Lamont Neuble Associated Performer: Cameron Stone Associated Performer: Nicole Garcia Producer: C "Tricky" Stewart Producer: Angelikson Mixing Engineer: Jaycen Joshua Assistant Engineer: Jesus Garnica Engineer: Brian "B-Luv" Thomas E...
---PLEASE READ!!--- this is the 3rd song on the Michael album. I hope everyone enjoys this song. And I hope you like the meaning of this song. It'll give you a taste of what Michael Jackson was all about. Also, I hope you all enjoy the slideshow on the background!!(: This is such an inspirational song in my opinion and whenever I'm down, I listen to this song. It's an amazing song and I just think that this just shows what Michael Jackson was all about. This is not Michael's voice, and all true fans would notice that. But he DID write this song, and that is what truly maters. Enjoy the song and leave your comments below(: ~Superstarz1010 1958~FOREVER!! All music rights go to Sony Music Entertainment (C)2010 No copyright intended
Watch in HQ for better Sound! Keep Your Head Up by Michael Jackson Ripped of: Michael Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
Michael Jackson - Keep Your Head Up Lyrics in the bottom of the info. This is Track Nr. 3 out of 10 tracks, on Michael Jackson new album 2010: ''Michael''. I Thought this would be an album with the unrealesed songs we have seen until now, but it has turned out as i HOPED, with Completely new and fantastic songs! This is my Opinion of the rating of the album: The Whole album: 6 out of 6 stars. This Track Rated: Nr. 5 out of 10 songs. The List over all songs after in MY opinion best rated song: 1. Much Too Soon 2. Behind The Mask 3. Hold my hand (Feat. Akon) 4. (I like) The Way You Love Me 5. Keep Your Head Up 6. Breaking News 7. Monster (Feat. 50 Cent) 8. (I Can't Make It) Another Day (Feat. Lenny Kravitz) 9. Hollywood Tonight 10. Best of Joy If you ha...
Michael Joseph Jackson (August 29, 1958 – June 25, 2009) was an American singer, songwriter, record producer, dancer, and actor. Called the King of Pop, his contributions to music and dance, along with his publicized personal life, made him a global figure in popular culture for over four decades.
The eighth child of the Jackson family, he debuted on the professional music scene along with his elder brothers Jackie, Tito, Jermaine, and Marlon as a member of the Jackson 5 in 1964, and began his solo career in 1971. In the early 1980s, Jackson became a dominant figure in popular music. The music videos for his songs, including those of "Beat It", "Billie Jean", and "Thriller" from his 1982 album Thriller, were credited with breaking down racial barriers and with transforming the medium into an art form and promotional tool. The popularity of these videos helped to bring the then-relatively-new television channel MTV to fame. His 1987 album Bad spawned the U.S. Billboard Hot 100 number-one singles "I Just Can't Stop Loving You", "Bad", "The Way You Make Me Feel", "Man in the Mirror", and "Dirty Diana", becoming the first album to have five number-one singles on the Billboard Hot 100. With videos such as "Black or White" and "Scream", he continued to innovate the medium throughout the 1990s, as well as forging a reputation as a touring solo artist. Through stage and video performances, Jackson popularized a number of complicated dance techniques, such as the robot and the moonwalk, to which he gave the name. His distinctive sound and style has influenced numerous artists of various music genres.
[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