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

Rainbow (2005 film)

Rainbow (simplified Chinese: 我心飞翔; traditional Chinese: 我心飛翔; pinyin: Wǒ Xīn Fēi Xiáng; literally: "my heart is flying") is a 2005 Chinese film written and directed by Gao Xiaosong, starring Chen Daoming.

Cast

  • Chen Daoming as Xu
  • Li Xiaolu as Rainbow
  • Ding Yongdai as Sheng
  • Zheng Jun as Yang
  • External links

  • Rainbow at the Internet Movie Database
  • Rainbow at AllMovie
  • Rainbow on the Chinese Movie Database (listed under the title Fly My Heart)
  • Rainbow on Sina.com
  • Rainbow (Ayumi Hamasaki album)

    Rainbow (stylized as RAINBOW) is the fifth studio album by Japanese recording artist Ayumi Hamasaki, released on 18 December 2002 by Avex Trax. Production of Rainbow had commenced after the release of Hamasaki's fourth studio album I Am... that January; All lyrics were written by Hamasaki, and Japanese producer Max Matsuura returned to produce the album. Hamasaki increased. The album was Hamasaki's first to feature conversational English lyrics, where in her previous works she had only used single words.

    Channelling pop and trip hop music, Rainbow focuses on lighter themes that were established on her previous album. Some songs focus on loneliness, sadness and relationships, while the rest talk about happiness, having fun and nostalgia. Critics' opinions of the album were generally favourable; the composition and lyrical content were commended. However, some critics dismissed Hamasaki's vocals and Matsuura's production. Upon its release, the album entered the Oricon Albums Chart at number one with first week sales of over one million units, becoming her fifth album to reach the top spot, her fourth to debut there, and her fourth to sell over one million copies in its debut week. Rainbow is the eighty-ninth highest selling Japanese album of all time.

    The Birthday Massacre

    The Birthday Massacre (abbreviated TBM) is a Canadian band, formed in 1999 in London, Ontario, and currently based in Toronto, Ontario. The current line-up consists of Chibi (vocals), Falcore (guitars), Rainbow (guitars), Owen (synthesizers), Nate Manor (bass guitar) and Rhim (drums).

    When the band formed in 1999, they were known as Imagica. This name was inspired from the fantasy novel Imajica (1991) by Clive Barker. In 2002, they changed the name to The Birthday Massacre after one of their earlier songs in order to avoid confusion with another group. The song "The Birthday Massacre" was then renamed to "Happy Birthday". According to their vocalist Chibi: "it kind of works well for the music that we're making. Sort of contrasty, you know? Birthday, and massacre. Light, and dark. Cute, and evil".

    TBM have released six studio albums: Nothing and Nowhere (2002), Violet (2005), Walking With Strangers (2007), Pins and Needles (2010), Hide and Seek (2012), and Superstition (2014).

    Catch 22 Live

    Live! is Catch 22's first full-length live release, although fan-recorded live tracks were bonus features on several previous albums. Roughly a third of the album is devoted to Keasbey Nights, another third to Alone in a Crowd, and the remainder to Dinosaur Sounds. A bonus DVD includes footage from the concert, as well as a variety of extras. However, former frontman Tomas Kalnoky is conspicuously absent from the footage of the band's early days.

    Track listing

    DVD Features

  • Footage of August 30, 2004 concert.
  • Embarrassing Photos (Photos of band members acting foolish)
  • On the Road (Home video footage from the band's tour bus)
  • At the Show (Footage from earlier concerts filmed by fans)
  • Humble Beginnings (Home videos and old photographs of band members)
  • Music Videos: Wine Stained Lips, Point the Blame, Hard to Impress
  • Personnel

  • Pat Kays - bass guitar
  • Ian McKenzie - trombone, vocals
  • Ryan Eldred - saxophone, vocals
  • Chris Greer - drum kit
  • Kevin Gunther - trumpet, vocals
  • Pat Calpin - guitar, vocals
  • Live (Jake Shimabukuro album)

    Live is Jake Shimabukuro's 2009 solo album. It was released in April 2009, and consists of live in-concert performances from various venues around the world, including New York, Chicago, Japan, and Hawaii.

    Live peaked at number 5 in Billboard's Top World Music Albums in 2009 and 2010. The album won the 2010 Na Hoku Hanohano Award for Instrumental Album of the Year, and also garnered Shimabukuro the award for Favorite Entertainer of the Year. In addition, it won the 2010 Hawaii Music Award for Best Ukulele Album.

    AllMusic noted that, "Shimabukuro is a monster musician and boldly takes the ukulele where no ukulele has ever gone before, dazzling listeners with his blinding speed, melodic invention, and open-ended improvisations of remarkable virtuosity. Before Shimabukuro, the idea of spending an evening listing to a solo ukulele player was probably most people's idea of hell, but the 17 solo efforts here never bore. They show Shimabukuro's range and his humor as well."

    Live (Split Lip Rayfield album)

    Live or Split Lip Rayfield Live is the first live album from the bluegrass/punk band Split Lip Rayfield. It was recorded live on New Year's Eve of 2003 at The Bottleneck in Lawrence, Kansas. It contains music from their first three albums and the music is significantly faster than the studio-recorded versions.

    Track listing

  • Flat Black Rag (Eaton, Rundstrom) 2:00
  • Truckin' Song (Gottstine) 1:59
  • In the Ground (Mardis) 2:36
  • Record Shop (Rundstrom) 3:40
  • Cutie Pie (Eaton, Rundstrom) 2:41
  • P.B. (Rundstrom) 2:39
  • Used to Call Me Baby (Gottstine) 3:40
  • Trouble (Rundstrom) 3:20
  • Whiskey Is Gone (Rundstrom) 1:37
  • Old #6 (Gottstine) 2:53
  • Kiss of Death (Mardis) 4:18
  • Devil (Rundstrom) 2:43
  • Never Make It Home (Gottstine) 3:20
  • Coffee (Rundstrom) 1:59
  • 3.2 Flu (Gottstine) 2:15
  • River (Gottstine) 4:01
  • Hounds (Mardis) 2:52
  • Movin' to Virginia (Gottstine) 2:49
  • San Antone (Rundstrom) 6:48
  • Personnel

  • Jeff Eaton – Gas Tank Bass, Vocals
  • Wayne Gottstine – Mandolin, Vocals
  • Kirk Rundstrom – Guitar, Vocals
  • Elisa (1979 telenovela)

    Elisa is a Mexican telenovela produced by Irene Sabido for Televisa in 1979.

    Cast

  • Raquel Olmedo as Elisa
  • Javier Ruán
  • Carmen Salinas
  • Sergio Kleiner
  • María Martin
  • Antonio Brillas
  • Ana Silvia
  • María Fernánda
  • Mario Pintor
  • Mariana Garza
  • Elisa Eyms
  • Maricuca
  • References

    External links

    Elisa at the Internet Movie Database


    Podcasts:

    • 浜崎あゆみ / RAINBOW

      浜崎あゆみの音楽をもっと聴く→https://avex.lnk.to/ayu ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD 2002年12月18日にリリースされたALBUM「RAINBOW」に収録 ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD YouTubeチャンネル登録|http://bit.ly/ayuch_sbsc Official|http://avex.jp/ayu/ Instagram | https://www.instagram.com/a.you/ Twitter|https://twitter.com/ayu_19980408 Facebook|https://www.facebook.com/ayu.official 浜崎あゆみが、広告なしで全曲聴き放題【AWA/無料】 曲をダウンロードして、圏外でも聴ける。 無料で体験する:再生ボタン:https://mf.awa.fm/2ybYNA6 #浜崎あゆみ #ayu_MV

      published: 02 Oct 2019
    • Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album

      Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album

      published: 13 Jun 2021
    • Ayumi Hamasaki - RAINBOW (jpn/rom/eng subbed)

      From the "A BALLADS" album

      published: 12 Mar 2023
    • 浜崎あゆみ / RAINBOW (ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜)

      8月17日リリースLIVE DVD & Blu-ray「ayumi hamasaki ASIA TOUR ~24th Anniversary special @PIA ARENA MM~」 ご購入はこちら!→https://avex.lnk.to/ASIATOUR24thPIAARENAMM 浜崎あゆみの音楽を聴く → https://avex.lnk.to/ayu 浜崎あゆみのライヴ映像をもっと見る → https://avex.lnk.to/ayu_LIVE_DVD_BD ------------------------ 2021年の大晦日に東京・国立代々木競技場第一体育館にて開催された「ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜」より「RAINBOW」を公開! 新しい年への希望を歌い、会場が一体となったカウントダウンの瞬間も含んだ、浜崎あゆみならではの圧巻のステージを収録。 ------------------------ ===== YouTubeチャンネル登録|http://bit.ly/ayuch_sbsc Official|http://avex.jp/ayu/ Instagram | https://www.instagram.com/a.you/ Twitter|https://twitter.com/ayu_19980408 Facebook|https://www.facebook.com/ayu.official ===== #ayu_LIVE #CDL_20212022 #RANIBOW

      published: 28 Feb 2022
    • Ayumi Hamasaki Rainbow Album

      published: 27 Jun 2023
    • ayumi hamasaki 浜崎あゆみ - RAINBOW [Full Album]

      1 00:00:00 everlasting dream 2 00:01:34 WE WISH 3 00:06:45 Real me 4 00:12:11 Free & Easy 5 00:17:10 Heartplace 6 00:23:16 Over 7 00:28:22 HANABI 8 00:33:16 taskinillusion 9 00:34:37 everywhere nowhere 10 00:39:12 July 1st 11 00:43:33 Dolls 12 00:49:29 neverending dream 13 00:51:04 Voyage 14 00:56:11 Close to you 15 01:01:59 independent+

      published: 01 Jun 2020
    • 浜崎あゆみ - RAINBOW(ayumi hamasaki COUNTDOWN LIVE 2011-2012 A ~HOTEL Love songs~)

      published: 04 Feb 2019
    • Ayumi Hamasaki - RAINBOW (limited TA Live tour)

      浜崎あゆみ / Rainbow live 2003

      published: 08 Aug 2024
    • Ayumi Hamasaki - Rainbow (Romaji/English)

      #ayumihamasaki #浜崎あゆみ Ayumi Hamasaki playlist https://youtube.com/playlist?list=PL64YVBcWl-0NkgAF7aK8OiHlNprZaI-fm Ayumi Hamasaki - Rainbow music video https://www.youtube.com/watch?v=OJfcB8473Nw ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All rights administered by Avex Inc. No copyright infringement intended.

      published: 17 Jun 2022
    • Ayumi Hamasaki -Rainbow-

      00:00 everlasting dream 01:33 we wish 06:44 real me 12:10 free&easy 17:09 heartplace 23:15 over 28:21 hanabi 33:15 taskinillusion 34:35 everywhere no where 39:10 july 1st 43:31 dolls 49:27 neverending dream 51:02 voyage 56:09 close to you 01:01:56 Independent+

      published: 07 Jul 2020
    developed with YouTube
    浜崎あゆみ / RAINBOW
    6:11

    浜崎あゆみ / RAINBOW

    • Order:
    • Duration: 6:11
    • Uploaded Date: 02 Oct 2019
    • views: 529166
    浜崎あゆみの音楽をもっと聴く→https://avex.lnk.to/ayu ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD 2002年12月18日にリリースされたALBUM「RAINBOW」に収録 ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD YouTubeチャンネル登録|http://bit.ly/ayuch_sbsc Official|http://avex.jp/ayu/ Instagram | https://www.instagram.com/a.you/ Twitter|https://twitter.com/ayu_19980408 Facebook|https://www.facebook.com/ayu.official 浜崎あゆみが、広告なしで全曲聴き放題【AWA/無料】 曲をダウンロードして、圏外でも聴ける。 無料で体験する:再生ボタン:https://mf.awa.fm/2ybYNA6 #浜崎あゆみ #ayu_MV
    https://wn.com/浜崎あゆみ_Rainbow
    Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album
    1:11:51

    Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album

    • Order:
    • Duration: 1:11:51
    • Uploaded Date: 13 Jun 2021
    • views: 179
    Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album
    https://wn.com/Ayumi_Hamasaki_Rainbow_||_Ayumi_Hamasaki_Full_Album
    Ayumi Hamasaki - RAINBOW (jpn/rom/eng subbed)
    5:29

    Ayumi Hamasaki - RAINBOW (jpn/rom/eng subbed)

    • Order:
    • Duration: 5:29
    • Uploaded Date: 12 Mar 2023
    • views: 5344
    From the "A BALLADS" album
    https://wn.com/Ayumi_Hamasaki_Rainbow_(Jpn_Rom_Eng_Subbed)
    浜崎あゆみ / RAINBOW (ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜)
    7:17

    浜崎あゆみ / RAINBOW (ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜)

    • Order:
    • Duration: 7:17
    • Uploaded Date: 28 Feb 2022
    • views: 418292
    8月17日リリースLIVE DVD & Blu-ray「ayumi hamasaki ASIA TOUR ~24th Anniversary special @PIA ARENA MM~」 ご購入はこちら!→https://avex.lnk.to/ASIATOUR24thPIAARENAMM 浜崎あゆみの音楽を聴く → https://avex.lnk.to/ayu 浜崎あゆみのライヴ映像をもっと見る → https://avex.lnk.to/ayu_LIVE_DVD_BD ------------------------ 2021年の大晦日に東京・国立代々木競技場第一体育館にて開催された「ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜」より「RAINBOW」を公開! 新しい年への希望を歌い、会場が一体となったカウントダウンの瞬間も含んだ、浜崎あゆみならではの圧巻のステージを収録。 ------------------------ ===== YouTubeチャンネル登録|http://bit.ly/ayuch_sbsc Official|http://avex.jp/ayu/ Instagram | https://www.instagram.com/a.you/ Twitter|https://twitter.com/ayu_19980408 Facebook|https://www.facebook.com/ayu.official ===== #ayu_LIVE #CDL_20212022 #RANIBOW
    https://wn.com/浜崎あゆみ_Rainbow_(Ayumi_Hamasaki_Countdown_Live_2021_2022_A_〜23Rd_Monster〜)
    Ayumi Hamasaki Rainbow Album
    1:11:53

    Ayumi Hamasaki Rainbow Album

    • Order:
    • Duration: 1:11:53
    • Uploaded Date: 27 Jun 2023
    • views: 199
    https://wn.com/Ayumi_Hamasaki_Rainbow_Album
    ayumi hamasaki 浜崎あゆみ  - RAINBOW  [Full Album]
    1:11:52

    ayumi hamasaki 浜崎あゆみ - RAINBOW [Full Album]

    • Order:
    • Duration: 1:11:52
    • Uploaded Date: 01 Jun 2020
    • views: 477522
    1 00:00:00 everlasting dream 2 00:01:34 WE WISH 3 00:06:45 Real me 4 00:12:11 Free & Easy 5 00:17:10 Heartplace 6 00:23:16 Over 7 00:28:22 HANABI 8 00:33:16 taskinillusion 9 00:34:37 everywhere nowhere 10 00:39:12 July 1st 11 00:43:33 Dolls 12 00:49:29 neverending dream 13 00:51:04 Voyage 14 00:56:11 Close to you 15 01:01:59 independent+
    https://wn.com/Ayumi_Hamasaki_浜崎あゆみ_Rainbow_Full_Album
    浜崎あゆみ - RAINBOW(ayumi hamasaki COUNTDOWN LIVE 2011-2012 A ~HOTEL Love songs~)
    8:34

    浜崎あゆみ - RAINBOW(ayumi hamasaki COUNTDOWN LIVE 2011-2012 A ~HOTEL Love songs~)

    • Order:
    • Duration: 8:34
    • Uploaded Date: 04 Feb 2019
    • views: 13698
    https://wn.com/浜崎あゆみ_Rainbow(Ayumi_Hamasaki_Countdown_Live_2011_2012_A_~Hotel_Love_Songs~)
    Ayumi Hamasaki - RAINBOW (limited TA Live tour)
    5:40

    Ayumi Hamasaki - RAINBOW (limited TA Live tour)

    • Order:
    • Duration: 5:40
    • Uploaded Date: 08 Aug 2024
    • views: 741
    浜崎あゆみ / Rainbow live 2003
    https://wn.com/Ayumi_Hamasaki_Rainbow_(Limited_Ta_Live_Tour)
    Ayumi Hamasaki - Rainbow (Romaji/English)
    5:26

    Ayumi Hamasaki - Rainbow (Romaji/English)

    • Order:
    • Duration: 5:26
    • Uploaded Date: 17 Jun 2022
    • views: 3037
    #ayumihamasaki #浜崎あゆみ Ayumi Hamasaki playlist https://youtube.com/playlist?list=PL64YVBcWl-0NkgAF7aK8OiHlNprZaI-fm Ayumi Hamasaki - Rainbow music video https://www.youtube.com/watch?v=OJfcB8473Nw ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All rights administered by Avex Inc. No copyright infringement intended.
    https://wn.com/Ayumi_Hamasaki_Rainbow_(Romaji_English)
    Ayumi Hamasaki -Rainbow-
    1:11:51

    Ayumi Hamasaki -Rainbow-

    • Order:
    • Duration: 1:11:51
    • Uploaded Date: 07 Jul 2020
    • views: 74144
    00:00 everlasting dream 01:33 we wish 06:44 real me 12:10 free&easy 17:09 heartplace 23:15 over 28:21 hanabi 33:15 taskinillusion 34:35 everywhere no where 39:10 july 1st 43:31 dolls 49:27 neverending dream 51:02 voyage 56:09 close to you 01:01:56 Independent+
    https://wn.com/Ayumi_Hamasaki_Rainbow
    • "In The Dark" - The Birthday Massacre - Official HD Stereo

      From the album "Pins and Needles". Directed by M. Falcore and Rodrigo Gudino Everything by The Birthday Massacre, Rue Morgue and friends. Filmed and edited in Toronto, Canada. June-Sept, 2010. Video Credits: http://www.youtube.com/watch?v=o-z0NUC2aNA To get a copy of "Pins and Needles" including a Digital Only Deluxe Edition featuring the video for "In The Dark", visit: http://www.metropolis-records.com/artist/the-birthday-massacre To listen to songs from the album, see pics and view our tour schedule...please go to: http://www.TheBirthdayMassacre.com http://www.facebook.com/TheBirthdayMassacre http://twitter.com/TBMassacre http://thebirthdaymassacre.tumblr.com/ http://plus.google.com/118300310960125961696/posts http://soundcloud.com/thebirthdaymassacre also...visit our creepy friends ...

      published: 08 Sep 2010
    • Red Stars

      Provided to YouTube by Virgin Music Group Red Stars · The Birthday Massacre Walking With Strangers ℗ 2007 Metropolis Records Released on: 2007-09-11 Composer, Writer: Michael Ranbow Composer, Writer: Sara Taylor Composer, Writer: Michael hanmer Composer, Writer: Mathew O'Halloran Auto-generated by YouTube.

      published: 29 Jul 2015
    • The Birthday Massacre - One

      Director: Chris Nash Producer: Shannon Hanmer Cinematographer: Pierce Derks

      published: 25 Sep 2017
    • Pins And Needles

      Provided to YouTube by Virgin Music Group Pins And Needles · The Birthday Massacre Pins And Needles ℗ 2010 Metropolis Records Released on: 2010-09-14 Composer, Writer: Michael Rainbow Composer, Writer: Michael Hanmer Composer, Writer: Matthew O'Halloran Composer, Writer: Sara Taylor Auto-generated by YouTube.

      published: 29 Jul 2015
    • Looking Glass - The Birthday Massacre

      Looking Glass - The Birthday Massacre Primary filming Feb 10-11, 2008. Released April 1st online, May 6th on the "Looking Glass" EP. Dir.: Dan Ouellette Thanks very much to to Looking Glass Cast and crew! The audio seems to have drifted out of sync slightly on YouTube. I have no idea how that's possible. We have a Myspace blog with Directors comments here: http://blogs.myspace.com/index.cfm?fuseaction=blog.view&friendId=2015281&blogId=373126228 High Quality version of the video available on our "Looking Glass" EP: Metropolis Records http://www.metropolis-mailorder.com/product.php?prodnum=MET+545 Repo Records EUROPE http://www.amazon.de/Looking-Glass-Ep-Birthday-Massacre/dp/B0015WJC2O/ref=sr_1_1?ie=UTF8&s=music&qid=1205927086&sr=8-1 And now on iTunes! http://itunes.ap...

      published: 02 Apr 2008
    • Happy Birthday

      Provided to YouTube by Virgin Music Group Happy Birthday · The Birthday Massacre Violet ℗ 2005 Metropolis Records Released on: 2005-08-09 Composer, Writer: Michael Rainbow Auto-generated by YouTube.

      published: 29 Jul 2015
    • To Die For

      Provided to YouTube by Virgin Music Group To Die For · The Birthday Massacre Walking With Strangers ℗ 2007 Metropolis Records Released on: 2007-09-11 Composer, Writer: Michael Ranbow Composer, Writer: Michael Hanmer Auto-generated by YouTube.

      published: 29 Jul 2015
    • "Blue" The Birthday Massacre

      "Blue" - 2005 - The Birthday Massacre Dir.: Dan Ouellette [Sorry this has been uploaded a few times on our channel; the other versions were having weird buffering issues. I -think- this one works better.] ©2005

      published: 05 Mar 2008
    • Under Your Spell

      Provided to YouTube by Virgin Music Group Under Your Spell · The Birthday Massacre Under Your Spell ℗ 2017 Metropolis Records Released on: 2017-06-09 Writer: Chibi Writer: Michael Rainbow Writer: Michael Falcore Auto-generated by YouTube.

      published: 26 Jan 2018
    • Birthday Massacre - Superstition

      Excited to release our new video for 'Superstition', filmed in our rehearsal space. A great job done by Falcore's sister, Shannon! Spread the word please! Studio artwork and set design by the talented Stu Dead. To support him you can buy his artwork at www.playdeadcult.com. Thank you!

      published: 24 Sep 2015
    developed with YouTube
    "In The Dark" - The Birthday Massacre - Official HD Stereo
    3:40

    "In The Dark" - The Birthday Massacre - Official HD Stereo

    • Order:
    • Duration: 3:40
    • Uploaded Date: 08 Sep 2010
    • views: 4179177
    From the album "Pins and Needles". Directed by M. Falcore and Rodrigo Gudino Everything by The Birthday Massacre, Rue Morgue and friends. Filmed and edited in Toronto, Canada. June-Sept, 2010. Video Credits: http://www.youtube.com/watch?v=o-z0NUC2aNA To get a copy of "Pins and Needles" including a Digital Only Deluxe Edition featuring the video for "In The Dark", visit: http://www.metropolis-records.com/artist/the-birthday-massacre To listen to songs from the album, see pics and view our tour schedule...please go to: http://www.TheBirthdayMassacre.com http://www.facebook.com/TheBirthdayMassacre http://twitter.com/TBMassacre http://thebirthdaymassacre.tumblr.com/ http://plus.google.com/118300310960125961696/posts http://soundcloud.com/thebirthdaymassacre also...visit our creepy friends at http://www.rue-morgue.com/
    https://wn.com/In_The_Dark_The_Birthday_Massacre_Official_Hd_Stereo
    Red Stars
    3:42

    Red Stars

    • Order:
    • Duration: 3:42
    • Uploaded Date: 29 Jul 2015
    • views: 3122974
    Provided to YouTube by Virgin Music Group Red Stars · The Birthday Massacre Walking With Strangers ℗ 2007 Metropolis Records Released on: 2007-09-11 Composer, Writer: Michael Ranbow Composer, Writer: Sara Taylor Composer, Writer: Michael hanmer Composer, Writer: Mathew O'Halloran Auto-generated by YouTube.
    https://wn.com/Red_Stars
    The Birthday Massacre - One
    3:45

    The Birthday Massacre - One

    • Order:
    • Duration: 3:45
    • Uploaded Date: 25 Sep 2017
    • views: 2666957
    Director: Chris Nash Producer: Shannon Hanmer Cinematographer: Pierce Derks
    https://wn.com/The_Birthday_Massacre_One
    Pins And Needles
    4:20

    Pins And Needles

    • Order:
    • Duration: 4:20
    • Uploaded Date: 29 Jul 2015
    • views: 1626953
    Provided to YouTube by Virgin Music Group Pins And Needles · The Birthday Massacre Pins And Needles ℗ 2010 Metropolis Records Released on: 2010-09-14 Composer, Writer: Michael Rainbow Composer, Writer: Michael Hanmer Composer, Writer: Matthew O'Halloran Composer, Writer: Sara Taylor Auto-generated by YouTube.
    https://wn.com/Pins_And_Needles
    Looking Glass - The Birthday Massacre
    4:37

    Looking Glass - The Birthday Massacre

    • Order:
    • Duration: 4:37
    • Uploaded Date: 02 Apr 2008
    • views: 6369313
    Looking Glass - The Birthday Massacre Primary filming Feb 10-11, 2008. Released April 1st online, May 6th on the "Looking Glass" EP. Dir.: Dan Ouellette Thanks very much to to Looking Glass Cast and crew! The audio seems to have drifted out of sync slightly on YouTube. I have no idea how that's possible. We have a Myspace blog with Directors comments here: http://blogs.myspace.com/index.cfm?fuseaction=blog.view&friendId=2015281&blogId=373126228 High Quality version of the video available on our "Looking Glass" EP: Metropolis Records http://www.metropolis-mailorder.com/product.php?prodnum=MET+545 Repo Records EUROPE http://www.amazon.de/Looking-Glass-Ep-Birthday-Massacre/dp/B0015WJC2O/ref=sr_1_1?ie=UTF8&s=music&qid=1205927086&sr=8-1 And now on iTunes! http://itunes.apple.com/artist/the-birthday-massacre/id76797904
    https://wn.com/Looking_Glass_The_Birthday_Massacre
    Happy Birthday
    3:40

    Happy Birthday

    • Order:
    • Duration: 3:40
    • Uploaded Date: 29 Jul 2015
    • views: 1099276
    Provided to YouTube by Virgin Music Group Happy Birthday · The Birthday Massacre Violet ℗ 2005 Metropolis Records Released on: 2005-08-09 Composer, Writer: Michael Rainbow Auto-generated by YouTube.
    https://wn.com/Happy_Birthday
    To Die For
    5:06

    To Die For

    • Order:
    • Duration: 5:06
    • Uploaded Date: 29 Jul 2015
    • views: 1168045
    Provided to YouTube by Virgin Music Group To Die For · The Birthday Massacre Walking With Strangers ℗ 2007 Metropolis Records Released on: 2007-09-11 Composer, Writer: Michael Ranbow Composer, Writer: Michael Hanmer Auto-generated by YouTube.
    https://wn.com/To_Die_For
    "Blue" The Birthday Massacre
    5:51

    "Blue" The Birthday Massacre

    • Order:
    • Duration: 5:51
    • Uploaded Date: 05 Mar 2008
    • views: 1017030
    "Blue" - 2005 - The Birthday Massacre Dir.: Dan Ouellette [Sorry this has been uploaded a few times on our channel; the other versions were having weird buffering issues. I -think- this one works better.] ©2005
    https://wn.com/Blue_The_Birthday_Massacre
    Under Your Spell
    4:32

    Under Your Spell

    • Order:
    • Duration: 4:32
    • Uploaded Date: 26 Jan 2018
    • views: 2751708
    Provided to YouTube by Virgin Music Group Under Your Spell · The Birthday Massacre Under Your Spell ℗ 2017 Metropolis Records Released on: 2017-06-09 Writer: Chibi Writer: Michael Rainbow Writer: Michael Falcore Auto-generated by YouTube.
    https://wn.com/Under_Your_Spell
    Birthday Massacre - Superstition
    4:19

    Birthday Massacre - Superstition

    • Order:
    • Duration: 4:19
    • Uploaded Date: 24 Sep 2015
    • views: 2076095
    Excited to release our new video for 'Superstition', filmed in our rehearsal space. A great job done by Falcore's sister, Shannon! Spread the word please! Studio artwork and set design by the talented Stu Dead. To support him you can buy his artwork at www.playdeadcult.com. Thank you!
    https://wn.com/Birthday_Massacre_Superstition
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    浜崎あゆみ / RAINBOW

    浜崎あゆみの音楽をもっと聴く→https://avex.lnk.to/ayu ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD 2002年12月18日にリリースされたALBUM「RAINBOW」に収録 ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD YouTubeチャンネル登録|http://bit.ly/ayuch_sbsc Official|http://avex.jp/ayu/ Instagram | https://www.instagram.com/a.you/ Twitter|https://twitter.com/ayu_19980408 Facebook|https://www.facebook.com/ayu.official 浜崎あゆみが、広告なしで全曲聴き放題【AWA/無料】 曲をダウンロードして、圏外でも聴ける。 無料で体験する:再生ボタン:https://mf.awa.fm/2ybYNA6 #浜崎あゆみ #ayu_MV
    6:11
    浜崎あゆみ / RAINBOW
    浜崎あゆみの音楽をもっと聴く→https://avex.lnk.to/ayu ライヴ映像を観る→https://avex.lnk.to/ayu_LIVE_DVD_BD 2002年...
    published: 02 Oct 2019
    Play in Full Screen
    1:11:51
    Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album
    Ayumi Hamasaki -Rainbow- || Ayumi Hamasaki Full Album Ayumi Hamasaki -Rainbow- || Ayumi Ha...
    published: 13 Jun 2021
    Play in Full Screen
    5:29
    Ayumi Hamasaki - RAINBOW (jpn/rom/eng subbed)
    From the "A BALLADS" album
    published: 12 Mar 2023
    Play in Full Screen
    7:17
    浜崎あゆみ / RAINBOW (ayumi hamasaki COUNTDOWN LIVE 2021-2022 A 〜23rd Monster〜)
    8月17日リリースLIVE DVD & Blu-ray「ayumi hamasaki ASIA TOUR ~24th Anniversary special @PIA ARENA ...
    published: 28 Feb 2022
    Play in Full Screen
    1:11:53
    Ayumi Hamasaki Rainbow Album
    published: 27 Jun 2023
    Play in Full Screen
    1:11:52
    ayumi hamasaki 浜崎あゆみ - RAINBOW [Full Album]
    1 00:00:00 everlasting dream 2 00:01:34 WE WISH 3 00:06:45 Real me 4 00:12:11 Free & Easy ...
    published: 01 Jun 2020
    Play in Full Screen
    8:34
    浜崎あゆみ - RAINBOW(ayumi hamasaki COUNTDOWN LIVE 2011-2012 A ~HOTEL Love songs~)
    published: 04 Feb 2019
    Play in Full Screen
    5:40
    Ayumi Hamasaki - RAINBOW (limited TA Live tour)
    浜崎あゆみ / Rainbow live 2003
    published: 08 Aug 2024
    Play in Full Screen
    5:26
    Ayumi Hamasaki - Rainbow (Romaji/English)
    #ayumihamasaki #浜崎あゆみ Ayumi Hamasaki playlist https://youtube.com/playlist?list=PL64YVBcW...
    published: 17 Jun 2022
    Play in Full Screen
    1:11:51
    Ayumi Hamasaki -Rainbow-
    00:00 everlasting dream 01:33 we wish 06:44 real me 12:10 free&easy 17:09 heartplace 23:15...
    published: 07 Jul 2020
    Play in Full Screen

    Rainbow (2005 film)

    Rainbow (simplified Chinese: 我心飞翔; traditional Chinese: 我心飛翔; pinyin: Wǒ Xīn Fēi Xiáng; literally: "my heart is flying") is a 2005 Chinese film written and directed by Gao Xiaosong, starring Chen Daoming.

    Cast

  • Chen Daoming as Xu
  • Li Xiaolu as Rainbow
  • Ding Yongdai as Sheng
  • Zheng Jun as Yang
  • External links

  • Rainbow at the Internet Movie Database
  • Rainbow at AllMovie
  • Rainbow on the Chinese Movie Database (listed under the title Fly My Heart)
  • Rainbow on Sina.com
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    "In The Dark" - The Birthday Massacre - Official HD Stereo

    From the album "Pins and Needles". Directed by M. Falcore and Rodrigo Gudino Everything by The Birthday Massacre, Rue Morgue and friends. Filmed and edited in Toronto, Canada. June-Sept, 2010. Video Credits: http://www.youtube.com/watch?v=o-z0NUC2aNA To get a copy of "Pins and Needles" including a Digital Only Deluxe Edition featuring the video for "In The Dark", visit: http://www.metropolis-records.com/artist/the-birthday-massacre To listen to songs from the album, see pics and view our tour schedule...please go to: http://www.TheBirthdayMassacre.com http://www.facebook.com/TheBirthdayMassacre http://twitter.com/TBMassacre http://thebirthdaymassacre.tumblr.com/ http://plus.google.com/118300310960125961696/posts http://soundcloud.com/thebirthdaymassacre also...visit our creepy friends at http://www.rue-morgue.com/
    3:40
    "In The Dark" - The Birthday Massacre - Official HD Stereo
    From the album "Pins and Needles". Directed by M. Falcore and Rodrigo Gudino Everything b...
    published: 08 Sep 2010
    Play in Full Screen
    3:42
    Red Stars
    Provided to YouTube by Virgin Music Group Red Stars · The Birthday Massacre Walking With...
    published: 29 Jul 2015
    Play in Full Screen
    3:45
    The Birthday Massacre - One
    Director: Chris Nash Producer: Shannon Hanmer Cinematographer: Pierce Derks
    published: 25 Sep 2017
    Play in Full Screen
    4:20
    Pins And Needles
    Provided to YouTube by Virgin Music Group Pins And Needles · The Birthday Massacre Pins ...
    published: 29 Jul 2015
    Play in Full Screen
    4:37
    Looking Glass - The Birthday Massacre
    Looking Glass - The Birthday Massacre Primary filming Feb 10-11, 2008. Released April 1st...
    published: 02 Apr 2008
    Play in Full Screen
    3:40
    Happy Birthday
    Provided to YouTube by Virgin Music Group Happy Birthday · The Birthday Massacre Violet ...
    published: 29 Jul 2015
    Play in Full Screen
    5:06
    To Die For
    Provided to YouTube by Virgin Music Group To Die For · The Birthday Massacre Walking Wit...
    published: 29 Jul 2015
    Play in Full Screen
    5:51
    "Blue" The Birthday Massacre
    "Blue" - 2005 - The Birthday Massacre Dir.: Dan Ouellette [Sorry this has been uploade...
    published: 05 Mar 2008
    Play in Full Screen
    4:32
    Under Your Spell
    Provided to YouTube by Virgin Music Group Under Your Spell · The Birthday Massacre Under...
    published: 26 Jan 2018
    Play in Full Screen
    4:19
    Birthday Massacre - Superstition
    Excited to release our new video for 'Superstition', filmed in our rehearsal space. A grea...
    published: 24 Sep 2015
    Play in Full Screen
    '); } 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)); } }); }); }); // -->
    ×