- published: 13 Jan 2013
- views: 2349377
'+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; })); }); -->
24 is an American television series produced for the Fox network, created by Joel Surnow and Robert Cochran, and starring Kiefer Sutherland as Counter Terrorist Unit (CTU) agent Jack Bauer. Each season, comprising 24 episodes, covers 24 hours in Bauer's life, using the real time method of narration. Premiering on November 6, 2001, the show spanned 192 episodes over eight seasons; the series finale broadcast on May 24, 2010. In addition, a television film, 24: Redemption, was broadcast between seasons six and seven, on November 23, 2008. 24 returned as a 12-episode series titled 24: Live Another Day, which aired from May 5 to July 14, 2014.
The series begins with Bauer working for the Los Angeles–based Counter Terrorist Unit, in which he is a highly proficient agent with an "ends justify the means" approach, regardless of the perceived morality of some of his actions. Throughout the series most of the main plot elements unfold like a political thriller. A typical plot has Bauer racing against the clock as he attempts to thwart multiple terrorist plots, including presidential assassination attempts, weapons of mass destruction detonations, bioterrorism, cyber attacks, as well as conspiracies which deal with government and corporate corruption.
The Show is a radio program featured out of San Diego on KIOZ. The show has a cast of four: Eddie, Sky, Ashlee, and "Thor". "Boston Rob" left the show in March 2014, and long time intern Thor was added as a permanent member. Costa, as he is referred to on The Show, left the show in August 2012.
The Show first aired on January 4, 2010.
On June 13, 2011, The Show made some "tweeks" to their show format including adding music which greatly reduced the show's content. According to The Show, the change is made because they wanted to give the listeners what they want. As a result, listeners were outraged with the new format and took their frustrations through the phones, email, text and their Facebook fan page.
The Show is a 1927 silent American drama film directed by Tod Browning, based upon Charles Tenney Jackson's 1910 novel The Day of Souls.
Cock Robin (John Gilbert) is a sideshow barker in Budapest. He also participates in one of the acts; his former girlfriend Salome (Renée Adorée) dances before Herod in exchange for the head of "Jokanaan". As Jokanaan, Robin has his head seemingly chopped off and presented to the dancer on a platter, much to the delight of the audience.
Salome wants to get back together with Robin, but he has his sights set on Lena (Gertrude Short), the daughter of a well-off sheep merchant. He lets the smitten Lena buy him things. The Greek (Lionel Barrymore), Salome's current boyfriend, becomes angered when he learns of her feelings. The Greek and his henchman, the Ferret, also try to steal Lena's father's money, but fail.
That night, a heartbroken Lena tells Robin that her father has been killed. She trustingly shows him the substantial amount of money she had been holding for her father; when Robin ascertains that she has no brothers and that she has many more sheep, he becomes very interested. However, Salome eavesdrops, bursts in and warns Lena that Robin is only after her for her wealth. Lena flees, without her money. Robin is furious and can barely restrain himself from beating Salome.
Adam is a common masculine given name.
The personal name Adam derives from the Hebrew noun ha adamah meaning "the ground" or "earth". It is still a Hebrew given name, and its Quranic and Biblical usage has ensured that it is also a common name in all countries which draw on these traditions. It is particularly common in Christian- and Muslim-majority countries. In most languages its spelling is the same, although the pronunciation varies somewhat. Adán is the Spanish form of this name.
Adam is also a surname in many countries, although it is not as common in English as its derivative Adams (sometimes spelled Addams). In other languages there are similar surnames derived from Adam, such as Adamo, Adamov, Adamowicz, Adamski etc.
In Arabic, Adam (آدم) means "made from the earth/mud/clay".
Roger Adam was a French aircraft designer and manufacturer who produced light aircraft in kit from 1948 to 1955. He established the firm Etablissements Aeronautiques R. Adam.
Adam is a fictional character; from the Ravenloft campaign setting for the Dungeons & Dragons fantasy role-playing game.
Adam was a major character in the 1994 novel, Mordenheim, written by Chet Williamson.
Adam is the darklord of Lamordia. Known as Mordenheim's Monster or the Creature, he is an extremely intelligent and nimble dread flesh golem, based on Mary Shelley's Frankenstein. Adam is the most successful creation of Dr. Victor Mordenheim in his research into the creation of life, albeit the one that causes him grief unmeasured. Adam reduced the doctor's wife Elise to a vegetative state and apparently murdered their adopted daughter Eva.
The two are inextricably bound together: Dr. Mordenheim has Adam's immortality, and in return Adam shares the doctor's anguish.
Usually hidden from sight, Adam is believed to spend most of his time on the Isle of Agony, part of the archipelago known as the Finger.
12.00 A.M - 1.00 A.M Enjoy!
24 Series Trailer Experience all nine exhilarating seasons of the critically acclaimed, groundbreaking one-hour drama 24! Emmy winner Kiefer Sutherland stars as former Counter Terrorism Unit head Jack Bauer, who sidesteps authority and tries to stop terrorist attacks – his way. Featuring tension-filled storylines that unfold in real time, and a knockout supporting cast including Mary Lynn Rajskub, William Devane, Kim Raver, Dennis Haysbert, Carlos Bernard and Cherry Jones, 24 is one of the most electrifying series ever made! Created by Robert Cochran, Joel Surnow. 24 Complete Series - Seasons 1-9 Blu-ray 24 Redemption All 9 Seasons Available on Disney+ Trailer remastered and recut using HD Masters Original Official Trailer - 24 THE COMPLETE SERIES – LOOK FOR IT ON DVD - https://www....
FOOTAGE: 24 Season 1 - 8 (2001 - 2010) & 24: Live Another Day (2014) 20th Century Fox Television MUSIC: Really Slow Motion - 'Riding The Light' https://youtu.be/dUPfawME5JA Buy Really Slow Motion music: Amazon : http://amzn.to/1lTltY5 iTunes: http://bit.ly/1ee3l8K Spotify: http://bit.ly/1r3lPvN Bandcamp: http://bit.ly/1DqtZSo
Kiefer Sutherland talks about his farming aspirations and addresses fans of 24 asking if the show will ever come back before describing his show Rabbit Hole. The Tonight Show Starring Jimmy Fallon. Stream now on Peacock: https://bit.ly/3gZJaNy Subscribe NOW to The Tonight Show Starring Jimmy Fallon: https://pck.tv/3d7lcDy Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c Get more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show JIMMY FALLON ON SOCIAL Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Follow Jimmy: https://www.instagram.com/jimmyfallon/ THE TONIGHT SHOW ON SOCIAL Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Tonight Show: https://Facebook.com/FallonTonight F...
Best scene of the entire series of 24. Jack Bauer in the most badass body armor goes after Charles Logan (ex-President) and takes him in. He looks like some cross between Jason from Friday the 13th and Iron Man. Check the DVD's or watch it on Amazon Prime Video: Season 1 on Amazon USA: http://amzn.to/2iXo9Zq Season 2 on Amazon USA: http://amzn.to/2iSibZG Season 3 on Amazon USA: http://amzn.to/2i3GnZL Season 4 on Amazon USA: http://amzn.to/2iXjEOx Season 5 on Amazon USA: http://amzn.to/2jicVLE Season 6 on Amazon USA: http://amzn.to/2i3K81u Season 7 on Amazon USA: http://amzn.to/2iStoHB Season 8 on Amazon USA: http://amzn.to/2j6VQ8r
Chloe says goodbye to Jack in this final scene Buy the gear https://bit.ly/3d3v1yR
A decade and a half ago, "24" became an American television sensation. This year, it returns with an all-new cast. Today, I'm looking at the history and impact of this legendary franchise. Subscribe today to get the latest from TVJunkie! Follow me on Twitter: http://www.twitter.com/TVJunkie93 Now on Tumblr: https://www.tumblr.com/blog/tv-junkie Lets have a conversation in the comments! New videos every uhhhhday! Stay tuned for more, here on TVJunkie!
The clock ticks again! 24: LEGACY chronicles an adrenaline-fueled race against the clock to stop a devastating terrorist attack on United States soil. Subscribe now for more 24: Legacy clips: http://fox.tv/Subscribe24FOX Watch more videos from 24: Legacy: http://fox.tv/24LegacySeason1Playlist See more of 24: Legacy on our official site: http://fox.tv/24FOX Like 24: Legacy on Facebook: http://fox.tv/24_FB Follow 24: Legacy on Twitter: http://fox.tv/24_TW Like FOX on Facebook: http://fox.tv/FOXTV_FB Follow FOX on Twitter: http://fox.tv/FOXTV_Twitter The clock ticks again with 24: LEGACY, the next evolution of the Emmy Award-winning “24.” From Emmy Award-winning executive producer Howard Gordon (“Homeland,” “24: Live Another Day”), Academy Award- and Emmy Award-winning executive pr...
Kiefer Sutherland, star of ABC’s Designated Survivor, opened up about working on the series during The Jess Cagle Interview on the People/Entertainment Weekly Network. Subscribe to PeopleTV ►► http://bit.ly/SubscribePeopleTV Stay on top of all the latest celebrity gossip - Scandals, news, rumors and more: https://www.youtube.com/playlist?list=PLzS8B57pacxyPxBFbzjY5NqiJmUBvHgTE Celebrity love, romance and relationships - Never miss out on who’s dating who, recent break ups and new hook ups: https://www.youtube.com/playlist?list=PLzS8B57pacxzBdPhE7vu69ONKbJemr4_l Watch the newest celebrity interviews - From Jennifer Lopez to Jennifer Lawrence, Pop Stars to Movie Stars, Bachelors to Real Housewives, we’ve got it all: https://www.youtube.com/playlist?list=PLzS8B57pacxwyamvauL4pdzZkN_3j_daW...
Jack rescues the incredible Sherry Palmer, and then goes on a killing spree across the baseball stadium. Where he is soon rescued by the CTU tac team at the end of the clip. Fantastic scene. Jack Bauer at his best! Clip From - 24 S2 EP24 NO (C)OPYRIGHT INTENDED! CLIP OWNED BY FOX! Be Sure To Support Their Website Here: http://www.fox.com/ Subscribe For More Awesome 24 Clips: https://www.youtube.com/channel/UClsf... Follow Me On Twitter: https://twitter.com/JohnGormleyJG Check Out 24 Spoilers: http://www.24spoilers.com/
24 is an American television series produced for the Fox network, created by Joel Surnow and Robert Cochran, and starring Kiefer Sutherland as Counter Terrorist Unit (CTU) agent Jack Bauer. Each season, comprising 24 episodes, covers 24 hours in Bauer's life, using the real time method of narration. Premiering on November 6, 2001, the show spanned 192 episodes over eight seasons; the series finale broadcast on May 24, 2010. In addition, a television film, 24: Redemption, was broadcast between seasons six and seven, on November 23, 2008. 24 returned as a 12-episode series titled 24: Live Another Day, which aired from May 5 to July 14, 2014.
The series begins with Bauer working for the Los Angeles–based Counter Terrorist Unit, in which he is a highly proficient agent with an "ends justify the means" approach, regardless of the perceived morality of some of his actions. Throughout the series most of the main plot elements unfold like a political thriller. A typical plot has Bauer racing against the clock as he attempts to thwart multiple terrorist plots, including presidential assassination attempts, weapons of mass destruction detonations, bioterrorism, cyber attacks, as well as conspiracies which deal with government and corporate corruption.
Let me entertain you
Rang through my head
I was a reckless child
And I did what he said
People came
From miles around
To hear the sound
That was tearing up the town
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Baby you're an icon)
(Maybe you're a hard on)
Or maybe you're a dog
The next batter up
Was a man
A scary man
With the golden hands
He brought his axe
To bury the tracks
No mortal man
Could follow his act
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
You can't refrain
From going insane
It's what you want to do
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Maybe you're god
Now that rock & roll's in the palm of our hands
We take it to the people every chance that we can
We are the party that never ends
Live by these words until we meet again
You can't refrain
From going insane
It's what you want to do
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
Whoa! It's time for the show babe
N-n-n-n-no!
Whoa! Yeah yeah yeah yeah
Yeah yeah yeah yeah yeah
Time for the show