- published: 11 Apr 2019
- views: 56045
'+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; })); }); -->
"Want To" is a song co-written and recorded by American country music duo Sugarland. It was released in August 2006 as the first single from the album Enjoy the Ride. It was their first single not to feature former member Kristen Hall, although Jennifer Nettles had previously been featured on Bon Jovi's Number One country hit, "Who Says You Can't Go Home", the song was also the first regular Number One hit of Sugarland's career in the U.S., spending two weeks at the top of the Billboard Hot Country Songs charts in late 2006. The duo's members, Jennifer Nettles and Kristian Bush, wrote the song along with Bobby Pinson. The song has sold 856,000 copies in the US as of April 2013.
Daniel Manzano Salazar (born 4 December 1972), better known by his stage name Dr Kucho!, is a Spanish house DJ/record producer. He is best known for his 2005 single "Can't Stop Playing" with Gregor Salto. The song was re-released in 2014, remixed by Oliver Heldens and vocals from Ane Brun where added. The song then had success in the UK, reaching number 4 in the charts.
Dr. Kucho started in 2010 releasing “New School Tribal”, a tune with African roots and catchy chants that reached the number 26 of Beatport’s house top downloads in just one week, maintaining this position and closers for weeks. It seems that Dr. Kucho has a special drive to start each new year full of energy, as he demonstrated on January 2009 when he released new remixes of “Patricia never leaves the house”, the tune that opened him the doors of UK market in 2001, this re-release with remixes from Dr. Kucho himself, Gregor Salto, Peter Gelderblom and Mike Haddad & Royce Haven was one of the best sellers at Beatport during the beginning of the 2009.
"To Be" is the English title of a Japanese-language song by Ayumi Hamasaki. It was released as the singer's eighth single on May 12, 1999. The song begins "Dare mo ga toorisugite...", and does not contain the phrase "to be" or any other English lyrics.
"To Be" was released less than a month after her first number one single, "Love (Destiny)." Hamasaki's first song to be composed by Do as Infinity composer DAI, "To Be" was unable to reach the top position on the Oricon, unlike its predecessor. Hamasaki re-recorded "To Be" in celebrating her 10th anniversary in the music business in 2008 and it appeared as a B-Side on her Days/Green single.
The music video for "TO BE" was directed by longtime collaborator Takeishi Wataru. It shows Hamasaki singing as seen by a little boy through a kaleidoscope. It makes use of various backgrounds, outfits, makeup, and wigs to bring as much color as possible into the world the little boy sees. At the end, the kaleidoscope lens breaks, and Hamasaki is seen in black and white.
To Be (做自己 Zuò zìjǐ, "be yourself") is a 1997 Mandarin-language pop album by Karen Mok. It was Mok's first album for the Taiwan and PRC markets. The album sold over 800,000 copies, and included a hit single, Ta Bu Ai Wo ("He does not love me").
A drummer is a musician who plays drums, which includes a drum kit ("drum set" or "trap set", including cymbals) and accessory-based hardware which includes an assortment of pedals and standing support mechanisms, marching percussion or any musical instrument that is struck within the context of a wide assortment of musical genres. The term percussionist applies to a musician who performs struck musical instruments of numerous diverse shapes, sizes and applications. Most contemporary western ensembles bands for rock, pop, jazz, R&B etc. include a drummer for purposes including timekeeping. Most drummers of this particular designation work within the context of a larger contingent (aka rhythm section) that may also include, keyboard (a percussion instrument) or guitar, auxiliary percussion (often of non western origin) and bass (bass viol or electric). Said ensembles may also include melodic based mallet percussion including: vibraphone, marimba or xylophone. The rhythm section, being the core metronomic foundation with which other melodic instruments, including voices, may present the harmonic/melodic portion of the material.
Planetary is an American comic book limited series created by writer Warren Ellis and artist John Cassaday published by the Wildstorm imprint of DC Comics. Describing themselves as "Archaeologists of the Impossible", Planetary is an organization determined to discover the world's secret history.
Elijah Snow is initially presented as a vagrant missing many memories of his past. Snow is recruited as an investigator for the Planetary field team by Jakita Wagner. Possessing the ability of cold manipulation, Snow assists the Planetary team. Snow's memories eventually return and he realizes that he is in fact a Century Baby (all born on January 1, 1900 and exhibiting radically decreased aging), and that his recruitment was not the beginning of his history with Planetary; he is in fact the enigmatic Fourth Man who created Planetary.
During Elijah Snow's absence, metahuman Jakita Wagner is the field leader for the Planetary team. Eventually revealed to be the daughter of Lord Blackstock (another Century Baby) and a scientist in the hidden African city of Opak-Re, the infant was abandoned due to the forbidden nature of their union. Having loved her mother, Snow arranges for the infant's adoption by a German couple (hinted to be the same couple that raised The High of the Wildstorm Universe). Jakita develops superhuman abilities (e.g. enhanced strength, speed, and senses), but also possesses a very low tolerance for boredom, a trait Snow characterizes as having been inherited from both of her parents.
Drummer may refer to
The Complete Edition is here featuring "Want To" and "Kiss And Make Up" ft. Blackpink!! https://dualipa.co/completeedition Video Editing by CapDiamant Follow Dua Lipa: https://wbr.ec/website_dualipa https://wbr.ec/facebook_dualipa https://wbr.ec/twitter_dualipa Engineer, Producer, Programmer: ADP Masterer: Chris Gehringer Lead Vocals: Dua Lipa Mixer: Jamie Snell Producer: Stephen 'KOZ' Kozmeniuk Drum Programmer: Stephen 'KOZ' Kozmeniuk Composer: Amish Dilipkumar Patel Composer: Andrew Jackson Composer: Dua Lipa
DRKNSS - Want To (4x4 Bassline Speed Garage) A fresh 2024 Bassline Garage inspired track produced by DRKNSS Follow DRKNSS Instagram - Tiktok - More tracks on the way, stay tuned!
Official audio for Want To by Victor J Sefo, featuring Josh WaWa White (J Wawa) Listen to more from Victor J Sefo ⬇️ Wifey: https://youtu.be/WNfH7GVVQBI My Everything: https://youtu.be/5jwnq9YQJ9g Rest In Love: https://youtu.be/82OPVjADRjo Available to download or stream 🎧 https://precise.ffm.to/wantto 🔔 Subscribe: https://youtube.com/@VictorJSefo Lyrics: Josh Wawa yes I see you Alongside Mr. Oh yeah, yeah (Woah, nah, nah, nah, nah, yeah) (Nah, nah, nah, nah, woah) I said, "Hey little mama what you doing later on?" you said "I ain't doing nothing at all" I said, "Damn you be looking so fine in them tight jeans" You say, "I know I'm just showing it off" Girl I want to, want to, want to know you a little bit more Oh girl you already know I want to (to, oh) You already know Yeah you alre...
B Young - Want2 Listen/Download: https://smarturl.it/BY_Want2?IQid=yt ---------- Directed by @TheDirectorAli https://www.instagram.com/thedirectorali/ Produced by Yellow Fish Group https://www.instagram.com/yellowfishgroup/ ---------- Subscribe to B Young's channel: http://smarturl.it/BYoungYT ---------- Follow B Young: Facebook: http://smarturl.it/BYoungFB?IQid=yt Twitter: http://smarturl.it/BYoungTwitter?IQid=yt Instagram: http://smarturl.it/BYoungIG?IQid=yt ---------- More from B Young: WINE: https://www.youtube.com/watch?v=oBiPOofoLAs&list=PLFy1uJgUMd87enZVxhGamBrgKfXC7MEZm Juice: https://www.youtube.com/watch?v=xY8Moyqa-n8&list=PLFy1uJgUMd87enZVxhGamBrgKfXC7MEZm&index=2 079ME: https://www.youtube.com/watch?v=oQu5hOkzJDs&list=PLFy1uJgUMd87enZVxhGamBrgKfXC7MEZm&index=4 Jum...
The official music video for Dua Lipa - Want To Listen on Apple Music: https://music.apple.com/cl/album/dua-lipa-complete-edition/1434849473 Taken from her self-titled debut studio album released in 2017, which featured the hit singles 'Be The One', 'IDGAF', 'Hotter Than Hell' & 'New Rules' Follow me online: Instagram: https://dualipa.co/instagram Facebook: http://dualipa.co/facebook Twitter: http://dualipa.co/twitter YouTube: https://dualipa.co/youtube Spotify: http://dualipa.co/spotify Apple Music: https://dualipa.co/apple-music Deezer URL: http://dualipa.co/deezer Amazon Music: https://dualipa.co/amazonmusic https://rebrand.ly/capdiamant Engineer, Producer, Programmer: ADP Masterer: Chris Gehringer Lead Vocals: Dua Lipa Mixer: Jamie Snell Producer: Stephen 'KOZ' Kozmeniuk Drum ...
Dua Lipa - Want To (Lyrics) Download Dua Lipa - Want To (Lyrics): ✖ Follow me on Instagram for awesome pictures: https://instagram.com/unique_vibes_official/ ✖ Follow my Spotify playlist: https://open.spotify.com/user/2qbbpjmv4ce9t5etpucu8pbkk/playlist/3RlWZ8rqCBPtWDZ92OFpCh ► Subscribe: https://youtube.com/c/UniqueVibesMusic ► Spotify: https://open.spotify.com/user/2qbbpjmv4ce9t5etpucu8pbkk/playlist/3RlWZ8rqCBPtWDZ92OFpCh ► Instagram: https://instagram.com/unique_vibes_official/ ► Soundcloud: https://soundcloud.com/unique_vibes ► Buy my art: https://society6.com/uniquevibes Download: ► Dua Lipa Website: https://dualipa.com/ Facebook: https://www.facebook.com/dualipaofficial/ Twitter: https://twitter.com/dualipa Instagram: https://www.instagram.com/dualipa/ [Verse 1] I'm young for ton...
Music video by Sugarland performing Want To. (C) 2006 Mercury Records, a Division of UMG Recordings, Inc.
Asmongold Reacts to: Joe Rogan reveals what Kamala Harris didn't want to talk about on podcast by @FoxNews https://www.youtube.com/watch?v=4WXark4iLwA ► Asmongold's Twitch: https://www.twitch.tv/zackrawrr ► Asmongold's Twitter: https://twitter.com/asmongold ► Asmongold's Sub-Reddit: https://www.reddit.com/r/Asmongold ► Asmongold's 2nd YT Channel: https://www.youtube.com/user/ZackRawrr Channel Editors: CatDany & Daily Dose of Asmongold If you own the copyright of content showed in this video and would like it to be removed: https://x.com/CatDanyRU https://x.com/DAsmongold
Provided to YouTube by Sonosuite S.L. Want to · Wastedworld Want to ℗ Wastedworld Released on: 2022-07-11 Composer: Wastedworld Auto-generated by YouTube.
Album: Enjoy the Ride Utgitt: 2006 Låtskrivere: Bobby Pinson / Jennifer Nettles / Kristian Bush / Kristen Hall Producer – Byron Gallimore, Jennifer Nettles, Kristian Bush Enjoy the Ride is the second studio album by country music duo Sugarland, released on November 7, 2006 on Mercury Nashville Records. The album is the first one released with Sugarland as a duo (comprising Jennifer Nettles and Kristian Bush), as former member Kristen Hall had departed earlier in 2006. Sugarland is an American country music duo consisting of singer-songwriters Jennifer Nettles (lead vocals) and Kristian Bush (vocals, guitar, mandolin). Sugarland was founded in 2002 by Kristen Hall (vocals, guitar) with Bush and became a trio after hiring Jennifer Nettles. #Sugarland #WantTo #CountryPop #CountryClassic #Ron...
"Want To" is a song co-written and recorded by American country music duo Sugarland. It was released in August 2006 as the first single from the album Enjoy the Ride. It was their first single not to feature former member Kristen Hall, although Jennifer Nettles had previously been featured on Bon Jovi's Number One country hit, "Who Says You Can't Go Home", the song was also the first regular Number One hit of Sugarland's career in the U.S., spending two weeks at the top of the Billboard Hot Country Songs charts in late 2006. The duo's members, Jennifer Nettles and Kristian Bush, wrote the song along with Bobby Pinson. The song has sold 856,000 copies in the US as of April 2013.
I'm gonna rock your world
That's a swagging beat, boy
It's got to be funky
To the beat y'all
Throw your hands in the air, yo
And wave them like you just don't care, yo
[X2]
Throw your hands in the air, yo (everybody)
And wave them like you just don't care, yo (everybody)
Throw your hands in the air, yo (everybody)
And wave them like you just don't care, yo
Let the bass go!
Dance!
Damn them boys are crazy
Dance!
You gots to be funky
Dance on the dance floor
Everybody
[X2]
Find More lyrics at www.sweetslyrics.com
Throw your hands in the air, yo (on the dance floor)
And wave them like you just don't care, yo (everybody)
[X4]
On the dance floor
Everybody
[X2]
Hah yeah, that was cool huh?
And here we go again
Aha shake it baby
Come on now, go go go,...
Shake that groove thing
Throw your hands in the air, yo (on the dance floor)
And wave them like you just don't care, yo (everybody)
[X2]
Make it funky!
Dance [x4]