'+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; })); }); -->

Of Darkness...

Of Darkness... is a debut studio album released on February 1991 by the Swedish band Therion and it contains songs written in the early years of the band, during the 1980s. The album is indicated by the band itself as an end of its first era.

The album was re-released on 27 November 2000 under Nuclear Blast label as a part of The Early Chapters of Revelation box-set. It contains remastered songs, as well as four bonus tracks.

Recording and production

After releasing the third demo record Time Shall Tell EP in 1990, Therion got attention from the British label Deaf Records, a subsidiary of Peaceville Records, and signed the band's first contract.Of Darkness... was recorded in Swedish studio Sunlight in Stockholm from August to September 1990 and released on February 1991. The initial line-up has not been changed since its last production. The album was produced by Tomas Skogsberg and the band itself.

Songs, lyrical themes and influences

Of Darkness... consists of songs Christofer Johnsson had written in the years of 1987–1989. Despite having newer songs, the band opted to save them for their next full release. The album can be seen as a progressive death metal album in that it contained mainly influences that were not standard to death metal at the time. The album was influenced especially by the Celtic Frost's thrash metal album Into the Pandemonium. Its sound was compared to Dismember (melody), Suffocation and Morpheus (rhythm), Entombed, Napalm Death, Repulsion, Bolt Thrower (guitars), Carcass and other extreme thrash metal and grindcore bands of those days.

Love of the Common People

"Love of the Common People" is a folk ballad written and composed by John Hurley and his writing partner, Ronnie Wilkins, eventually released in 1970 on John Hurley's album John Hurley Sings about People, but first sung in January 1967 by The Four Preps. It had been covered by The Everly Brothers, country singers Waylon Jennings and Lynn Anderson, Pennsylvania Sixpence and also Wayne Newton, all in 1967, The Simple Image, Leonard Nimoy and the Gosdin Brothers in 1968, Elton John and also soul group The Winstons, both in 1969, John Denver on his 1969 album Rhymes & Reasons, and Sandy Posey in 1970, the same year that reggae singer Nicky Thomas had a big hit in Europe with the song. It was also a hit in Ireland for showband star Joe Dolan. Wanda Jackson covered the song in 1971, as did Stiff Little Fingers and English pop singer Paul Young, both in 1982. In 2007 Bruce Springsteen covered it as part of his Seeger Sessions tour, releasing a live version of it as a bonus track on his Live in Dublin album.

Love of the Common People (album)

Love of the Common People is a 1967 album by Waylon Jennings on RCA Victor, and a track on the album of the same name.

Background

In his autobiography, Jennings proclaimed his fondness for the title track: "It had it all, the horn stabs that I loved so much, an insistent piano figure that lodged in your brain, and four (count 'em) key modulations upward, so the song never stopped getting you higher. The lyrics were especially meaningful, for a poor country boy who had worked his way up from 'a dream you could cling to' to a spot in the working world of country music." In his 2013 book Outlaws: Waylon, Willie, Kris, and the Renegades of Nashville, author Michael Striessguth insists, "After two years of emulating Jim Reeves and Marty Robbins, not to mention the likes of Buck Owens and George Jones, Waylon finally showed signs of asserting his own style on 1967's album Love of the Common People, which boldly featured Mel Tillis' 'Ruby Don't Take Your Love to Town,' a rare commentary on the personal toll of war, and Lennon and McCartney's 'You've Got to Hide Your Love Away.'" Jennings had also recorded The Beatles' "Norwegian Wood (This Bird Has Flown)" on his previous LP Nashville Rebel.

Prince of Darkness

Prince of Darkness is a term used in John Milton's poem Paradise Lost referring to Satan as the embodiment of evil. It is an English translation of the Latin phrase princeps tenebrarum.

Prince of Darkness may also refer to:

People

