- published: 05 Mar 2017
- views: 177422
'+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; })); }); -->
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.
"Original" is a song by Leftfield, released as the sixth single under that name. The song was released on 12" and CD on 13 March 1995. It featured Toni Halliday on vocals. The song gave the group their first appearance on Top of the Pops and reached #18 in the UK charts. The beginning of the song is used often on the UK version of Big Brother.
Toni Halliday about "Original":
Original was a catamaran built by Englishman Mayflower Crisp in Rangoon, Burma in the early 19th century.
Originality is the quality of novelty or newness in created works.
Original or The Originals may also refer to:
Mix, mixes, mixture, or mixing may refer to:
A DJ mix or DJ mixset is a sequence of musical tracks typically mixed together to appear as one continuous track. DJ mixes are usually performed using a DJ mixer and multiple sounds sources, such as turntables, CD players, digital audio players or computer sound cards, sometimes with the addition of samplers and effects units, although it's possible to create one using sound editing software.
DJ mixing is significantly different from live sound mixing. Remix services were offered beginning in the late 1970s in order to provide music which was more easily beatmixed by DJs for the dancefloor. One of the earliest DJs to refine their mixing skills was DJ Kool Herc.Francis Grasso was the first DJ to use headphones and a basic form of mixing at the New York nightclub Sanctuary. Upon its release in 2000, Paul Oakenfold's Perfecto Presents: Another World became the biggest selling dj mix album in the US.
A DJ mix is often put together with music from genres that fit into the more general term electronic dance music. Other genres mixed by DJ includes hip hop, breakbeat and disco. Four on the floor disco beats can be used to create seamless mixes so as to keep dancers locked to the dancefloor. Two of main characteristics of music used in dj mixes is a dominant bassline and repetitive beats. Music mixed by djs usually has a tempo which ranges from 120 bpm up to 160 bpm.
Mix is the debut studio album by New Zealand Pop rock band Stellar, released by Sony BMG on 29 July 1999. The album debuted at #2 on the RIANZ albums chart, and after seven weeks within the top 10 would finally reach the #1 position. The album would spend a whole 18 weeks within the top 10 on the charts. The album was certified 5x platinum, meaning that it had sold over 75,000 copies in New Zealand.
The album was re-released on 18 February 2000 as a limited edition which included a new cover art and a bonus CD-rom that included the music videos for the singles "Part of Me", "Violent" and "Every Girl" as well as three remixes (these had appeared on previous singles) and an 8-minute documentary. Even after the limited edition's run had finished, all subsequent pressings of the album would feature the new cover.
Mix became the 22nd best-selling album in 2000 in New Zealand. At the New Zealand Music Awards in 2000, Mix won the Album of the Year award.
Provided to YouTube by Hard Hands Song of Life (Remastered) · Leftfield Leftism ℗ 2017 Hard Hands under exclusive license to Sony Music UK Limited Released on: 2000-05-23 Composer, Lyricist: Neil Barnes Composer, Lyricist: Paul Daley Engineer: Ollie J Composer, Lyricist: Yanka Rupkina Mastering Engineer: Paul Simonon Auto-generated by YouTube.
I set out to discover the secrets of Leftfield's production on this all time classic track - Song of Life. I recreated all the sounds I could and uncovered the samples, the synths and the secrets of what went into it. Here's a link to more info on the gear used - https://gearspace.com/board/electronic-music-instruments-and-electronic-music-production/156920-what-instruments-were-used-leftfields-leftism.html Links about 'Song of Life' on Whosampled.com https://www.whosampled.com/Leftfield/Song-of-Life/ https://www.whosampled.com/Leftfield/Song-of-Life-(Original-12-Version)/
Leftfield - Song Of Life Live In The Studio Mercury Music Prize 1995
leftfield-song of life
This track is the property of Hard Hands recordings. Unfortunately this mix is not available for legal purchase as an mp3 anywhere online. Read the review on http://www.dancefloordestroyers.co.uk/ If anyone has a problem with this video being online please contact the channel user and anything that is requested from the owner of the content will be removed - please dont just remove the video without contact. If you like this track then check out the other tracks on my channel and subscribe to it for weekly updates of the latest and greatest dancefloor destroyers.
The true Original release of Song Of Life by the great Gods Leftfield. Enjoy!!
Original version from 1993,What a classic!
Subscribe for Weekly Uploads ╰(✿´⌣`✿)╯♡ Artist: Leftfield Album: Leftism Track: Song Of Life Released: 1994 Frequency: 432.001Hz ✿ Headphones Recommended ✿ This channel is not monetised, please help keep it that way. Any donation is highly appreciated ..♡ 💫Buy me a Coffee: https://www.buymeacoffee.com/432Hz 💢Etsy: https://www.etsy.com/uk/shop/OrgonatureUK If you are unaware of the effects of different frequencies on the human body, The Fibonacci Sequence or Cymatics is a great place to start 😀 🎷432Hz community post: https://www.youtube.com/c/432HertzStreet/community 🍉Frequency and patterns in nature: https://youtu.be/IawV-i6OOes ----- ----- Leftfield: SC: https://soundcloud.com/leftfield SP: https://open.spotify.com/artist/72hqBMsw7x5jnfxxwkii8L OWS: https://www.leftfieldmusi...
Can you buy a cheap sailboat catamaran for sailing and cruising in the Caribbean? We talk about older sailing catamarans, boat life, living aboard, and family sailing purchasing a sailboat, finding a deal on a sailing catamaran, and living on a sailboat. Lady K Discord: https://discord.gg/EHzy8YjmWc Need a consult? Click here to drop a message: https://ladyksailing.com/consults/ Want to help support Lady K Sailing? Click here to become a Patron: http://www.patreon.com/ladyksailing Or here to make a one time donation: http://www.ladyksailing.com/team-k Follow Lady K on Facebook: https://www.facebook.com/ladyksailing Or Instagram: https://www.instagram.com/ladyksailing/ Photo Credit: Yachtworld.com https://asiayachting.net/wp-content/uploads/yacht-galleries/7313652/7313652_2019121819385...
For sale at Preston Marina https://www.theyachtmarket.com/en/boat-for-sale/2457982/ www.prestonmarina.co.uk
We continue to become professional mechanics and window technicians, all in a few days work for us amateur boat restorers! For More Recent Updates: Instagram: @wildlings_sailing Facebook: https://www.facebook.com/wildlingssailing email: [email protected] Support us? Amazon Wishlist: https://www.amazon.fr/hz/wishlist/ls/2OMA0VUR93ZQC?ref_=wl_share Ko-fi: https://www.ko-fi.com/wildlingssailing PayPal: https://www.paypal.me/wildlingssailing Our T-shirts: https://teespring.com/stores/wildlings-store
Here are some the best and most futuristic catamaran yachts in the world!
Budget catamaran market Join patreon https://www.patreon.com/chasinglatitudes?fan_landing=true for awesome perks and access to the members area ASA members discount https://members.asa.com/?promo=HOW2SAILING Become a producer on chasing latitudes, 100.00 PayPal donation here https://paypal.me/HowToSailing?locale.x=en_US Amazon audible free trial https://amzn.to/37IZ2Vx 428 days audio book https://amzn.to/3IklMrq Donate crypto Bitcoin 3HYebP9M2io44rZa8aXSwLPhXMH2KsrC2m ETH 0x03569fACCF4f0767978063CBb221F579FB703D1A SHIB 0xc7687A6b0Aead293965397b9957E0c752f074968 DODGE DGkeVFzjdv1Dimit4f81RP2FfChAPWH5wc New book is out and available now https://amzn.to/3lgzG61 My website and articles www.chasinglatitudes.com Wish list https://www.amazon.com/hz/wishlist/ls/3PKO761WN5Y6T?ref_=wl_share ...
Thank you to our patrons for supporting this video. This video was not sponsored and is purely my own opinion. I wonder at the size and agility of the cat which has been placed amongst the pigeons. This video took quite a bit of work to pull together, we did about 10 revisions and I'm still not 100% happy with it but it goes a long way towards describing what I think is a good and safe multihull sailing philosophy. The ONE book on Catamarans you need to own http://bit.ly/CatamaransBook https://www.youtube.com/watch?v=2paM4zxnf_o The Polar Diagram http://www.ockam.com/docs/SplainPolars.pdf Yachting World Magazine - Sailing Across Atlantic article http://bit.ly/CatsAcrossAtlantic A video of a Leopard 45 performing under various conditions http://bit.ly/ExamplePerformance A guy Sailing the W...
In this video, we'll take you on a tour of HH 44 catamaran, the world's first parallel hybrid catamaran! The Hybrid details are at the end of the video, ENJOY! Subscribe for the latest news and prices!
We detail our buying experience for our 2005 Leopard 43 catamaran and share specific details regarding the good, the bad, and the ugly that comes with buying a used Bluewater catamaran at this price point.
#neel #trimaran #pys
Sailing Catamaran For Beginners ⛵ Learn How to Sail a Catamaran | In today's sailing vlog, we teach you everything we've learned on how to sail a catamaran while we continue making our way up north through the beautiful exuma islands. ☺ Support our production by giving this video a THUMBS UP & SUBSCRIBING ☺ Join Our Crew On Patreon: ☞ https://www.patreon.com/livinghakuna ⇩ SUBSCRIBE ⇩ https://www.youtube.com/channel/UCrlbNFmD2FNK9srrkjTnIPA?sub_confirmation=1 Support Our Online Business Of Pet Supplies: ☞ https://www.mokaipaws.com Find our gear here: ☞ https://livinghakuna.com/our-gear/ Stay up to day with us on: ☞ Patreon: https://www.patreon.com/livinghakuna ☞ Website: https://www.livinghakuna.com ☞ Instagram: https://instagram.com/LivingHakuna/ ☞ Facebook: https://facebook.com/Liv...
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.
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]