- published: 12 Sep 2012
- views: 430705
'+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; })); }); -->
Sahara is the second studio album by the American hard rock band House of Lords, released on August 21, 1990.
The album was recorded without original guitarist Lanny Cordola, but with Michael Guy as the band's guitarist. Still, the album features many guest contributors on guitar, such as Doug Aldrich (Whitesnake, Hurricane), Rick Nielsen (Cheap Trick), Chris Impellitteri (Impellitteri) and Mandy Meyer (Asia, Krokus). Other contributors on the albums are White Lion's Mike Tramp, Cheap Trick's Robin Zander, Steeler's Ron Keel, Autograph's Steve Plunkett and Giuffria's David Glen Eisley, all on backing vocals.
The album reached position No. 121 in The Billboard 200 chart on February 23, 1991.
The House of Lords is the upper house of the Parliament of the United Kingdom. Like the House of Commons, it meets in the Palace of Westminster.
Unlike the elected House of Commons, most members of the House of Lords are appointed. The membership of the House of Lords is made up of Lords Spiritual and Lords Temporal. The Lords Spiritual are 26 bishops in the established Church of England. Of the Lords Temporal, the majority are life peers who are appointed by the monarch on the advice of the Prime Minister, or on the advice of the House of Lords Appointments Commission. However, they also include some hereditary peers including four dukes. Membership was once an entitlement of all hereditary peers, other than those in the peerage of Ireland, but under the House of Lords Act 1999, the right to membership was restricted to 92 hereditary peers. Very few of these are female since most hereditary peerages can only be inherited by men.
While the House of Commons has a defined 650-seat membership, the number of members in the House of Lords is not fixed. There are currently 816 sitting Lords. The House of Lords is the only upper house of any bicameral parliament to be larger than its respective lower house.
House of Lords is the fourth album by Lords of the Underground, their first album in eight years. The album was released on August 21, 2007 for Affluent Records and was produced by Marley Marl, K-Def and DJ Lord Jazz. Like the group's previous album Resurrection the album received very little promotion and was a commercial failure, and it did not make it to the Billboard charts nor did it produce any hit singles.
House of Lords is the eponymous debut album by House of Lords, a Giuffria spin-off band, featuring keyboardist Gregg Giuffria. It was released in 1988 on Kiss bassist Gene Simmons' own label and distributed by RCA Records. The album reached position No. 78 in The Billboard 200 Chart on February 25, 1989.
Rick Nielsen of Cheap Trick (with whom the band would later tour) co-wrote the song "Slip of the Tongue". Jeff Scott Soto of Talisman can be found on backing vocals throughout the whole album. Many other popular hard rock musicians has contributed to the songwriting of the songs on the album, including Stan Bush, David Glen Eisley of Giuffria, Johnny Warman and Mandy Meyer of Asia.
Sahara with Michael Palin is a four-part BBC television series presented by British comedian and travel presenter Michael Palin, and first broadcast in 2002. In it, Palin travelled around the Sahara in Northern - and Western Africa, meeting people and visiting places. The journey route included the following countries and territories: Gibraltar, Morocco, Western Sahara, Mauritania, Senegal, Mali, Niger, Libya, Tunisia and Algeria.
These countries and the entire Sahara area are vast. For example, Algeria is four times the size of France or three times the size of Texas. The Sahara is roughly the same size as the United States, and the trip covered 10,000 miles (16,000 kilometres) and lasted three months.
A book by the same name written by Palin was published to accompany the series. This book contained both Palin's text and many pictures by Basil Pao, the stills photographer on the team. Basil Pao also produced a separate book of the photographs he took during the journey, Inside Sahara, a large coffee-table style book printed on glossy paper.
Sahara is a Bollywood film. It was released in 1943. The film is directed by Jagatrai Pesumal Advani for Vaswani Art productions. It had music composed by Gobind Ram. The film starred Renuka Devi, Narang, Pran, Meena Shorey and Sharda
Sahara is a 1983 British-American adventure drama film directed by Andrew McLaglen and starring Brooke Shields, Lambert Wilson, Horst Buchholz, John Rhys-Davies, and John Mills. The original music score was composed by Ennio Morricone.
The film's tagline is "She challenged the desert, its men, their passions and ignited a bold adventure."
The setting is in the year 1927. After her father dies, a young American heiress, Dale disguises herself as a man and takes the place of her father in an international car race through the Sahara. Dale is taken prisoner by Rasoul, but is rescued by Jaffar. However, more trouble awaits her before she can finish the race. Dale falls in love with Jaffar and marries him. Rasoul ends up dying in the end. She wins the race, becoming the first woman to win this international car race.
A guide to the House of Lords explaining who the Lords are and what they do. This teaching resource aims to help students understand the House of Lords and its history. Download supporting lesson resources here: http://www.parliament.uk/education/teaching-resources-lesson-plans/house-of-lords-what/ Subscribe to UK Parliament for more videos https://www.youtube.com/subscription_center?add_user=UKParliament Follow @UKParlEducation on Twitter for more resources and information. https://twitter.com/UKParlEducation
Baroness Jenkin of Kennington, Lord Inglewood, Lord Haskel, Lord Faulks and Baroness Parminter take you on a tour around the House of Lords. For supporting teaching resources and downloads go to: http://www.parliament.uk/education/teaching-resources-lesson-plans/house-of-lords-what/ For information on visiting Parliament, go to www.parliament.uk/visiting Subscribe to UK Parliament for more videos https://www.youtube.com/subscription_center?add_user=UKParliament Follow @UKParlEducation on Twitter for more resources and information. https://twitter.com/UKParlEducation
Sign up to Brilliant for a free 30 day trial and you'll also get 20% off an annual premium subscription: https://brilliant.org/tldr/ In the lead up to the general election, Labour Party committed to reforming the House of Lords. And, it seems that things are underway, with Starmer planning to get rid of the final 92 hereditary peers. In this video, we're going to explain why the hereditary peers are still in the Lords, how Starmer plans to get rid of them, and some of the arguments for and against the plan. 🎞 TikTok: https://www.tiktok.com/@tldrnews 💡 Got a Topic Suggestion? - https://forms.gle/mahEFmsW1yGTNEYXA Support TLDR on Patreon: http://www.patreon.com/tldrnews Donate by PayPal: https://tldrnews.co.uk/funding Our mission is to explain news and politics in an impartial, efficient...
From the upcoming new album "Full Tilt Overdrive". Pre-order here: https://ffm.to/holfulltiltoverdrive Subscribe To Frontiers Music Srl YouTube Channel: http://radi.al/SubscribeFrontiers "Bad Karma" Lyrics: I DON'T KNOW WHAT'S GOIN ON (FLY) BUT YOUR SMACK TALK TAKIN'S GOING TO DRAG YOU DOWN (FLY AWAY... OH OH OH ) SO LET IT FALL FADE INTO DUST YOUR VICTORIES SO GLORIOUS YOU PAY THE PRICE FOR ALL YOUR SINS BUT IF YOU HAD THE CHANCE YOU'D DO IT AGAIN WHAT DO YOU KNOW ABOUT THE DEMONS THAT LIVE INSIDE OPEN YOUR EYES, SEE WHERE YOU'RE GOING SH SH SH SHAKE IT UP BAD KARMA YOU'RE WISHIN THAT YOU KNEW BETTER SHAKE IT UP BAD KARMA: GET READY KARMA'S COMING FOR YOU SHAKE IT UP I MEANT EVERY WORD FOR HEAVEN SAKE (FLY) CAUSE I THOUGHT YOU WERE DIFFERENT THAT WAS MY MISTAKE (FLY AWAY... OH ...
Watch live from the House of Commons in Westminster where Prime Minister Sir Keir Starmer is making a statement on the anniversary of the October 7 attacks. #MiddleEast #Gaza #Israel #War SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews Follow us on Twitter: https://twitter.com/skynews Like us on Facebook: https://www.facebook.com/skynews Follow us on Instagram: https://www.instagram.com/skynews Follow us on TikTok: https://www.tiktok.com/@skynews For more content go to http://news.sky.com and download our apps: Apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 Android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_GB Sky News Daily podcast is available for free here: https://podfollow.com/skynewsdaily/...
Support TLDR on Patreon: http://www.patreon.com/tldrnews The House of Lords has been discussed a lot in recent days with them annoying the Tories and Labour talking about scrapping the House. So in this video we explain what the House of Lords actually does and who the Lords are. In the coming days we will talk about if the HoL has a place in modern Britain and if it could really be scrapped. Follow TLDR on Facebook: http://www.facebook.com/tldrnewsuk Follow TLDR on Twitter: https://twitter.com/tldrnewsuk Follow TLDR on Instagram: http://www.instagram.com/tldrnewsuk Join the TLDR Discord: https://discord.gg/BMrk6MC TLDR Pin Badge Store: https://www.tldrnews.co.uk/store TLDR TeeSpring Store: https://teespring.com/stores/tldr-winter Learn About Our Funding: https://tldrnews.co.uk/funding...
In the ancient House of Lords, you can inherit a seat from your family. (Subscribe: https://bit.ly/C4_News_Subscribe) As the UK debates Brexit, many politicians want to break from the EU in order to restore British democracy. But how democratic are we really? We investigate the House of Lords, where hundreds of people have power over UK laws - without ever being elected by the public. ------- Watch more of our explainer series here - https://www.youtube.com/playlist?list... Get more news at our site - https://www.channel4.com/news/ Follow us: Facebook - https://www.facebook.com/Channel4News Twitter - https://twitter.com/Channel4News
Stream "Crowded Room": https://ffm.to/holcrowdedroom "Crowded Room" Lyrics: (Verse) TOO MANY VOICES IN MY HEAD I KNOW THEM ALL BY NAME EASY FOR MYSELF I, I NEED A SAVIOR SOMEONE TO COME AND RESCUE ME RELEASE THE CURSE AND SET ME FREE (Pre Chorus) IN MY HEAD, DONT WANNA LEAVE IN CONTROL, AND I KNOW IT THEY HANG ON LIKE, ITS THEIR LIFE AND FEAST IN THE GARDEN TILL THE HUNGER DIES (Chorus) DONT KILL WHATS LEFT OF ME TELL THE ALTERS TOO AND I DONT WANNA SEE YOU ANYMORE THERE'S NO SPACE IN THIS CROWDED ROOM (Verse) WAKIN ME IN THE DEAD OF NIGHT BEGGIN ME TO HURT MYSELF WHEN THERES NO ONE ELSE IN THE ROOM I, I FEEL THE DANGER WHEN IM ALONE YOU ENTER IN MY HOME I WISH YOU DEAD AND GONE (Pre Chorus) ALL MY FEARS, COME ALIVE I LOSE FAITH, AND THEY KNOW IT THEY WHISPER MY NAME AND FEAST IN THE...
Do you know how the House of Lords works? Meet Baroness Gohir, charity CEO and a leading voice for women's rights, as she explains the role and work of the Lords in our new film. ➡️ Learn more about the Lords https://www.parliament.uk/business/lords/ Catch-up on House of Lords business: Watch live events: https://parliamentlive.tv/Lords Read the latest news: https://www.parliament.uk/lords/ Stay up to date with the House of Lords on social media: • Twitter: https://twitter.com/UKHouseofLords • Instagram: https://www.instagram.com/UKHouseofLords/ • Facebook: https://www.facebook.com/UKHouseofLords • Flickr: https://flickr.com/photos/ukhouseoflords/albums • LinkedIn: https://www.linkedin.com/company/the-house-of-lords • Threads: https://www.threads.net/@UKHouseOfLords #HouseOfLor...
Leader of the House of Commons Jacob Rees-Mogg was accused of being contemptuous for reclining across the seats in the chamber. Please subscribe HERE http://bit.ly/1rbfUog
Sahara is the second studio album by the American hard rock band House of Lords, released on August 21, 1990.
The album was recorded without original guitarist Lanny Cordola, but with Michael Guy as the band's guitarist. Still, the album features many guest contributors on guitar, such as Doug Aldrich (Whitesnake, Hurricane), Rick Nielsen (Cheap Trick), Chris Impellitteri (Impellitteri) and Mandy Meyer (Asia, Krokus). Other contributors on the albums are White Lion's Mike Tramp, Cheap Trick's Robin Zander, Steeler's Ron Keel, Autograph's Steve Plunkett and Giuffria's David Glen Eisley, all on backing vocals.
The album reached position No. 121 in The Billboard 200 chart on February 23, 1991.