- published: 25 Jun 2020
- views: 2429616
'+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; })); }); -->
The Kings are a Canadian rock band formed in 1977 in Vancouver. They are best known for their 1980 North American hit "This Beat Goes On/Switchin' To Glide".
The Kings were formed in Vancouver, British Columbia, and Oakville, Ontario in the late 1970s. The original lineup included David Diamond, (David Broadbent, bass, lead vocals), Mister Zero (John Picard, guitar), Sonny Keyes (Nicholas Peter, keyboards, vocals), and Max Styles (drums), with Zero and Diamond serving as the main songwriters with contributions from Keyes. The Kings were originally known as WhistleKing and rehearsed, performed club gigs, and wrote a considerable number of songs for more than three years.
In early 1980, the band went into Nimbus 9 Studio in Toronto to record their first album. While recording, renowned producer Bob Ezrin visited the studio, listened to the band, and liked what he heard. Together they created the album The Kings Are Here featuring the North American hit "This Beat Goes On/Switchin' To Glide." Two other singles followed and the band began touring extensively with Bob Seger, Jeff Beck, The Beach Boys and Eric Clapton. During 1980, their rising commercial fortunes culminated in an appearance on Dick Clark's American Bandstand, and the closing spot at the major Heatwave festival in August.
The Magi (/ˈmædʒaɪ/ or /ˈmeɪdʒaɪ/; Greek: μάγοι, magoi), also referred to as the (Three) Wise Men or (Three) Kings, were, in the Gospel of Matthew and Christian tradition, a group of distinguished foreigners who visited Jesus after his birth, bearing gifts of gold, frankincense and myrrh. They are regular figures in traditional accounts of the nativity celebrations of Christmas and are an important part of Christian tradition.
According to Matthew, the only one of the four Canonical gospels to mention the Magi, they came "from the east" to worship the "king of the Jews". Although the account does not mention the number of Magi, the three gifts has led to the widespread assumption that there were three men. In Eastern Christianity, especially the Syriac churches, the Magi often number twelve. Their identification as kings in later Christian writings is probably linked to Psalms 72:11, "May all kings fall down before him".
Traditional nativity scenes depict three "kings" visiting the infant Jesus on the night of his birth, in a manger accompanied by the shepherds and angels, but this should be understood as an artistic convention allowing the two separate scenes of the Adoration of the Shepherds on the birth night and the later Adoration of the Magi to be combined for convenience. The single biblical account in Matthew simply presents an event at an unspecified point after Christ's birth in which an unnumbered party of unnamed "wise men" ("μάγοι") visits him in a house ("οἰκίαν"), not a stable, with only "his mother" mentioned as present. The New Revised Standard Version of Matthew 2:1–12 describes the visit of the Magi in this manner:
Hakeem Seriki (born November 28, 1979), better known by his stage name Chamillionaire, (/ˈkəmɪljənɛər/) is an American rapper and entrepreneur from Houston, Texas. He is the CEO of Chamillitary Entertainment. Chamillionaire was also the founder and an original member of The Color Changin' Click until the group split in 2005.
He began his career independently with local releases in 2002, including collaboration album Get Ya Mind Correct with fellow Houston rapper and childhood friend Paul Wall. He signed to Universal Records in 2005 and released The Sound of Revenge under Universal. It included hit singles "Turn It Up" featuring Lil' Flip and the number-one, Grammy-winning hit "Ridin'" featuring Krayzie Bone of Bone Thugs-n-Harmony. Ultimate Victory followed in 2007, which was notable for not containing any profanity. Chamillionaire is also known for his most anticipated Mixtape Messiah series, which came to a halt in 2009.
In early 2011, he left Universal Records, which led to his would-be third album, Venom, going unreleased. Chamillionaire released his first independent extended play Ammunition in March 2012 and was noted as his first major release since he left the label. Another EP, Elevate, was released on February 17, 2013. He said it is going to be one of several to be released before his third studio album, and shortly after his third EP Reignfall was released on July 23, 2013. He is working on his third studio album, Poison.
World of Dance upper team The Kings from India perform in the finals. I do not own the rights to this video or the music, I’m just sharing and promoting amazing dance talent. Please contact me if you prefer to have your video removed. Positive comments only please so the dancers can be encouraged and grow!
WOW SIX MILLION VIEWS! That's like...a lot! Thanks to everyone who has watched it even once! We love you! Please like us on Facebook https://www.facebook.com/The-Kings-Are-Here-129367440437699/ This is the amazing video made by The Kings for this timeless classic segue. There's lots of other great videos on our channel so check them out here: https://www.youtube.com/channel/UCaNjWtQvNPEsieBFbde-fnA?view_as=subscriber This channel is run by The Kings and we try and respond to every comment so keep 'em coming... And you can buy or stream this and 70 other songs on Spotify and all the digital platforms. And please call or email your local rock radio station and request The Kings! It really helps! About the video: it was made from over 40 sources and took over 140 hours to edit. E...
Published on 25 Feb 2019 Bolly-hop Upper Team The Kings, from Mumbai, India, bring the judges to their feet in the World of Dance Qualifiers. » Subscribe for More: http://bit.ly/NBCWorldofDance » Watch World of Dance Sundays 8/7c on NBC! » Stream Anytime: http://www.nbc.com/world-of-dance/epi... NBC WORLD OF DANCE ON SOCIAL: Like NBC World of Dance on Facebook: https://www.facebook.com/NBCWorldofDance Follow NBC World of Dance on Twitter: https://twitter.com/NBCWorldofDance Find NBC World of Dance on Tumblr: http://nbcworldofdance.tumblr.com/ Follow NBC World of Dance on Instagram: https://www.instagram.com/nbcworldofd... NBC World of Dance follows the world's elite dancers in an unparalleled dance competition for a grand prize of $1 million. Find NBC World of Dance trailers, full episode...
The King's scoring dance group and has a bigger chancwe to winning the competition world od dance 2019. #sanganer_king #jaipur_studio_thepawan
Sad Song is available on Spotify, iTunes Google Music and more: http://WeTheKingsMusic.com/sad-song Hear our new single Festival Music: https://youtu.be/MpggAEqndZY Watch the official music video: http://smarturl.it/sad-song-video Own it on iTunes: http://smarturl.it/get-sad-song Stream it on Spotify: http://smarturl.it/sad-song-spotify For a limited time only, on sale for $0.69 - http://smarturl.it/get-sad-song You and I We're like fireworks and symphonies exploding in the sky With you, I'm alive Like all the missing pieces of my heart They finally collide So stop time right here in the moonlight 'Cause I don't ever wanna close my eyes Without you, I feel broke Like I'm half of a whole Without you, I've got no hand to hold Without you, I feel torn Like a sail in a storm Without yo...
Published on 7 Apr 2019 Upper Team The Kings perform to "Malhari" in the World of Dance The Duels. » Subscribe for More: http://bit.ly/NBCWorldofDance » Watch World of Dance Sundays 8/7c on NBC! » Stream Anytime: http://www.nbc.com/world-of-dance/epi... NBC WORLD OF DANCE ON SOCIAL: Like NBC World of Dance on Facebook: https://www.facebook.com/NBCWorldofDance Follow NBC World of Dance on Twitter: https://twitter.com/NBCWorldofDance Find NBC World of Dance on Tumblr: http://nbcworldofdance.tumblr.com/ Follow NBC World of Dance on Instagram: https://www.instagram.com/nbcworldofd... NBC World of Dance follows the world's elite dancers in an unparalleled dance competition for a grand prize of $1 million. Find NBC World of Dance trailers, full episode highlights, previews, promos, clips, a...
********************************************************** * PLEASE SUBSCRIBE * ********************************************************** Crew Members : Akshay Varavdekar, Chandan Acharya, Ritesh Vishwakarma, Karthik Priyadarshan, Shijin Ramesh, Sunny Chatterjee, Mohan Pandey, Pratik Gojare, Prem Bhawar, Raja Das, Hardik Rawat, Hritik Gupta, Naidu Vishwakarma and Pavan Rao #thekings #crackingentertainment
********************************************************** * PLEASE SUBSCRIBE * ********************************************************** Crew Members : Akshay Varavdekar, Chandan Acharya, Ritesh Vishwakarma, Karthik Priyadarshan, Shijin Ramesh, Sunny Chatterjee, Mohan Pandey, Pratik Gojare, Prem Bhawar, Raja Das, Hardik Rawat, Hritik Gupta, Naidu Vishwakarma and Pavan Rao #thekings #crackingentertainment
#TheKings #Worldofdance #winners #rockers #thedancers #silentkillers #skkrish #stunners
Back in action with a whole new twist! 💥 Experience the thrill of choreography with fresh moves and fresh faces! Brace yourselves to witness the magic unfold and share your love in the comments below Thank you Redbull Dance your style for this unforgettable experience ✨ Choreography : Suresh Mukund Assitant choreogrpher - Ritesh vishwakarma Performers:- Nabeel Shaikh Sahil Alwe Tinku Bauri Abhishek Kokare Vedant Sharma Hardik Rawat Siddhi Jalan Aniket Sawant Neeraj Sharma Shravan Kamble Abhishek Waradkar Rajan Singh Music credits :- KK Kavita Krishnamurti Shreya Ghosal Ismail Darbar Subscribe to our channel for more videos:- https://www.youtube.com/channel/UCTtA... For more Updates follow us on :- https://www.facebook.com/kingsunitedo... ... https://twitter.com/kingsunitedcrew h...
The Gospel of Matthew tells us that "magi" from the East brought gifts to the infant Jesus following a mysterious star. Western Christianity commemorates this event with the feast of Epiphany, on January 6. What do we know about these wise men? Where did they come? Were they kings or Zoroastrian priests? Is there any evidence of a new star? We'll look at all these and other questions to reveal the meaning of this story from a mythological and theological view point. #lecture #cofchrist #zoroastrianism
They were the Three Wise Men bearing gifts, but who were the real Magi?
The story of the nativity is actually a blend of both the gospels of Luke and Matthew. They reveal the significance of the gifts carried by the three kings, as well as clues to their origins and symbolism. From: REAL JESUS OF NAZARETH: The Lost Years http://bit.ly/2o7mClF
The Gospel of Matthew gives us one of our two birth narratives of Jesus. In 12 verses in his version of the story Matthew gives us the account of the Magi coming to give gifts to the baby. But what are Magi? What do we know about who these people were? What does Matthew think Magi are? And how is he trying to use them in his account of the birth of Jesus? Join us today as we look at some of these questions! Follow us on Facebook and Twitter @BeneathTheBible so you don’t miss any future videos! If you are interested in learning more about this topic we suggest you start here: M. David Litwa, How the Gospels Became History: Jesus and Mediterranean Myths. New Haven: Yale University Press, 2019. Peter Barthel and George van Kooten editors, The Star of Bethlehem and the Magi: Interdiscipli...
Tradition, folklore, and song lyrics have contributed to many different stories about the magi (or wise men) associated with the birth of Jesus. This teaching explains the biblical record of the Magi who travelled to see him “who has been born king of the Jews,” Jesus. Verses: Dan. 5:11; Mic. 5:2; Matt. 2:1-4, 8-9, 11 Teacher: John Schoenheit For further study see: Who were the Magi, or Wise Men? at http://www.TruthOrTradition.com/magi Mary, the Mother of Jesus: Defining True Greatness at http://www.TruthOrTradition.com/mary Mary, a Teenage Bride and Mother at http://www.TruthOrTradition.com/age Retelling the Christmas Story: Where was Jesus born? Was it in a stable, cave, or a home? at http://www.TruthOrTradition.com/retelling Was Jesus born on December 25th or early Septem...
The Kings are a Canadian rock band formed in 1977 in Vancouver. They are best known for their 1980 North American hit "This Beat Goes On/Switchin' To Glide".
The Kings were formed in Vancouver, British Columbia, and Oakville, Ontario in the late 1970s. The original lineup included David Diamond, (David Broadbent, bass, lead vocals), Mister Zero (John Picard, guitar), Sonny Keyes (Nicholas Peter, keyboards, vocals), and Max Styles (drums), with Zero and Diamond serving as the main songwriters with contributions from Keyes. The Kings were originally known as WhistleKing and rehearsed, performed club gigs, and wrote a considerable number of songs for more than three years.
In early 1980, the band went into Nimbus 9 Studio in Toronto to record their first album. While recording, renowned producer Bob Ezrin visited the studio, listened to the band, and liked what he heard. Together they created the album The Kings Are Here featuring the North American hit "This Beat Goes On/Switchin' To Glide." Two other singles followed and the band began touring extensively with Bob Seger, Jeff Beck, The Beach Boys and Eric Clapton. During 1980, their rising commercial fortunes culminated in an appearance on Dick Clark's American Bandstand, and the closing spot at the major Heatwave festival in August.