- published: 03 Apr 2013
- views: 303871
'+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; })); }); -->
William Martin "Billy" Joel (born May 9, 1949) is an American pianist, singer-songwriter, and composer. Since releasing his first hit song, "Piano Man", in 1973, Joel has become the sixth-best-selling recording artist and the third-best-selling solo artist in the United States. His compilation album Greatest Hits Vol. 1 & 2 is one of the best-selling albums in the US.
Joel had Top 40 hits in the 1970s, 1980s, and 1990s, achieving 33 Top 40 hits in the US, all of which he wrote himself. He is also a six-time Grammy Award winner who has been nominated for 23 Grammy Awards. He has sold more than 150 million records worldwide, making him one of the best-selling artists of all time.
Joel was inducted into the Songwriters Hall of Fame (1992), the Rock and Roll Hall of Fame (1999), and the Long Island Music Hall of Fame (2006). In 2001, Joel received the Johnny Mercer Award from the Songwriters Hall of Fame. In 2013, Joel received the Kennedy Center Honors, the nation's highest honor for influencing American culture through the arts. With the exception of the 2007 songs "All My Life" and "Christmas in Fallujah", Joel stopped writing and releasing pop/rock material after 1993's River of Dreams. However, he continues to tour, and he plays songs from all eras of his solo career in his concerts.
Songs in the Attic is the first live album by Billy Joel, released in 1981 (see 1981 in music).
At the time of its release, it was the first widely available appearance of music from his first album, Cold Spring Harbor, originally released in 1971.
Songs in the Attic introduced Billy Joel's early work to fans who had only come to know his work after The Stranger, according to liner notes written by Joel. In his earlier work, most of the instruments were played by session musicians while Joel himself sang and played, piano, keyboards and harmonica, but by the late 1970s, Joel had a fairly consistent touring/recording band and so he wanted to showcase the songs with his band.
The single-releases included: "Say Goodbye to Hollywood" and "She's Got a Way," which made the top 25, and "You're My Home". In Japan, "Los Angelenos" was also available in 1981.
A series of promotional music videos were filmed. Though the concert filming may have been staged for the occasion, the audio versions are nonetheless different from the live recordings featuring on the live album. A total of five promo videos were filmed: four of them recorded at Sparks and one in a recording studio. At least two of them, were not released as worldwide official singles. "Everybody Loves You Now" (not a single) directed by Steve Cohen (live at Sparks); "You're My Home" directed by Steve Cohen (live at Sparks); "Los Angelenos" (not a single, though a Japanese 7" vinyl was in existence) directed by Steve Cohen (live at Sparks); "Say Goodbye to Hollywood" directed by Steve Cohen (live at Sparks); "She's Got a Way" live in a studio, also a different version from the live album.
Three in the Attic is a 1968 movie, starring Christopher Jones and Yvette Mimieux, with Judy Pace and Maggie Thrett. Nan Martin, John Beck, and Eve McVeagh appear in supporting roles.
Jones plays Paxton Quigley, a lothario who swears his fidelity to all three of the women he is dating, who are unaware of his deception. When they learn the truth about Paxton, the women lure him into a college dormitory attic, where they each take turns tormenting and pampering Paxton physically.
Paxton Quigley (Christopher Jones), a renowned womanizer, is a student at the fictional Willard College for Men, located one mile away from the fictional Fulton College for women. The schools are located in small college communities in the middle of Vermont.
After meeting at a Zeta Chi (ZX) fraternity party, Paxton and a Fulton undergrad, Tobey Clinton (Yvette Mimieux), begin dating. They then take their relationship to the next level by spending the summer together by the beach in Provincetown.
In the Attic may refer to:
Toys in the Attic (Czech: Na půdě aneb Kdo má dneska narozeniny?; festival title: In the Attic: Who Has a Birthday Today?) is a 2009 Czech-French-Japanese-Slovak primarily stop-motion animated fantasy comedy thriller family film directed by Jiří Barta and written by Edgar Dutka and Barta which depicts a community of toys and other objects in an attic who come to life when no human is around. It is an international co-production of Czech, Japanese and Slovak companies. The film was released first in the Czech Republic on 5 March 2009 and has been shown subtitled at film festivals internationally. An American dub – adapted, produced and directed by Vivian Schilling and performed by actors including Forest Whitaker, Joan Cusack, Cary Elwes and Schilling herself – has been recorded, which the film was first shown with on 3 March 2012 at the New York International Children's Film Festival and was released nationally on 24 August 2012 by Hannover House.
The Attic can refer to:
The Attic is a Swedish house band duo whose members are Eric Amarillo (Erik Sundborg) and Michael Feiner that started under the name of Stereopol with the track 'Dancin' Tonight' in 2003. The two mostly perform house music songs of other artists, but they have also written their own songs.
They released a number of singles including "I Just Can't Help It", "Destiny", "In Your Eyes", "A Life To Live", "It's Beautiful" and "Baby". In 2006, they and Therese Grankvist recorded a song which they sent to Melodifestivalen; to their surprise the song was chosen to be performed in the festival. Therese, featuring The Attic, performed 'The Arrival' in the third semifinal, where they competed for the opportunity to represent Sweden in the Eurovision Song Contest 2007 in Helsinki, Finland. On the 17th of February 2007 The Attic ft Therese came 7th in the semifinal and didn't qualify any further in the contest.
The band played a concert in central Chişinău, Moldova organised by mobile operator Orange on 24 May 2008.
In 1981, Billy Joel released his first live album titled Songs In The Attic. Listen to Billy Joel perform the track 'Summer, Highland Falls' from a live 1980 performance at Bijou in Washington, D.C. http://smarturl.it/BJ_M17ITA_YT?IQid=ytd.bj.shfa80 Listen to music off of Songs In The Attic Listen to the studio version of 'Summer, Highland Falls' - https://www.youtube.com/watch?v=1tQKW9aquT0&index=2&list=PL7yzAAp3V3yP96vVtU_jqCNEvakCzo_60 iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.shfa80 Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.shfa80 Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.shfa80 Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.shfa80 Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.shfa80 Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.shf...
In 1981, Billy Joel released his first live album titled Songs In The Attic. Listen to Billy Joel perform the track 'Miami 2017 (Seen The Lights Go Out On Broadway' from a live 1980 performance at Madison Square Garden in New York City. http://smarturl.it/BJ_M17ITA_YT?IQid=ytd.bj.m2017a80 Listen to music off of Songs In The Attic iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.m2017a80 Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.m2017a80 Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.m2017a80 Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.m2017a80 Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.m2017a80 Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.m2017a80 Subscribe: http://smarturl.it/BJ_YD_YT?IQid=ytd.bj.m2017a80 Lyrics: Come out Virginia, don't l...
In 1981, Billy Joel released his first live album titled Songs In The Attic. Listen to Billy Joel perform the track 'Captain Jack' from a live 1980 performance at Spectrum in Philadelphia, Pennsylvania. http://smarturl.it/BJ_M17ITA_YT?IQid=ytd.bj.captja80 Listen to music off of Songs In The Attic http://smarturl.it/BJ_CJPM_YT?IQid=ytd.bj.captja80 Listen to the studio version of 'Captain Jack' iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.captja80 Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.captja80 Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.captja80 Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.captja80 Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.captja80 Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.captja80 Subscribe: http://smarturl.it/...
David Clark's ALL ABOUT JOEL (formerly "Songs In The Attic") Performed by David Clark www.billyjoeltributeny.com For bookings and inquiries: David Clark Music & Events Inc [email protected] (516) 721-5344 Filmed & Edited from a live performance at Patchogue Theatre by Steve Sage Productions
In 1981, Billy Joel released his first live album titled Songs In The Attic. Listen to Billy Joel perform the track 'You're My Home' from a live 1980 performance at Bijou in Washington, D.C. http://smarturl.it/BJ_M17ITA_YT?IQid=ytd.bj.ymha Listen to music off of Songs In The Attic iTunes: http://smarturl.it/BJ_TEBJ_iTunes?IQid=ytd.bj.ymha Amazon: http://smarturl.it/BJ_TEBJ_Amzn?IQid=ytd.bj.ymha Spotify: http://smarturl.it/BillyJoel_Spotify?IQid=ytd.bj.ymha Google Play: http://smarturl.it/BJ_Gplay?IQid=ytd.bj.ymha Facebook: http://smarturl.it/BJ_YD_FB?IQid=ytd.bj.ymha Twitter: http://smarturl.it/BJ_YD_T?IQid=ytd.bj.ymha Subscribe: http://smarturl.it/BJ_YD_YT?IQid=ytd.bj.ymha Lyrics: When you look into my eyes And you see the crazy gypsy in my soul It always comes as a surprise When I fe...
Rare unreleased Outtake track from Billy's live album "Songs in the Attic"
Music video by Billy Joel performing I've Loved These Days. (C) 2011 Sony Music Entertainment
William Martin "Billy" Joel (born May 9, 1949) is an American pianist, singer-songwriter, and composer. Since releasing his first hit song, "Piano Man", in 1973, Joel has become the sixth-best-selling recording artist and the third-best-selling solo artist in the United States. His compilation album Greatest Hits Vol. 1 & 2 is one of the best-selling albums in the US.
Joel had Top 40 hits in the 1970s, 1980s, and 1990s, achieving 33 Top 40 hits in the US, all of which he wrote himself. He is also a six-time Grammy Award winner who has been nominated for 23 Grammy Awards. He has sold more than 150 million records worldwide, making him one of the best-selling artists of all time.
Joel was inducted into the Songwriters Hall of Fame (1992), the Rock and Roll Hall of Fame (1999), and the Long Island Music Hall of Fame (2006). In 2001, Joel received the Johnny Mercer Award from the Songwriters Hall of Fame. In 2013, Joel received the Kennedy Center Honors, the nation's highest honor for influencing American culture through the arts. With the exception of the 2007 songs "All My Life" and "Christmas in Fallujah", Joel stopped writing and releasing pop/rock material after 1993's River of Dreams. However, he continues to tour, and he plays songs from all eras of his solo career in his concerts.
Someone in "The Attic",
Building a strange machine.
Never really see him,
But I think he works all day.
Blinded by the world outside,
I stay inside.
Hardly know my name,
But it's getting better by time.
I saw something in the mirror,
Someone's watching me.
If I hide in "The Attic",
I will never get to me.
I found some rope on the floor.
I have to build a trap.
So I start on my machine,