- published: 18 Dec 2020
- views: 444365
'+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; })); }); -->
Josef Suk wrote the music for Julius Zeyer's mythological drama Radúz and Mahulena in 1897-8. It was first performed on 6 June 1898, under the baton of Adolf Čech.
In 1899-1900, Suk extracted a four-movement Suite to this Pohádka (or Fairy Tale). Zeyer greatly impressed Suk. The style and orchestration is much affected by Richard Strauss (who was ten years Suk's elder), although Suk's writing is somewhat simpler. There are harmonic sideslips and turns of phrase that could almost have come out of Strauss's A Hero's Life (1898), yet Suk's manner is essentially simpler (and has at its centre the same lyricism which also makes his earlier Serenade such a delightful piece). Dvořák thought this Suite "music from heaven". The Suite was revised in 1912, and remains one of Suk's most successful works.
The four movements are:
Fairy Tale (Chinese: 童話; pinyin: Tóng Huà) is the third solo album by Malaysian singer Michael Wong, released on 21 January 2005.
Wong's previous two albums, Michael's First Album and Ray of Light, stirred up a fan base but did not make much ground in terms of record sales. His fans had to wait another two years before Wong finally launched his third album, Fairy Tale. After rejecting the first few songs he listed himself for the album with his sense of perfection, Wong eventually re-selected some songs himself and finally rooted for his ten favourite songs to be cut into the album, of which six were composed by himself. His two years of work paid off when this album immediately attained success, and became critically acclaimed as Wong's best-selling album.
The first single from this album, also called Fairy Tale, was composed by himself. Wong, who is more of a composer and hardly wrote lyrics, asked about 30 lyricists for suggestions for this particular song. After finally adding a finishing touch to the song with lyrics he wrote himself, he then left it to be arranged and produced by the experienced Japanese producer, Taichi Nakamura. Fairy Tale is considered by many fans as Wong's strongest single. It became number one at the Baidu 500 immediately after it was released in January 2005, making it to the top of the download counter for 15 weeks. The single is arguably the most successful Chinese language song in the 21st Century. As of 2007 it is still among the top in the karaoke charts. Wong became the first Malaysian to win four main awards in the Chinese music scene's biggest award show, the Hong Kong TVB8 Golden Music Awards on 3 December 2005. He won Best Composition, Best Composer/Artist, Top Ten Songs of the Year, and Best of the Year's Top 10 Songs.
An aura is a perceptual disturbance experienced by some with migraines or seizures before either the headache or seizure begins. It often manifests as the perception of a strange light, an unpleasant smell, or confusing thoughts or experiences. Some people experience aura without a subsequent migraine or seizure (see silent migraine). Auras vary by individual experience; some people experience smells, lights, or hallucinations. Less known symptoms of the eye include disturbances, where the eyes roll in the back of the head caused by photosensitivity. A sufferer of this type of aura may experience tearfulness of the eyes and uncontrollable sensations of light followed by reduced symptoms after approximately 20 minutes; it is the rarest type of aura.
When occurring, auras allow epileptic people time to prevent injury to themselves and/or others. The time between the appearance of the aura and the migraine lasts from a few seconds up to an hour. The aura can stay with a migraine sufferer for the duration of the migraine; depending on the type of aura, it can leave the person disoriented and confused. It is not uncommon for migraine sufferers to experience more than one type of aura during the migraine. Most people who have auras have the same type of aura every time.
Aura is the ninth studio album by British rock band Asia, recorded in 2000 at Loco Studios, South Wales and first released in 2001.
The lyrics for "Awake" were adapted from "The Rubaiyat" of Omar Khayyám. Although in the liner notes the lyrics are credited to Geoff Downes and John Payne, it is believed that they have been written mainly or solely by Payne. "Ready to Go Home" was originally recorded by Andrew Gold and Graham Gouldman of 10cc and appeared on the 1995 album Mirror Mirror. The lyrics for "The Longest Night" were inspired by Wilfred Owen's poem of 1918.
Aura was issued by Recognition Records in two versions: regular jewel-case edition (CDREC501) and special Digi-Pack edition (CDRECX501). The latter included three extra tracks. Released in 2007 by Acadia, label of Evangeline Records, version of the album contains bonus CD featuring Steve Howe acoustic guitar solo, recorded live at Chestnut Cabaret in Philadelphia, Pennsylvania on 21 November 1992 during US Aqua tour.
The Aura are a Muslim Jat tribe, found mainly in Gujar Khan Tehsil of Rawalpindi District. Chak 21 S.B. is large settlement of the Aura in Sargodha District. These Aura are immigrants from Gujar Khan Tehsil who were settled in the Sargodha region in the 19th Century. Other villages include Balakhar in Rawalpindi District and Abdullahpur in Jhelum District.
Paid Requests are open! https://forms.gle/6aMjrW19tHL6axc5A •. ✶ .· *✩. ✵ ˚ : · α ℓєттєя нαѕ ƒαℓℓєη ƒяσм тнє ѕтαяѕ ·͟͟͟͟͟͟͞͞͞͞͞͞➳ [✉] * ˚ ˚ ·. · | · • ❝〔O P E N 〕❞ • · - “I know you, I’ve walked with you once upon a dream” - | · • ₍🕊₎ ..⃗. 🌸DREAM FAIRYCORE 夢中仙域🌸¹⁵ᵗʰ ᴰᵉᶜᵉᵐᵇᵉʳ ²⁰²⁰ Hello, my lovely fairy dreamers! Looks like you’ve stumbled upon a fairy’s dream realm. Today’s special product is Honey Rose Wine made in the fairy realm (not containing alcohol!) It has a magical power that can make the drinker as beautiful as blades forged in some divine fire, as irresistible as an everlasting dream, and as surreal as a moonlit lake coated with glittery stardust. You would be the embodiment of a dreamland fairy - precious, ethereal, magical. Leaving an enchanting impres...
Thumbelina - The Tiny Fairy 👸 Bedtime stories 🌛 Fairy Tales For Teenagers | WOA Fairy Tales People can see more stories on WOA Fairy Tales - English: - Fairy Tales in English: 👉 https://go.woanetwork.com/WoaEnglishFairyTales - Magical: https://go.woanetwork.com/FairytalesMagical - Princess Stories: https://go.woanetwork.com/FairyTalesPrincessStories - Bedtime Stories: https://go.woanetwork.com/FairyTalesBedTimeStories - Prince Stories: https://go.woanetwork.com/FairyTalesPrinceStories - WOA Adult Cartoon Compilation: https://go.woanetwork.com/PlaylistAdultCartoon Help us to 1.000.000 subscribe: https://go.woanetwork.com/WoaEnglishFairyTales #WoaFairyTalesEnglish #WoaFairyTales #EnglishFairyTales Fairy Tales channel provides interesting fairy tale stories for your children that are...
♡ 🍰⠀ִֶָ⠀も⠀▬▭⠀キ 🧚🏼♀ ⊹ 𓍯 🏹 ·̩͙ ₊ ⠀⠀ ☁️ .♥︎ 🌷 ୨୧ ✧ 🌱 ‧₊˚ト 🐧𓈒 🍄♡+*.𝐀𝐂𝐓 𝟎𝟏 ━ 🧸 WELCOME᠂ ₊ ༉ ଘ(੭ˊ꒳ˋ)੭✧ oi, pessoal! tudo bem com vocês? lembrete: você é um criador poderoso! o mundo reflete aquilo que você é. entre no estado de um mestre da manifestação, da pessoa que tem tudo o que quer, entre no estado da riqueza e tenha consciência de que tudo o que você quer JÁ É SEU, sinta-se completo, tranquilo e relaxe, relaxe porque seu desejo é inevitável. você é predestinado. a inteligência infinita não te daria um desejo impossível de se realizar. você é um com todos, você faz parte de um todo, se uma pessoa conseguiu e tem o que você quer, por que você não teria também? você não é diferente de ninguém, somos todos frutos de uma inteligência infinita. o que você vê no reino div...
Join Dora and Boots on a magical adventure to Fairytale Land! Help Dora return the magic back to Fairytale Land from the evil witch by finding clues, hidden objects, and magical sing alongs. Watch this full episode "Dora Saves Fairytale Land" from Dora the Explorer! #DoraTheExplorer #FullEpisode #PreschoolTV #ForKids Subscribe to the NEW Bubble Guppies YouTube channel for weekly videos with Molly, Gil, and all your favorite Guppies! And remember to turn on notifications to never miss them! You can find more Bubble Guppies weekday mornings on Nickelodeon and everywhere you find Nick Jr.! **ADVERTISEMENT** Subscribe to the OFFICIAL Bubble Guppies YouTube Channel: https://at.nick.com/DoraSubscribe Watch more videos on the OFFICIAL Bubble Guppies YouTube Channel: https://at.nick.com/Do...
Alrighties, this quest cant be completed solo , it's designed for 5 people team, because each person has their own role to play. First stage is simple pick up boxes , and gather different kinds of snacks, after that give it to tanukis, that are asking to be fed (they have dialogue windows above them), each tanuki requires his own food , so u need variety. Part 2 the sprites , in here each party member must collect 2 steaks each from the boxes in the hall, you need Hero steaks , burnt ones wont do. Afterwards each person feeds one sprite 2 times, to make chest appear, and then just kill the chest. Part 3, is simple, each person gets random role, but your goal is to destroy the house, some get to burn it too (¬‿¬ ) Part 4 you each get a role from the chest, they are randomly placed, so u...
Provided to YouTube by PARALLEL KINGDOM Aura · yucat PARALLEL WORLD Ⅵ-Fairy Story 七つノ御伽話- ℗ 2023 PARALLEL KINGDOM Released on: 2023-01-25 Lyricist: yucat Composer: yucat Auto-generated by YouTube.
Explore the enchanting realm of the "Fairies of the Glass Kingdom," where magic of light and color comes to life. This video takes you on a journey through a fantastical world adorned with beautiful glass objects, set against the backdrop of fairy daily life and adventures. The fairies coexist with glass-made domes, flowers, and animals, enhancing their delicate beauty with the translucent elegance of their surroundings. Step into this luminous world and experience a day with the fairies, filled with sparkle and wonder. #fairytales #Magic #Fantasy #Fairyland #AuraBloom #FantasyLandscape #FantasyWorld #Enchanted #MagicalRealm #MysticScenes #FairyTaleScenery
benefits: - fairytale-like life - ethereal aura - dreamy beauty - clear skin - become photogenic - great eyesight - & more! listen with headphones at 30-50% volume for better results notes: - please do not use subliminals to replace medical care - I cannot guarantee this will work, subliminals are different for everyone - anyone can use this regardless of religion, gender, sex, etc ----------------- desired life subliminal dream life subliminal dream beauty subliminal ethereal beauty subliminal dream aura subliminal fairytale life subliminal
Dive into the magical world of Aura, the nature goddess, as she discovers and revives a lifeless sea nymph in the heart of the forest. Witness the collaboration of divine forces, including Zephyrus, Venus, Mars, Apollo, and Selene, in this captivating tale of beauty, power, and harmony with nature. 🌿 Don't miss the breathtaking visuals depicting each pivotal moment in this fairy tale. 🌊 Experience the enchanting transformation of the sea nymph into a symbol of forest beauty. 🌬️ Feel the winds of Zephyrus swirling around, guided by the touch of the nature goddess Aura. 💖 See Venus and Mars bestowing their divine gifts upon the sea nymph, enhancing her with beauty and strength. ☀️ Witness Apollo's sunlight illuminating the sky, supporting the magical revival. 🌙 Catch the mystic glow of Sele...
Josef Suk wrote the music for Julius Zeyer's mythological drama Radúz and Mahulena in 1897-8. It was first performed on 6 June 1898, under the baton of Adolf Čech.
In 1899-1900, Suk extracted a four-movement Suite to this Pohádka (or Fairy Tale). Zeyer greatly impressed Suk. The style and orchestration is much affected by Richard Strauss (who was ten years Suk's elder), although Suk's writing is somewhat simpler. There are harmonic sideslips and turns of phrase that could almost have come out of Strauss's A Hero's Life (1898), yet Suk's manner is essentially simpler (and has at its centre the same lyricism which also makes his earlier Serenade such a delightful piece). Dvořák thought this Suite "music from heaven". The Suite was revised in 1912, and remains one of Suk's most successful works.
The four movements are:
Hey, I’m kinda jealous, I’m kinda mad
I’m kinda poutin’, I’m kinda sad
Girl, where’d you get him, he’s such a find
You hit the jackpot, one of a kind
Refrain:
Do he got a brother or maybe just another one like him?
Do he got a homie,
You can introduce me to?
Just like him
Chorus:
I’m kind jealous that your boyfriend seems like a fairytale like a
fairytale
He’s hella perfect, hella cute, hella fun like a fairytale, like a
fairytale
Did he come to your rescue? Did he win the fight?
Did he slay the dragon? Did you ride off in the night?
Sorry, I can’t stop staring, I’m still in shock
How did you find him? He’s smokin’ hot
Must have paid cupid, more than a lot
To go searchin’ all around the clock for him
[Refrain]
[Chorus]
Bridge:
But I don’t mean to be jealous, I don’t mean to be mad
In fact I’m rather happy, in fact I’m rather glad that I know
That cupid is on the road and he’s gonna find mine
[Chorus]
Did he come to your rescue?
Did he win the fight?
Did he slay the dragon?