A nickname for:

  • Gordon Willis, cinematographer famous for his work on The Godfather films
  • Lord Mandelson, former British Cabinet Minister and First Secretary of State
  • Marilyn Manson, alternative musician
  • General Sir Mike Jackson, Chief of British General Staff, commander of KFOR in the liberation of Kosovo
  • Miles Davis, jazz musician
  • Nick Cave, Australian musician
  • Ozzy Osbourne, British rock singer and television personality
  • Richard Perle, American assistant Secretary of Defense during the Reagan administration
  • Robert Novak, American journalist and conservative commentator
  • Tim Parker, British businessman
  • The Undertaker, professional wrestler
  • Warren Kinsella, Canadian political consultant and former PMO staffer to Prime Minister Jean Chretien
  • Brian Dames, CEO of South African power and utilities company Eskom
  • Prince of Darkness (Ozzy Osbourne album)

    Prince of Darkness is a box set of four CDs by Ozzy Osbourne released in 2005. The first two CDs are Osbourne's solo work containing various studio recordings, live tracks, b-sides, demos and outtakes, and the last two CDs are collaborations on disc three and cover songs on disc four. The cover versions were recorded for this box set compilation, but were released on a stand-alone album entitled Under Cover later in the year.

    Track listing

    Charts

    Album - Billboard (America)

    Sales accomplishments

    References

    Prince of Darkness (film)

    Prince of Darkness is a 1987 American supernatural horror film directed, written and scored by John Carpenter. The film is the second installment in what Carpenter calls his "Apocalypse Trilogy", which began with The Thing (1982) and concludes with In the Mouth of Madness (1995).

    Plot

    A priest invites Professor Howard Birack and his students to join him in the basement of an abandoned Los Angeles church. He requires their assistance in investigating a mysterious cylinder containing a swirling green liquid. Among those present is Brian Marsh, a student in theoretical physics.

    They decipher the text found next to the cylinder which describes the liquid as the corporeal embodiment of Satan. The liquid appears sentient, and broadcasts increasingly complex streams of data. The academics use a computer to analyze the data, and find that it includes differential equations. Over a period of two days, small jets of liquid escape from the cylinder. Members of the group exposed to the liquid become possessed by the entity, which uses them against the others. Attempts to escape from the building are thwarted by a mass of possessed street people who surround it and barricade the doors from the outside. Two members of the research group are killed.

    Podcasts:

    • Paul Young - Love of the Common People (Official Video)

      Listen on Spotify: http://smarturl.it/EssPaul_Spotify?IQid=PYoungLOTCP Listen on Apple Music: http://smarturl.it/Ess_PaulAppleMusic?IQid=PYoungLOTCP Buy on iTunes: http://smarturl.it/EssPaul_iTunes?IQid=PYoungLOTCP Buy on Amazon: http://smarturl.it/EssPaul_Amazon?IQid=PYoungLOTCP Stream more music from Paul Young here: http://smarturl.it/PaulYoung_PI?IQid=PYoungLOTCP ------------------------------------------------- Follow Paul Young Subscribe to Paul Young: http://smarturl.it/PaulYoungSub Website: http://paul-young.com/ Facebook: https://www.facebook.com/PaulYoungOfficial/ Twitter: https://twitter.com/PaulYoungParlez Spotify: https://open.spotify.com/artist/6rqU9HQ57NYGBnBzbrY3a4?si=42mJjdrYQDSkUHtwF8EDXQ More from Paul Young Everytime You Go Away: https://youtu.be/nfk6sCzRTbM...

      published: 25 Oct 2009
    • Love of the Common People

      Provided to YouTube by Columbia Love of the Common People · Paul Young From Time To Time - The Singles Collection ℗ 1983 Sony Music Entertainment UK Limited Released on: 1991-09-07 Composer, Lyricist: John Hurley Composer, Lyricist: Ronnie Wilkins Auto-generated by YouTube.

      published: 08 Apr 2017
    • Paul Young - Love Of The Common People (Lyrics)

      If you have any requests please let me know in the comment section below.

      published: 25 Oct 2016
    • Paul Young - Love of the Common People (The Tube 1983)

      Listen on Spotify: http://smarturl.it/EssPaul_Spotify Listen on Apple Music: http://smarturl.it/Ess_PaulAppleMusic Buy on iTunes: http://smarturl.it/EssPaul_iTunes Buy on Amazon: http://smarturl.it/EssPaul_Amazon Stream more music from Paul Young here: http://smarturl.it/PaulYoung_PI ------------------------------------------------- Follow Paul Young Subscribe to Paul Young: http://smarturl.it/PaulYoungSub Website: http://paul-young.com/ Facebook: https://www.facebook.com/PaulYoungOfficial/ Twitter: https://twitter.com/PaulYoungParlez Spotify: https://open.spotify.com/artist/6rqU9HQ57NYGBnBzbrY3a4?si=42mJjdrYQDSkUHtwF8EDXQ Lyrics Living on free food tickets Water in the milk From a hole in the roof Where the rain came through What can you do, hmmm? Tears from your little sister...

      published: 07 Oct 2016
    • Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)

      Bruce Springsteen performing "Love Of The Common People" Live in Dublin Listen to your favorite Bruce Springsteen tracks: https://bspringsteen.lnk.to/toptracksYD Live In Dublin features songs from Bruce Springsteen and The Sessions Band’s performances at The Point on November, 2006. Includes fan favorites from The Seeger Sessions and reinterpretations from the Springsteen songbook – all captured in stunning high definition. Subscribe to the Bruce Springsteen YouTube Channel: https://Springsteen.lnk.to/ytYD Follow Bruce Springsteen: Facebook: https://Springsteen.lnk.to/fbYD Twitter: https://Springsteen.lnk.to/twtYD Instagram: https://Springsteen.lnk.to/igYD Website: https://Springsteen.lnk.to/siteYD YouTube: https://Springsteen.lnk.to/ytYD Lyrics: One! Two! Livin' on free food, ticket...

      published: 13 Mar 2019
    • Love Of The Common People By Eric Donaldson

      Love of your own people

      published: 20 Apr 2012
    • Paul Young - Love Of The Common People (Official Music Video) HD

      published: 28 May 2014
    • Love Of The Common People

      Provided to YouTube by Buddha Records Love Of The Common People · Waylon Jennings Love Of The Common People ℗ Originally released 1967. All rights reserved by Sony Music Entertainment Released on: 1967-08-01 Composer, Lyricist: John Hurley Electric Guitar: Fred Carter Electric Guitar: Jerry Reed Guitar: Velma Smith Bass: Roy Huskey, Jr. Bass: Bobby Dyson Drums: Murray M. "Buddy" Harman Jr. Piano: Hargus "Pig" Robbins Vibraphone: Ray Stevens Harmonica, Trumpet: Charlie McCoy Background Vocal: Dorothy Dillard Background Vocal: Priscilla Hubbard Background Vocal: Louis Nunley Background Vocal: William Guilford Wright, Jr. Producer: Chet Atkins Composer, Lyricist: Ronnie Wilkins Auto-generated by YouTube.

      published: 18 Feb 2017
    • Far from the Madding Crowd 🌾❤️| Book 1/2📚

      Dive into the enchanting world of Thomas Hardy's classic, 'Far from the Madding Crowd'! 📖✨ This timeless tale of love, ambition, and rural life follows the spirited Bathsheba Everdene as she navigates the challenges of affection and loyalty amid the picturesque landscapes of Wessex. 🌳💔 **In this captivating story, you'll discover:** - The trials of Bathsheba as she balances independence and romance - The intriguing relationships with Gabriel Oak, the steadfast shepherd; Frank Troy, the dashing soldier; and Mr. Boldwood, the obsessive suitor - Themes of societal expectations and personal desires that resonate through the ages Join us on this journey through heartwarming moments and heartbreaking decisions that define the human experience. **Don't forget to like, share, and subs...

      published: 23 Sep 2024
    • PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022

      PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022

      published: 17 Jul 2022
    developed with YouTube
    Paul Young - Love of the Common People (Official Video)
    3:32

    Paul Young - Love of the Common People (Official Video)

    • Order:
    • Duration: 3:32
    • Uploaded Date: 25 Oct 2009
    • views: 16347267
    Listen on Spotify: http://smarturl.it/EssPaul_Spotify?IQid=PYoungLOTCP Listen on Apple Music: http://smarturl.it/Ess_PaulAppleMusic?IQid=PYoungLOTCP Buy on iTunes: http://smarturl.it/EssPaul_iTunes?IQid=PYoungLOTCP Buy on Amazon: http://smarturl.it/EssPaul_Amazon?IQid=PYoungLOTCP Stream more music from Paul Young here: http://smarturl.it/PaulYoung_PI?IQid=PYoungLOTCP ------------------------------------------------- Follow Paul Young Subscribe to Paul Young: http://smarturl.it/PaulYoungSub Website: http://paul-young.com/ Facebook: https://www.facebook.com/PaulYoungOfficial/ Twitter: https://twitter.com/PaulYoungParlez Spotify: https://open.spotify.com/artist/6rqU9HQ57NYGBnBzbrY3a4?si=42mJjdrYQDSkUHtwF8EDXQ More from Paul Young Everytime You Go Away: https://youtu.be/nfk6sCzRTbM Come Back and Stay: https://youtu.be/aeeJhEpeUfc Oh Girl: https://youtu.be/16Z73aXuZQw Everytime You Go Away: https://youtu.be/nfk6sCzRTbM Come Back and Stay: https://youtu.be/aeeJhEpeUfc Oh Girl: https://youtu.be/16Z73aXuZQw More great 80's videos here: http://smarturl.it/Ultimate80??IQid=PYoungLOTCP Lyrics Living on free food tickets Water in the milk From a hole in the roof Where the rain came through What can you do, hmmm? Tears from your little sister Crying because she doesn't have A dress without a patch For the party to go But you know she'll get by 'Cause she's living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can It's a good thing You don't have bus fare It would fall through the hole In your pocket and you'd lose it In the snow on the ground You got to walk into town To find a job Tryin' to keep your hands warm When the hole in your shoe Let the snow come through And chill you to the bone Somehow you'd better go home Where it's warm Where you can live in The love of the common people Smile from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you And she can Living on a dream ain't easy But the closer the knit The tighter the fit And the chills stay away 'Cause we take 'em in stride For family pride You know that faith Is your foundation With a whole lot of love And a warm conversation But don't forget to pray It's makin' it strong Where you belong And we're living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can Yes, we're living in The love of the common people Smile's from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smile's really hard On a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can
    https://wn.com/Paul_Young_Love_Of_The_Common_People_(Official_Video)
    Love of the Common People
    3:41

    Love of the Common People

    • Order:
    • Duration: 3:41
    • Uploaded Date: 08 Apr 2017
    • views: 531336
    Provided to YouTube by Columbia Love of the Common People · Paul Young From Time To Time - The Singles Collection ℗ 1983 Sony Music Entertainment UK Limited Released on: 1991-09-07 Composer, Lyricist: John Hurley Composer, Lyricist: Ronnie Wilkins Auto-generated by YouTube.
    https://wn.com/Love_Of_The_Common_People
    Paul Young - Love Of The Common People (Lyrics)
    3:13

    Paul Young - Love Of The Common People (Lyrics)

    • Order:
    • Duration: 3:13
    • Uploaded Date: 25 Oct 2016
    • views: 233854
    If you have any requests please let me know in the comment section below.
    https://wn.com/Paul_Young_Love_Of_The_Common_People_(Lyrics)
    Paul Young - Love of the Common People (The Tube 1983)
    4:04

    Paul Young - Love of the Common People (The Tube 1983)

    • Order:
    • Duration: 4:04
    • Uploaded Date: 07 Oct 2016
    • views: 265499
    Listen on Spotify: http://smarturl.it/EssPaul_Spotify Listen on Apple Music: http://smarturl.it/Ess_PaulAppleMusic Buy on iTunes: http://smarturl.it/EssPaul_iTunes Buy on Amazon: http://smarturl.it/EssPaul_Amazon Stream more music from Paul Young here: http://smarturl.it/PaulYoung_PI ------------------------------------------------- Follow Paul Young Subscribe to Paul Young: http://smarturl.it/PaulYoungSub Website: http://paul-young.com/ Facebook: https://www.facebook.com/PaulYoungOfficial/ Twitter: https://twitter.com/PaulYoungParlez Spotify: https://open.spotify.com/artist/6rqU9HQ57NYGBnBzbrY3a4?si=42mJjdrYQDSkUHtwF8EDXQ Lyrics Living on free food tickets Water in the milk From a hole in the roof Where the rain came through What can you do, hmmm? Tears from your little sister Crying because she doesn't have A dress without a patch For the party to go But you know she'll get by 'Cause she's living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can It's a good thing You don't have bus fare It would fall through the hole In your pocket and you'd lose it In the snow on the ground You got to walk into town To find a job Tryin' to keep your hands warm When the hole in your shoe Let the snow come through And chill you to the bone Somehow you'd better go home Where it's warm Where you can live in The love of the common people Smile from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you And she can Living on a dream ain't easy But the closer the knit The tighter the fit And the chills stay away 'Cause we take 'em in stride For family pride You know that faith Is your foundation With a whole lot of love And a warm conversation But don't forget to pray It's makin' it strong Where you belong And we're living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can Yes, we're living in The love of the common people Smile's from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smile's really hard On a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can
    https://wn.com/Paul_Young_Love_Of_The_Common_People_(The_Tube_1983)
    Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)
    4:29

    Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)

    • Order:
    • Duration: 4:29
    • Uploaded Date: 13 Mar 2019
    • views: 273462
    Bruce Springsteen performing "Love Of The Common People" Live in Dublin Listen to your favorite Bruce Springsteen tracks: https://bspringsteen.lnk.to/toptracksYD Live In Dublin features songs from Bruce Springsteen and The Sessions Band’s performances at The Point on November, 2006. Includes fan favorites from The Seeger Sessions and reinterpretations from the Springsteen songbook – all captured in stunning high definition. Subscribe to the Bruce Springsteen YouTube Channel: https://Springsteen.lnk.to/ytYD Follow Bruce Springsteen: Facebook: https://Springsteen.lnk.to/fbYD Twitter: https://Springsteen.lnk.to/twtYD Instagram: https://Springsteen.lnk.to/igYD Website: https://Springsteen.lnk.to/siteYD YouTube: https://Springsteen.lnk.to/ytYD Lyrics: One! Two! Livin' on free food, tickets Water in the milk from the hole in the roof Where the rain came through What can you do? hmm hmm Tears from your little sister Cryin' 'cause she don't have a dress without a patch For the party to go But she'll know she'll get by, 'cause she's Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can, as she can It's a good thing you don't have a bus fare It would fall through the hole in your pocket And you'd lose it in the snow on the ground Gonna be walking to town to find a job Trying to keep your hands warm When the hole in your shoe let the snow come through And chills you to the bone And you better go home where it's warm Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can, as she can Hoo-hoo, hoo-hoo, hoo-hoo [Horn section solos] Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can, as she can Livin' on a dream ain't easy The closer the knit the tighter the fit The chills stay away You take 'em in stride the family pride You know that faith is your foundation With a whole lotta love and a warm conversation But don't forget to pray Making you strong where you belong Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can Livin' in the love of the common people Smiles from the heart of the family man Daddy's gonna buy you a dream to cling to Mama's gonna love you just as much as she can, as she can Yeah-yeah yeah-yeah yeah-yeah Woah-woah woah-woah woah-woah Yeah-yeah-hey, yeah-yeah-hey! Hoo-hoo, hoo-hoo, hoo-hoo, hoo-hoo Hoo-hoo, hoo-hoo, hoo-hoo, hoo-hoo #BruceSpringsteen #Rock #Live
    https://wn.com/Bruce_Springsteen_With_The_Sessions_Band_Love_Of_The_Common_People_(Live_In_Dublin)
    Love Of The Common People By Eric Donaldson
    2:55

    Love Of The Common People By Eric Donaldson

    • Order:
    • Duration: 2:55
    • Uploaded Date: 20 Apr 2012
    • views: 216103
    Love of your own people
    https://wn.com/Love_Of_The_Common_People_By_Eric_Donaldson
    Paul Young - Love Of The Common People (Official Music Video) HD
    3:07

    Paul Young - Love Of The Common People (Official Music Video) HD

    • Order:
    • Duration: 3:07
    • Uploaded Date: 28 May 2014
    • views: 202137
    https://wn.com/Paul_Young_Love_Of_The_Common_People_(Official_Music_Video)_Hd
    Love Of The Common People
    2:54

    Love Of The Common People

    • Order:
    • Duration: 2:54
    • Uploaded Date: 18 Feb 2017
    • views: 248783
    Provided to YouTube by Buddha Records Love Of The Common People · Waylon Jennings Love Of The Common People ℗ Originally released 1967. All rights reserved by Sony Music Entertainment Released on: 1967-08-01 Composer, Lyricist: John Hurley Electric Guitar: Fred Carter Electric Guitar: Jerry Reed Guitar: Velma Smith Bass: Roy Huskey, Jr. Bass: Bobby Dyson Drums: Murray M. "Buddy" Harman Jr. Piano: Hargus "Pig" Robbins Vibraphone: Ray Stevens Harmonica, Trumpet: Charlie McCoy Background Vocal: Dorothy Dillard Background Vocal: Priscilla Hubbard Background Vocal: Louis Nunley Background Vocal: William Guilford Wright, Jr. Producer: Chet Atkins Composer, Lyricist: Ronnie Wilkins Auto-generated by YouTube.
    https://wn.com/Love_Of_The_Common_People
    Far from the Madding Crowd 🌾❤️| Book 1/2📚
    6:53:19

    Far from the Madding Crowd 🌾❤️| Book 1/2📚

    • Order:
    • Duration: 6:53:19
    • Uploaded Date: 23 Sep 2024
    • views: 342
    Dive into the enchanting world of Thomas Hardy's classic, 'Far from the Madding Crowd'! 📖✨ This timeless tale of love, ambition, and rural life follows the spirited Bathsheba Everdene as she navigates the challenges of affection and loyalty amid the picturesque landscapes of Wessex. 🌳💔 **In this captivating story, you'll discover:** - The trials of Bathsheba as she balances independence and romance - The intriguing relationships with Gabriel Oak, the steadfast shepherd; Frank Troy, the dashing soldier; and Mr. Boldwood, the obsessive suitor - Themes of societal expectations and personal desires that resonate through the ages Join us on this journey through heartwarming moments and heartbreaking decisions that define the human experience. **Don't forget to like, share, and subscribe for more literary adventures!** 👉 [Subscribe Here](https://bit.ly/3JQDMwP) **📚 Key Themes:** - Love and Relationships - Rural Life and Community - Feminism and Independence Immerse yourself in this unforgettable story where every chapter brings new lessons and reflections on love and loss. Experience the beauty and tragedy of life as Hardy masterfully depicts the struggles and triumphs of his characters against the backdrop of a changing world. **Hashtags:** #FarFromTheMaddingCrowd #ThomasHardy #ClassicLiterature #LoveStory #Wessex #RuralLife #Feminism #19thCentury #LiteraryAnalysis #BookRecommendation #Audiobook #ReadingCommunity #BookTube #StoryTime #BookLovers #HistoricalFiction #LiteratureLovers #ClassicNovels #BookNerd #RomanticTales #Nature #Love #HumanExperience #ClassicRomance #EmotionalJourney **Navigate by Chapters or Titles:** 00:00:34 Chapter 1 - Description of Farmer Oak—An Incident. 00:13:01 Chapter 2 - Night—The Flock—An Interior—Another Interior. 00:31:03 Chapter 3 - A Girl on Horseback—Conversation. 00:48:11 Chapter 4 - Gabriel’s Resolve—The Visit—The Mistake. 01:07:44 Chapter 5 - Departure of Bathsheba—A Pastoral Tragedy. 01:18:44 Chapter 6 - The Fair—The Journey—The Fire. 01:40:07 Chapter 7 - Recognition—A Timid Girl. 01:47:21 Chapter 8 - The Malthouse—The Chat—News. 02:26:31 Chapter 9 - The Homestead—A Visitor—Half-Confidences. 02:38:46 Chapter 10 - Mistress and Men. 02:51:17 Chapter 11 - Outside the Barracks—Snow—A Meeting. 03:01:11 Chapter 12 - Farmers—A Rule—An Exception. 03:11:39 Chapter 13 - Sortes Sanctorum—The Valentine. 03:19:55 Chapter 14 - Effect of the Letter—Sunrise. 03:28:48 Chapter 15 - A Morning Meeting—The Letter Again. 03:51:05 Chapter 16 - All Saints’ and All Souls’. 03:56:50 Chapter 17 - In the Market-Place. 04:02:12 Chapter 18 - Boldwood in Meditation—Regret. 04:12:32 Chapter 19 - The Sheep-Washing—The Offer. 04:25:13 Chapter 20 - Perplexity—Grinding the Shears—A Quarrel. 04:37:53 Chapter 21 - Troubles in the Fold—A Message. 04:51:26 Chapter 22 - The Great Barn and the Sheep-Shearers. 05:15:25 Chapter 23 - Eventide—A Second Declaration. 05:29:07 Chapter 24 - The Same Night—The Fir Plantation. 05:42:54 Chapter 25 - The New Acquaintance Described. 05:50:30 Chapter 26 - Scene on the Verge of the Hay-Mead. 06:09:18 Chapter 27 - Hiving the Bees. 06:15:48 Chapter 28 - The Hollow Amid the Ferns. 06:27:22 Chapter 29 - Particulars of a Twilight Walk. 06:42:46 Chapter 30 - Hot Cheeks and Tearful Eyes.
    https://wn.com/Far_From_The_Madding_Crowd_🌾❤️|_Book_1_2📚
    PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022
    3:49

    PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022

    • Order:
    • Duration: 3:49
    • Uploaded Date: 17 Jul 2022
    • views: 137548
    PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022
    https://wn.com/Paul_Young_Love_Of_The_Common_People_Starnacht_Am_Wörthersee_16.07.2022
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Paul Young - Love of the Common People (Official Video)
      3:32
      Paul Young - Love of the Common People (Official Video)remove from playlist
    • Love of the Common People
      3:41
      Love of the Common Peopleremove from playlist
    • Paul Young - Love of the Common People (The Tube 1983)
      4:04
      Paul Young - Love of the Common People (The Tube 1983)remove from playlist
    • Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)
      4:29
      Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)remove from playlist
    • Love Of The Common People
      2:54
      Love Of The Common Peopleremove from playlist
    • Far from the Madding Crowd 🌾❤️| Book 1/2📚
      6:53:19
      Far from the Madding Crowd 🌾❤️| Book 1/2📚remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Paul Young - Love of the Common People (Official Video)

    Listen on Spotify: http://smarturl.it/EssPaul_Spotify?IQid=PYoungLOTCP Listen on Apple Music: http://smarturl.it/Ess_PaulAppleMusic?IQid=PYoungLOTCP Buy on iTunes: http://smarturl.it/EssPaul_iTunes?IQid=PYoungLOTCP Buy on Amazon: http://smarturl.it/EssPaul_Amazon?IQid=PYoungLOTCP Stream more music from Paul Young here: http://smarturl.it/PaulYoung_PI?IQid=PYoungLOTCP ------------------------------------------------- Follow Paul Young Subscribe to Paul Young: http://smarturl.it/PaulYoungSub Website: http://paul-young.com/ Facebook: https://www.facebook.com/PaulYoungOfficial/ Twitter: https://twitter.com/PaulYoungParlez Spotify: https://open.spotify.com/artist/6rqU9HQ57NYGBnBzbrY3a4?si=42mJjdrYQDSkUHtwF8EDXQ More from Paul Young Everytime You Go Away: https://youtu.be/nfk6sCzRTbM Come Back and Stay: https://youtu.be/aeeJhEpeUfc Oh Girl: https://youtu.be/16Z73aXuZQw Everytime You Go Away: https://youtu.be/nfk6sCzRTbM Come Back and Stay: https://youtu.be/aeeJhEpeUfc Oh Girl: https://youtu.be/16Z73aXuZQw More great 80's videos here: http://smarturl.it/Ultimate80??IQid=PYoungLOTCP Lyrics Living on free food tickets Water in the milk From a hole in the roof Where the rain came through What can you do, hmmm? Tears from your little sister Crying because she doesn't have A dress without a patch For the party to go But you know she'll get by 'Cause she's living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can It's a good thing You don't have bus fare It would fall through the hole In your pocket and you'd lose it In the snow on the ground You got to walk into town To find a job Tryin' to keep your hands warm When the hole in your shoe Let the snow come through And chill you to the bone Somehow you'd better go home Where it's warm Where you can live in The love of the common people Smile from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you And she can Living on a dream ain't easy But the closer the knit The tighter the fit And the chills stay away 'Cause we take 'em in stride For family pride You know that faith Is your foundation With a whole lot of love And a warm conversation But don't forget to pray It's makin' it strong Where you belong And we're living in The love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can Yes, we're living in The love of the common people Smile's from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smiles from the heart Of a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can Living in the love of the common people Smile's really hard On a family man Daddy's gonna buy you A dream to cling to Mama's gonna love you Just as much as she can And she can
    3:32
    Paul Young - Love of the Common People (Official Video)
    Listen on Spotify: http://smarturl.it/EssPaul_Spotify?IQid=PYoungLOTCP Listen on Apple Mu...
    published: 25 Oct 2009
    Play in Full Screen
    3:41
    Love of the Common People
    Provided to YouTube by Columbia Love of the Common People · Paul Young From Time To Time...
    published: 08 Apr 2017
    Play in Full Screen
    3:13
    Paul Young - Love Of The Common People (Lyrics)
    If you have any requests please let me know in the comment section below.
    published: 25 Oct 2016
    Play in Full Screen
    4:04
    Paul Young - Love of the Common People (The Tube 1983)
    Listen on Spotify: http://smarturl.it/EssPaul_Spotify Listen on Apple Music: http://smart...
    published: 07 Oct 2016
    Play in Full Screen
    4:29
    Bruce Springsteen with the Sessions Band - Love of the Common People (Live In Dublin)
    Bruce Springsteen performing "Love Of The Common People" Live in Dublin Listen to your fav...
    published: 13 Mar 2019
    Play in Full Screen
    2:55
    Love Of The Common People By Eric Donaldson
    Love of your own people
    published: 20 Apr 2012
    Play in Full Screen
    3:07
    Paul Young - Love Of The Common People (Official Music Video) HD
    published: 28 May 2014
    Play in Full Screen
    2:54
    Love Of The Common People
    Provided to YouTube by Buddha Records Love Of The Common People · Waylon Jennings Love O...
    published: 18 Feb 2017
    Play in Full Screen
    6:53:19
    Far from the Madding Crowd 🌾❤️| Book 1/2📚
    Dive into the enchanting world of Thomas Hardy's classic, 'Far from the Madding Crowd'! 📖✨...
    published: 23 Sep 2024
    Play in Full Screen
    3:49
    PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022
    PAUL YOUNG - Love of the Common People @Starnacht am Wörthersee - 16.07.2022
    published: 17 Jul 2022
    Play in Full Screen

    Of Darkness...

    Of Darkness... is a debut studio album released on February 1991 by the Swedish band Therion and it contains songs written in the early years of the band, during the 1980s. The album is indicated by the band itself as an end of its first era.

    The album was re-released on 27 November 2000 under Nuclear Blast label as a part of The Early Chapters of Revelation box-set. It contains remastered songs, as well as four bonus tracks.

    Recording and production

    After releasing the third demo record Time Shall Tell EP in 1990, Therion got attention from the British label Deaf Records, a subsidiary of Peaceville Records, and signed the band's first contract.Of Darkness... was recorded in Swedish studio Sunlight in Stockholm from August to September 1990 and released on February 1991. The initial line-up has not been changed since its last production. The album was produced by Tomas Skogsberg and the band itself.

    Songs, lyrical themes and influences

    Of Darkness... consists of songs Christofer Johnsson had written in the years of 1987–1989. Despite having newer songs, the band opted to save them for their next full release. The album can be seen as a progressive death metal album in that it contained mainly influences that were not standard to death metal at the time. The album was influenced especially by the Celtic Frost's thrash metal album Into the Pandemonium. Its sound was compared to Dismember (melody), Suffocation and Morpheus (rhythm), Entombed, Napalm Death, Repulsion, Bolt Thrower (guitars), Carcass and other extreme thrash metal and grindcore bands of those days.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×