- published: 12 Nov 2021
- views: 2133346
'+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; })); }); -->
Shaka kaSenzangakhona (circa 1787 – 22 September 1828), also known as Shaka Zulu (Zulu pronunciation: [ˈʃaːɠa]), was one of the most influential monarchs of the Zulu Kingdom.
He was born near present-day Melmoth, KwaZulu-Natal Province. According to tradition, Shaka was conceived during an act of what began as ukuhlobonga, a form of sexual foreplay without penetration allowed to unmarried couples, also known as "the fun of the roads" (ama hlay endlela), during which the lovers were "carried away".
Due to persecution as a result of his illegitimacy, Shaka spent his childhood in his mother's settlements. He is recorded as having been initiated there and inducted into an ibutho lempi (fighting unit). In his early days, Shaka served as a warrior under the sway of Dingiswayo, chieftain of the Mthethwa, to whom the Zulu were then paying tribute.
Dingiswayo called up the emDlatsheni iNtanga (age-group), of which Shaka was part, and incorporated it into the Izichwe regiment. Shaka served as a Mthethwa warrior for perhaps as long as ten years, and distinguished himself with his courage and his adept skill as a close combat warrior. This skill gained the attention of Dingiswayo, who became even more interested in Shaka when he discovered Shaka's royal bloodline. He honoured Shaka by making him commander of a regiment or ibutho.
Shaka (c. 1787 – c. 1828) was the leader of the Zulu Kingdom in the early 19th century.
Shaka may also refer to:
The shaka sign, sometimes known as "hang loose", is a gesture often associated with Hawaii and surf culture. It consists of extending the thumb and smallest finger while holding the three middle fingers curled, and gesturing in salutation while presenting the front or back of the hand; the hand may be rotated back and forth for emphasis. The shaka sign was adopted from local Hawaiian culture and customs by visiting surfers in the 1960s, and its use has spread around the world.
Hawaiians use the shaka to convey the "Aloha Spirit", a concept of friendship, understanding, compassion, and solidarity among the various ethnic cultures that reside within Hawaii, lacking a direct semantic to literal translation. The shaka can also be used to express "howzit?", "thanks, eh?", and "all right!" Drivers will often use it on the road to communicate distant greetings and gratitude.
In American Sign Language, the shaka is one of the two signs used to refer to surfing. In California, the shaka sign may be referred to as "hang loose" or "hang ten"- both associated with surfer culture.
#Shaka Performing #Karma Produce By Terro ChopCity Records X Tekktroniic Muziq Credits MIX AND MASTER By : @Tekktroniic_tmp Beat by : Marvoni / @jevvo_marvoni Shot And Edit By : KD VISUALS Buy And Stream The Song Here https://onerpm.link/Karma-Single My Social Media Instagram : https://www.instagram.com/shaka.muzic/ Twitter : https://twitter.com/iamshakamuzic
"May" Umar Hayyom sŏzi Nicolas Scholtes musiqasi #boshinggaketmonbilanbirsolaman
10/6配信クリップ『LOL』 https://www.twitch.tv/videos/2268910842 イブラヒム https://x.com/honmono_ibrahim きなこ https://x.com/kinako_pop RC MOTHER3 https://x.com/mother3rrd AlphaAzur https://x.com/AzurAlpha 0:00 ダイジェスト 0:15 「他意はない」 1:04 何も上手くいかない 1:38 お笑いネクサス攻防戦 5:49 弾避けゲーム 6:12 大歯茎の者達 ーーーSHAKAーーー 《ライブ配信先》 https://twitch.tv/fps_shaka 《X》 https://twitter.com/avashaka 《お仕事の連絡はこちら》 [email protected] #SHAKA
10/6配信クリップ『LOL』 https://www.twitch.tv/videos/2268910842 ありさか https://x.com/ArisakaaaT きなこ https://x.com/kinako_pop RC MOTHER3 https://x.com/mother3rrd AlphaAzur https://x.com/AzurAlpha 0:00 ダイジェスト 0:16 落ちる者の宿命 0:48 岩の裏の虫 1:31 輩でしかないコンビ 2:03 団結力が皆無の男達 7:37 やりたい放題のCRコンビ 9:37 好きな鍋の具材は 10:17 隙間から消されるきなこ 10:50 誰もタワーを壊さない 11:27 ギブだらけの人生 ーーーSHAKAーーー 《ライブ配信先》 https://twitch.tv/fps_shaka 《X》 https://twitter.com/avashaka 《お仕事の連絡はこちら》 [email protected] #SHAKA
"Shaka, A Story of Aloha" is a feature length documentary on the origin and meaning of the Shaka gesture. Set on O’ahu, Hawai’i, the film explores multiple versions of how the Shaka gesture came about, how it progressed to global use, the Shaka word origin and how it has been used to share the aloha spirit. An Untold, Unknown Story The largely untold story on the history and meaning of the Shaka gesture is only now becoming public now as today’s elders realize that the world sorely needs this epic story more than ever. A 2022 survey by Anthology Research revealed that 91% of Hawai’i residents don't know where the Shaka came from. Multiculturalism The story is also a multicultural melting pot that integrates Hawaiian, Mormon, Japanese/Okinawan plantation workers, entertainers, world lead...
Socials: Instagram- @Rinzo2x - @soulidifiedetherians__ @soulidifieddivinity - Free Dr Malachi Z York EL Peace to the gods and goddess of Planet Ki💯🫴🏽[Positive energy Always creates elevation] - Know ThySelf} - Surviving: the more mindset/skillset you have the better head you have to deal with the things that’s going on with reality and society reality and skillset accusations💯🧠] Music on All Platforms: Stream , Download , Etc [SOULIDIFIED - Etherians] MERCH Dropping Soon
Shaka - Round Deh Suh (Official Music Video) #Shaka Performing #RoundDehSuh https://onerpm.link/rounddehsuh Produced By : #TerroChopCityRecords x Tekktroniic Muziq x One Mckinley Crescent Beat By : Marvoni @jevvo_marvoni Directed By : KD Visuals http://vevo.ly/DfOYZy
#Shaka Performing #Walk Produce By Terro ChopCity Records X Tekktroniic Muziq Credits MIX AND MASTER By : @Tekktroniic_tmp Beat by : Marvoni / @jevvo_marvoni Shot And Edit By : KD VISUALS Buy And Stream The Song Here https://onerpm.link/Walk-Single My Social Media Instagram : https://www.instagram.com/shaka.muzic/ Twitter : https://twitter.com/iamshakamuzic
Kana Qani? #uzbekrap
Text: Nasafiy, Shaka Music: Nasafiy Administrator: +998909205436 Instagram: https://www.instagram.com/nasafiy_music/
The Skinny Hawaiians teach you how to do the shaka sign from local, Hawaiian culture. Also known as Hang Loose. For more: http://skinnyhawaiians.com http://facebook.com/skinnyhawaiians http://twitter.com/skinnyhawaiians
"Shaka, A Story of Aloha" is a feature length documentary on the origin and meaning of the Shaka gesture. Set on O’ahu, Hawai’i, the film explores multiple versions of how the Shaka gesture came about, how it progressed to global use, the Shaka word origin and how it has been used to share the aloha spirit. An Untold, Unknown Story The largely untold story on the history and meaning of the Shaka gesture is only now becoming public now as today’s elders realize that the world sorely needs this epic story more than ever. A 2022 survey by Anthology Research revealed that 91% of Hawai’i residents don't know where the Shaka came from. Multiculturalism The story is also a multicultural melting pot that integrates Hawaiian, Mormon, Japanese/Okinawan plantation workers, entertainers, world lead...
The shaka. It's an important gesture. It's one little hand signal designed to share good vibes that says a lot about who you are and how you're approaching this funky little world we inhabit. As such, we asked the world's best surfers to put the issue to bed. Kelly Slater, Alana Blanchard, Stephanie Gilmore, Bruce Irons, Lyndie Irons, Ian Walsh, Coco Ho, Mason Ho, Carissa Moore, Kai Lenny, and quite a few others let us know how it's done at the Surfer Awards at Turtle Bay on the North Shore of Oahu. The Inertia: The Definitive Voice of Surf, Mountain, and Outdoors // http://www.theinertia.com Subscribe to our channel: http://bit.ly/TheInertiaYT Follow us! https://twitter.com/the_inertia https://www.facebook.com/TheInertia http://instagram.com/theinertia http://www.pinterest.com/theiner...
What How To Would You Like To See Next? Suggest In The Comments Below! Click Here To Randomly Learn More Stuff! --► https://www.youtube.com/playlist?list=PLwelJd6I8j9KKnGmuzudiRYjucAo37cXq Subscribe to see more! HiHowTo
What does the shaka mean to you? Full episodes https://www.youtube.com/@KeepitAlohaPod/videos Support us on: Patreon: https://www.patreon.com/kamakadias Follow us on: Instagram: https://www.instagram.com/keepitalohapod/ Facebook: https://www.facebook.com/keepitalohapod Twitter: https://twitter.com/Keepitalohapod TikTok: https://www.tiktok.com/@keepitalohapod Listen to us on: Apple Podcasts: https://podcasts.apple.com/us/podcast/keep-it-aloha/id1592266675 Spotify: https://open.spotify.com/show/3S4albn4TaWiwqcLVSnHNb?si=88d056857a5b41f2
During our horseback riding experience on the North Shore, our guide at Gunstock Ranch told us the story of the Shaka Sign. Also known as the Hang Loose sign, this hand gesture originated in Hawaii, but is used around the world to greet one another and express their feeling of aloha. It can mean many things: hello, goodbye, right on, yeah, cool, you belong, alright. When you show the shaka, your hand is in a fist with the pinky and thumb extended outward. As a sign of respect to others, the back of your hand always faces the recipient of the greeting, and you emphasize the greeting by subtly shaking the shaka hand a few times. The Shaka is It's attributed to a man on Oahu who worked on a sugar mill and had an accident. Check out this short vid on the story of the shaka sign. We love th...
Use this simple tip to help improve your posture and your hip hinge movement.
The Shaka sign has been an international symbol of friendship, gratitude, and the aloha spirit for decades. The story of its origination is both interesting and inspirational. #shorts #beach #beachlife #beachvibes #sandaid
Shaka kaSenzangakhona (circa 1787 – 22 September 1828), also known as Shaka Zulu (Zulu pronunciation: [ˈʃaːɠa]), was one of the most influential monarchs of the Zulu Kingdom.
He was born near present-day Melmoth, KwaZulu-Natal Province. According to tradition, Shaka was conceived during an act of what began as ukuhlobonga, a form of sexual foreplay without penetration allowed to unmarried couples, also known as "the fun of the roads" (ama hlay endlela), during which the lovers were "carried away".
Due to persecution as a result of his illegitimacy, Shaka spent his childhood in his mother's settlements. He is recorded as having been initiated there and inducted into an ibutho lempi (fighting unit). In his early days, Shaka served as a warrior under the sway of Dingiswayo, chieftain of the Mthethwa, to whom the Zulu were then paying tribute.
Dingiswayo called up the emDlatsheni iNtanga (age-group), of which Shaka was part, and incorporated it into the Izichwe regiment. Shaka served as a Mthethwa warrior for perhaps as long as ten years, and distinguished himself with his courage and his adept skill as a close combat warrior. This skill gained the attention of Dingiswayo, who became even more interested in Shaka when he discovered Shaka's royal bloodline. He honoured Shaka by making him commander of a regiment or ibutho.
Mr. Lover, Mr. Lover, Mr. Lover
Uh, uh, well
Sugar
Here's another one
And another day
Move to this, let me see you jump and twist
Pump your fist 'cause you know it's hard to resist
As long you know you're rollin' with the love
Specialist
Feel the pow, let me put the groove in your hips
The night is young, so let's go roll with the fun
You got some gun, check it out, gimme some
'Cause I'm about to play an old girl like a drum
She shackatack, poor soul settle down
Girl, what you gon' do with all that body
{Shake it up all night}
Careful with that thing before you hurt somebody
{Tell me what you like}
Do it, baby
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Gotta holla' to my fellas who be hangin' by the
Bathroom door
Waitin' for the honeys dance in the dance floor
Push up and get the niggas y'all ready for the score
Now who's the dog, you're the one that sung hardcore,
Come on
I gotta take this part to a new high
Keep it tight, ain't got no time no fight
You wanna be a player, better know to do it right
Kissin' all the honeys under the disco light
Girl, what you gon' do with all that body
{Shake it up all night}
Careful with that thing before you hurt somebody
{Tell me what you like}
Let 'em know
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance
Take you where there's all night action
Dancin' to the beat with a passion
Mr. Lover party's happenin'
Doin' anything you and I can
I'll take you where there's all night action
Dancin' to the beat with a passion
Mr. Lover party's happenin'
Doin' anything you and I can
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
So baby-baby, let me see you move your body pon the
Dancehall floor
Gotta one, just jigga, shake it up, gimme more
Jerk chicken on the grill, so make the champagne pour
Girl, don't be a drag, I might show you the door
{What?!}
I like to see bodies take and shake
Dressed in lace, uh, and a perfect shape
Girls local and out of state
I got a couple of them and I'm gettin' ready to mate
Cassandra, let's shake {Shout}
Shake your body down to the ground
Michelle, let's shake{Shout}
Shake your body down to the ground
I want Theresa to shake {Shout}
Shake your body down to the ground
Lisa to shake {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}
Shake your body down to the ground
Let's dance, let's shout {Shout}