- published: 30 Apr 2021
- views: 1371571
'+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; })); }); -->
"Jump Down" is a song by Irish girl group B*Witched, released as their seventh single. It was released on 20 March 2000 as the third and final single from their second studio album Awake and Breathe (1999). It became their lowest chart peak in the UK Top 40, reaching number 16.
"Jump Down" was chosen as the album's third single. It was remixed and given a more edgier and dancier vibe for its release. The girls changed their looks to go along with it, sporting a new 'sexier' image that saw them posing in FHM magazine as well as adapting raunchier dance moves. The song has been criticised because of its nonsensical lyrics, seemingly based around the nursery rhyme "Hey Diddle Diddle".
The music video for "Jump Down" features the girls in a long black tunnel with lots of lights performing an energetic dance routine. This was their first video to feature dancers and was directed by Tim Royes.
"Jump Down" became the group's lowest charting single, peaking at number 16 on the UK Singles Chart. It spent seven weeks on the chart, only two of which were in the top 40. It sold roughly 44,000 copies in the UK and was B*Witched's last single for thirteen years, until they released a cover of "I Wish It Could Be Christmas Everyday" in December 2013 along with the other bands from The Big Reunion.
Kobe (神戸市, Kōbe-shi, Japanese pronunciation: [koːꜜbe]) is the sixth-largest city in Japan and is the capital city of Hyōgo Prefecture. It is located on the southern side of the main island of Honshū, on the north shore of Osaka Bay and about 30 km (19 mi) west of Osaka. With a population around 1.5 million, the city is part of the Keihanshin metropolitan area along with Osaka and Kyoto.
The earliest written records regarding the region come from the Nihon Shoki, which describes the founding of the Ikuta Shrine by Empress Jingū in AD 201. For most of its history, the area was never a single political entity, even during the Tokugawa Period, when the port was controlled directly by the Tokugawa Shogunate. Kobe did not exist in its current form until its founding in 1889. Its name comes from "kanbe" (神戸), an archaic title for supporters of the city's Ikuta Shrine. Kobe became one of Japan's 17 designated cities in 1956.
Kobe was one of the cities to open for trade with the West following the 1853 end of the policy of seclusion and has since been known as a cosmopolitan port city. While the 1995 Great Hanshin earthquake diminished much of Kobe's prominence as a port city, it remains Japan's fourth busiest container port. Companies headquartered in Kobe include ASICS, Kawasaki Heavy Industries, and Kobe Steel, as well as over 100 international corporations with Asian or Japanese headquarters in the city such as Eli Lilly and Company, Procter & Gamble, Boehringer Ingelheim, and Nestlé. The city is the point of origin and namesake of Kobe beef, as well as the site of one of Japan's most famous hot spring resorts, Arima Onsen.
Kobe or KOBE may refer to:
Language education is the teaching and learning of a foreign or second language. Language education is a branch of applied linguistics.
Increasing globalization has created a large need for people in the workforce who can communicate in multiple languages. The uses of common languages are in areas such as trade, tourism, international relations, technology, media, and science. Many countries such as Korea (Kim Yeong-seo, 2009), Japan (Kubota, 1998) and China (Kirkpatrick & Zhichang, 2002) frame education policies to teach at least one foreign language at the primary and secondary school levels. However, some countries such as India, Singapore, Malaysia, Pakistan, and the Philippines use a second official language in their governments. According to GAO (2010), China has recently been putting enormous importance on foreign language learning, especially the English language.
Although the need to learn foreign languages is older than human history itself, the origins of modern language education are in the study and teaching of Latin in the 17th century. Latin had for many centuries been the dominant language of education, commerce, religion, and government in much of the Western world, but it was displaced by French, Italian, and English by the end of the 16th century. John Amos Comenius was one of many people who tried to reverse this trend. He composed a complete course for learning Latin, covering the entire school curriculum, culminating in his Opera Didactica Omnia, 1657.
Kobe Bryant created his own shots as well as any player in NBA history. On this episode of Signature Shots, ESPN analyst Kirk Goldsberry traces the Mamba's evolution from a rim-attacking rookie to the master of unassisted two-point jumpers. #NBA #Sports 0:00 Kobe's Signature Shot: The unassisted jumper 0:33 The evolution of Kobe's jumper 1:59 Kobe in the clutch 2:35 The 2005-06 season 5:03 Kobe's vast array of moves 7:46 The unassisted midrange master More Signature Shots: ▪️Zion Williamson: https://youtu.be/vp6rZeTCplU ▪️Kevin Durant: https://youtu.be/9S3n3yb7o1Y ▪️Steph Curry: https://youtu.be/MdVtrPPmnOw ▪️Duncan Robinson: https://youtu.be/0tOjr9OJxQI ▪️Damian Lillard: https://youtu.be/TlXjWLBVHTc ▪️LeBron James: https://youtu.be/x78KIrkzgew ▪️Michael Jordan: https://youtu.be/uj1H...
Rachel Nichols, Dave McMenamin and Kendrick Perkins play "Make or Miss," discussing Los Angeles Lakers big man JaVale McGee hitting a 3, Maxi Kleber missing a layup and then getting trolled by Dallas Mavericks teammate Luka Doncic, Memphis Grizlies guard Ja Morant showing off his handles, Kristaps Porzingis getting rejected by Oklahoma City Thunder big man Nerlens Noel, and Zach Norvell Jr. breaking ankles of Jordan Poole in a preseason game. They then (3:04) count down the most disrespectful plays in NBA preseason history, with Marcus Morris bonking Justin Anderson's head, Jeremy Evans blocking Ronny Turiaf then dunking on him, Gerald Wallace dunking on Bostjan Nachbar, and Kobe Bryant crossing over and then dunking on Ben Wallace. #TheJump #NBA #Sports ✔ Subscribe to ESPN+ https://plus....
Rachel Nichols, Kevin Arnovitz and Paul Pierce count down the top five games of the 2010s in The Jump's "best-of-the-decade" special: (0:05) Miami Heat vs. Boston Celtics in the 2012 Eastern Conference finals, in which LeBron James had 45 points and 15 rebounds (0:56) Golden State Warriors vs. Oklahoma City Thunder in the 2016 Western Conference finals, in which Klay Thompson dropped 41 points and basically ensured Kevin Durant would leave OKC for the Bay Area (1:56) Kobe Bryant's farewell game in 2016, where he scored 60 points in Utah Jazz vs. Los Angeles Lakers (2:43) Game 6 of the 2013 NBA Finals, in which Ray Allen (and Chris Bosh) saved the Miami Heat vs. the San Antonio Spurs (3:35) Game 7 of the 2016 NBA Finals, featuring the LeBron James chasedown block on Andre Iguodala, Kyrie ...
Vince Carter, Monica McNutt and Zach Lowe join Rachel Nichols on The Jump to play "Something, Nothing or Everything." 0:00 Breaking down the New York Knicks' 6-game win streak. 3:45 Reacting to Kobe Bryant's estate ending partnership with Nike. 6:22 The crew reacts to a "Distant Replay" featuring Kobe. ✔️Subscribe to ESPN+ http://espnplus.com/youtube ✔️ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔️Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔️ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔️ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV
Rachel Nichols, Kendrick Perkins and Scottie Pippen reveal the most notable nominees for the Naismith Memorial Basketball Hall of Fame Class of 2020, which includes former Phoenix Suns and Dallas Mavericks wing Shawn Marion, former Toronto Raptors and Miami Heat big man Chris Bosh, former Minnesota Timberwovles and Boston Celtics big man Kevin Garnett, former San Antonio Spurs big man Tim Duncan, and former Los Angeles Lakers wing Kobe Bryant. They then reveal the notable first-time women's nominees, including former Detroit Shock star Swin Cash, and former Indiana Fever WNBA Finals MVP Tamika Catchings. #TheJump #NBA #Sports ✔ Subscribe to ESPN+ https://plus.espn.com/ ✔ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔ ...
Merry christmas everyone! Enjoy the best moments of Kobe on Christmas day since 1999. Unfortunately I couldn’t get the coverage of the 2000 game between the Lakers and the Blazers. Therefore Kobe’s highlights of 2000 are missing… Still, enjoy the video. ⚫Leave a like on Facebook - https://www.facebook.com/ikobesilvan24 ⚫Follow me on instagram - https://www.instagram.com/ikobesilvan24
❗ Join this channel to get access to perks: https://www.youtube.com/channel/UCEjOSbbaOfgnfRODEEMYlCw/join ✅ Sub And Like For More Content 🏪 FreeDawkins Merch Store - https://freedawkins-merch-store.creator-spring.com/ 📌 Follow on Twitter - https://twitter.com/DawkinsMTA 📌 IG - https://www.instagram.com/dawkinsofficial/ ✅ Subscribe To My SQUADawkins NBA Videos Channel - https://www.youtube.com/c/squadawkins Chapters: 0:00 - Kobe Bryant 2000 NBA Finals vs Pacers 34:34 - Kobe Bryant 2001 NBA Finals vs 76ers 56:26 - Kobe Bryant 2002 NBA Finals vs Nets 1:11:23 - Kobe Bryant 2009 NBA Finals vs Magic 1:47:16 - Kobe Bryant 2010 NBA Finals vs Celtics ___________________________________________ DISCLAIMER - All clips property of the NBA. No copyright infringement is intended, all videos are edi...
Kobe 47 pts 8 reb 4 blk vs Lillard 38 pts 9 ast Full Game Highlights | Los Angeles Lakers vs Portland Trail Blazers | April 10, 2013 | 2012-13 NBA Season | HOH Throwback in HD ✔️ Subscribe, Like & Comment for More! ✔️ --------- 🔎 Follow our Instagram: https://goo.gl/Syw81B 🔎 Follow our Twitter: https://goo.gl/5aata7
Get ready to witness basketball brilliance like never before! We'll take you on a journey through the clouds with the top 20 alley-oop dunks in NBA history. From gravity-defying athleticism to rim-rocking finishes, this compilation showcases the artistry, precision, and sheer excitement of the most legendary alley-oops ever executed on the hardwood. Join us in celebrating the high-flying, jaw-dropping moments that have defined the essence of basketball greatness. It's a slam dunk extravaganza you won't want to miss! Featuring: 1. DeAndre Jordan Baptizes Brandon Knight from Chris Paul Oop (2013) 2. Vince Carter Amazing Alley-Oop Slam from Dee Brown (2000) 3. Blake Griffin Windmill Dunk from Jamal Crawford between-the-leg lob (2013) 4. Tony Allen off the backboard lob to Gerald Green...
Amin Elhassan, Ramona Shelburne, Zach Lowe and Chiney Ogwumike react to Kobe Bryant showing up to Atlanta Hawks vs. Los Angeles Lakers, and what his presence -- and his dapping up LeBron James -- means for all parties involved. They then (2:54) discuss whether Anthony Davis is keeping his promise to be a Defensive Player of the Year candidate in the 2019-20 NBA season. #NBA #Sports #TheJump ✔ Subscribe to ESPN+ https://plus.espn.com/ ✔ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔ Subscribe to ESPN FC on YouTube: http://bit.ly/SUBSCRIBEtoESPNFC ✔ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV Exclusive interviews with Rachel Nichols https://...
"Jump Down" is a song by Irish girl group B*Witched, released as their seventh single. It was released on 20 March 2000 as the third and final single from their second studio album Awake and Breathe (1999). It became their lowest chart peak in the UK Top 40, reaching number 16.
"Jump Down" was chosen as the album's third single. It was remixed and given a more edgier and dancier vibe for its release. The girls changed their looks to go along with it, sporting a new 'sexier' image that saw them posing in FHM magazine as well as adapting raunchier dance moves. The song has been criticised because of its nonsensical lyrics, seemingly based around the nursery rhyme "Hey Diddle Diddle".
The music video for "Jump Down" features the girls in a long black tunnel with lots of lights performing an energetic dance routine. This was their first video to feature dancers and was directed by Tim Royes.
"Jump Down" became the group's lowest charting single, peaking at number 16 on the UK Singles Chart. It spent seven weeks on the chart, only two of which were in the top 40. It sold roughly 44,000 copies in the UK and was B*Witched's last single for thirteen years, until they released a cover of "I Wish It Could Be Christmas Everyday" in December 2013 along with the other bands from The Big Reunion.
[Mikey Rocks]
its the humpdy dump truck big wheel wall crumbler,
if money did talk yours probably be a mumbler,
the bumble bee color kush burning in the bubbler, puff,
brother rocks dougie but its uglier on that other stuff, im saying no, weighing only about 175,
i sound like a heavier guy, but we high, so high-five,
behinds and nice thighs, and the sun beamin', flicking on the old blue beamers hoodie,
and woody allen couldn't see it with his glasses on,
at homecoming getting drunker then the chaparron,
and dont you hate when you go into a place and somebody need a I.D.
cause they left it at home, you feel bad if you go ahead and leave'em, so you
try to swap it out and hope the door man believe'em,
yo he payed cash, send a check to him directly or money orders, every dollar
four quarters
[chorus]
while i drive, break, shift.
??????
and they all jump down
[Chuck Inglish]
and i just touched down, with [?] sized clouds, louder than that pound,
like your neighbors at your door (growl), dog take yo job off the floor,
meet your neighbor chuck daly, hes the liveliest coach, bless his soul, its amazing though to save his [?] but
to see he saved that color, mike rock got the range, had it flickin last summer,
size 900, with the turbo runnin on it, gold bbs's in the zone as a nexus supposed to be flexed on your niggas last summer, chill, we ain't have to move a muscle, had a court case
pending and we hit the ground runnin', get'cha rap together you ain't talkin bout nothing,
[juice lips?] sink ships, and you aint
talkin bout none of us, and its 45 back on my number 9, '94 cant touch these like its hammer time