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

Fly Away

Fly Away or Flyaway may refer to:

Music

Albums

  • Fly Away (Banaroo album), the 2007 last studio album by the German group Banaroo
  • Fly Away (Corrinne May album), the 2001 first album by Corrinne May
  • Fly Away (Paul Wright album), the 2003 debut album of Christian rapper Paul Wright
  • Fly Away (Voyage album), a 1978 by the disco group Voyage
  • Flyaway (Nutshell album), a 1997 second album by Nutshell
  • Fly Away (All Angels album), 2009, by All Angels
  • Songs

  • "Fly Away" (John Denver song), a 1975 song written and performed by John Denver from the album Windsong
  • "Fly Away" (Haddaway song), a 1995 song by Haddaway from the album The Drive
  • "Fly Away" (Lenny Kravitz song), a 1998 song by Lenny Kravitz from the album 5
  • "Fly Away" (DJ Company song)
  • "Fly Away" (Honey Ryder song), 2009
  • "Fly Away" (Seo In-guk song), 2013
  • "Fly Away", a 1981 song by Blackfoot from the album Marauder
  • "Fly Away", a 1987 song by Michael Jackson from the album Bad
  • "Fly Away", a 1999 song by Cecilia from the album Inner Harmony
  • Fly Away (Seo In-guk song)

    "Fly Away" is the debut Japanese single by South Korean singer Seo In-guk. It is set to release on April 24, 2013 on the Crown Records label.

    Single information

    The title track was chosen by Seo In-guk among 500 ballads presented to him by his Japanese agency, Irving. The single will be released into two different versions, Limited Edition and Regular Edition.

    Promotional video

    On March 21, 2013 the short version of the video was uploaded to Guk's official YouTube account. The full version was premiered through Music On! TV on March 27, 2013. The full version was made available through Guk's official YouTube on April 11, 2013.

    Track listing

    Charts

    Fly Away (Corrinne May album)

    Fly Away is the first album by Corrinne May, released in 2001 by Corrmay Gourmet Music. It was subsequently released by Yellow Music (M&M) in Singapore, released by the Major Chord label in Japan and by Forward Music in Taiwan and Hong Kong in 2005. The album was subsequently re-released by Playmusic and Warner Music in Singapore.

    The album features a song that Corrinne May co-wrote with iconic songwriters Carole King and Carole Bayer Sager, titled "If You Didn't Love Me".

    Track listing

  • "Fly Away"
  • "Same Side of the Moon"
  • "Something About You"
  • "Fall to Fly"
  • "If You Didn't Love Me"
  • "Stay on the Road"
  • "Mr. Beasley"
  • "All That I Need"
  • "Walk Away"
  • "Will You Remember Me"
  • "Journey"
  • "Mr. Beasley (unplugged)"
  • Podcasts:

    • TONES AND I - FLY AWAY (OFFICIAL VIDEO)

      New single 'Dreaming' out now: https://tonesandi.lnk.to/dreaming Stream/download 'Fly Away' from the debut album "Welcome to the Madhouse": https://TonesAndI.lnk.to/wttm Follow: https://www.tonesandi.com https://www.facebook.com/tonesandi https://www.instagram.com/tonesandi Contact Management Worldwide: Lemon Tree Music + Artists Only mgmt@tonesandi.com Production Company: Visible Studios @visiblestudios Directed by: Nick Kozakis @nickkozakis & Liam Kelly @liamkelly.x Executive & Post Producer: Timothy Whiting @tim.whiting Produced by: Fabiana Weiner @fabestelle Cinematographer: Carl Allison @carlallison Editors: Nick Kozakis & Liam Kelly 1st AC: Anthony Littlechild Focus Puller: Meg Perrott Production Designer: Callum Preston @callumpreston Art Asst: Mo Wyse Costume De...

      published: 13 Nov 2020
    • Lenny Kravitz - Fly Away (Official Music Video)

      Official video of Lenny Kravitz performing Fly Away from the album 5, REMASTERED IN HD! Vote for Lenny Kravitz to join the Rock & Roll Hall of Fame Class of 2024! Vote every day through April 26: vote.rockhall.com Lenny Kravtiz won a Grammy Award in 1999 for Best Male Rock Performance for "Fly Away." Follow Lenny Kravitz: Instagram: https://www.instagram.com/lennykravitz Facebook: https://www.facebook.com/lennykravitz X: https://twitter.com/lennykravitz Official Website: https://www.lennykravitz.com/ #LennyKravitz #FlyAway #Remastered #VEVO

      published: 03 Dec 2007
    • Tones And I - Fly Away (Lyrics)

      Tones And I - Fly Away (Lyrics) For more quality music subscribe here ➡ http://bit.ly/sub2thvbgd We're on Spotify ➡ https://spoti.fi/37r55sT 🔔 Turn on notifications to stay updated with new uploads! ✖ Stream / Download: https://TonesAndI.lnk.to/FlyAway ✖ Follow Tones And I: https://www.tonesandi.com https://facebook.com/tonesandi https://instagram.com/tonesandi 🎤 Lyrics: [Intro] I had a dream that someday I would just fly, fly away And I always knew I couldn't stay So I had a dream that I'd just fly away [Verse 1] I've been on my own for a minute Is it only me all day? Searching for the place to begin it Is it me? Is it you? Is it real? Standing on the line I was given People staring at me while I'm here No one seems to think that I fit in But I don't wanna be like them [Pre-Chorus...

      published: 13 Nov 2020
    • TheFatRat - Fly Away (Lyrics) feat. Anjulie

      🎵 Follow our Spotify playlists: http://bit.ly/7cloudsSpotify 🎧 TheFatRat - Fly Away (Lyrics) feat. Anjulie ⏬ Download / Stream: https://lnk.to/tfrflyaway 🔔 Turn on notifications to stay updated with new uploads! 👉 TheFatRat: https://facebook.com/thisisthefatrat https://twitter.com/ThisIsTheFatRat https://instagram.com/thefatratofficial https://soundcloud.com/thefatrat 👉Anjulie https://www.facebook.com/anjuliemusic/ https://twitter.com/Anjulie https://www.instagram.com/anjuliemusic/ ⭐️7clouds: https://open.spotify.com/user/7cloudsmusic https://instagram.com/7cloudsmusic https://facebook.com/7cloudsmusic https://twitter.com/7cloudsmusic ......... 🎤 Lyrics: TheFatRat - Fly Away feat. Anjulie [Intro] Come and fly away with me Come and fly away with me-e-e-e-e Come and fly away with me C...

      published: 05 Jan 2020
    • TheFatRat - Fly Away feat. Anjulie

      My UNITY 10th Anniversary Compilation is here: https://thefatrat.ffm.to/unity10th Listen to "Fly Away" here 👉 https://thefatrat.ffm.to/flyaway Help children in Manila get education: https://bit.ly/TheFatRatPCF Fly Away is copyright FREE on YouTube. Please credit the artists and link to this song. Subscribe for more FREE MUSIC here https://www.youtube.com/thefatrat 👉 Check out my SOCIALS, STREAMING and song STEMS here https://ffm.bio/thefatrat //////////////////////////// Follow @anjuliesmusic Art by @Jordan Grimmer //////////////////////////// Submit your demos to my label The Arcadium via LabelRadar Send your creations featuring TheFatRat's or The Arcadium's music to fanmail@the-arcadium.de #thefatrat #fatrat #anjulie #flyaway #music #gamingmusic #freemusic #copyrightfree #r...

      published: 02 Jun 2017
    • “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video ("Fly Away" Song by TheFatRat)

      Thanks for watching “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video (Song by TheFatRat) ____ CHECK OUT VERSION B: https://youtu.be/zV5FxwJKKdc ____ Rendered with Fox Renderfarm: https://www.foxrenderfarm.com/?utm_source=YT&utm_medium=ZAMination​ Support us on PATREON: https://www.patreon.com/zamination​ Join our DISCORD server: https://discord.gg/mW2bcjg​ Check out our Merch Store: https://teespring.com/stores/zamination%E2%80%8B ____ Check out the Behind the Scenes: https://www.youtube.com/watch?v=l3U3LAjvcpQ ____ TheFatRat: https://www.youtube.com/user/ThisIsTheFatRat Anjulie: https://www.youtube.com/user/anjuliesmusic ♫ Stream/Buy "Fly Away" here: https://lnk.to/flyawaythefatrat ____ 🎬 Video Credits: Directed by: Zachary Preciado Song by: TheFatRat Executive Produc...

      published: 06 Feb 2021
    • Lenny Kravitz - Fly Away (Official Video)

      Blue Electric Light out now: https://lennykravitz.lnk.to/BlueElectricLight The Official Music Video for "Fly Away" by Lenny Kravitz *Follow Lenny Kravitz on…* Instagram - http://instagram.com/lennykravitz Twitter - http://twitter.com/lennykravitz Facebook - http://facebook.com/lennykravitz Website - http://www.lennykravitz.com Spotify - https://open.spotify.com/artist/5gznATMVO85ZcLTkE9ULU7 Apple Music - http://itunes.apple.com/us/artist/lenny-kravitz/id160410 Amazon Music - https://music.amazon.de/artists/B001Q5EU6I/lenny-kravitz?marketplaceId=A1PA6795UKMFR9&musicTerritory=DE&ref=dm_sh_QK3Ky7ChRLxRyMSY6tw5KAqLF YouTube Music - https://music.youtube.com/channel/UCoBLQWTzuTgn34IrVIo4hpw?feature=shared Deezer - https://www.deezer.com/de/artist/189 #lennykravitz

      published: 26 Feb 2013
    • Fatboy SSE - Fly Away (Official Video)

      Listen to the single "Fly Away". Out now! Stream: https://music.empi.re/flyawayfatboy.oyd #FatboySSE #FlyAway #FatboyGang Official music video by Fatboy SSE - Fly Away © 2021 FatboyGang / EMPIRE

      published: 27 Apr 2021
    • Fly Away

      Provided to YouTube by JVCKENWOOD Victor Entertainment Corp. Fly Away · TeddyLoid Panty & Stocking with Garterbelt The Original Soundtrack ℗ FlyingDog, Inc. Released on: 2010-12-29 Auto-generated by YouTube.

      published: 07 Nov 2019
    TONES AND I - FLY AWAY (OFFICIAL VIDEO)
    3:05

    TONES AND I - FLY AWAY (OFFICIAL VIDEO)

    • Order:
    • Duration: 3:05
    • Uploaded Date: 13 Nov 2020
    • views: 38505700
    New single 'Dreaming' out now: https://tonesandi.lnk.to/dreaming Stream/download 'Fly Away' from the debut album "Welcome to the Madhouse": https://TonesAndI.lnk.to/wttm Follow: https://www.tonesandi.com https://www.facebook.com/tonesandi https://www.instagram.com/tonesandi Contact Management Worldwide: Lemon Tree Music + Artists Only mgmt@tonesandi.com Production Company: Visible Studios @visiblestudios Directed by: Nick Kozakis @nickkozakis & Liam Kelly @liamkelly.x Executive & Post Producer: Timothy Whiting @tim.whiting Produced by: Fabiana Weiner @fabestelle Cinematographer: Carl Allison @carlallison Editors: Nick Kozakis & Liam Kelly 1st AC: Anthony Littlechild Focus Puller: Meg Perrott Production Designer: Callum Preston @callumpreston Art Asst: Mo Wyse Costume Designer / Stylist: Eva Schelling @style_believa Wedding Dress Designer: Holly Butler 1st AD: Madeline French 2nd AD: Robert Fantozzi Sound Designer / Playback: John Servedio Gaffer: Branco Grabovac Best Boy: Scott Pope Grip: Sean McGlynn Lighting Asst.: Alexander Angliss-Wilson MUA: Danielle Ruth @wowfx_makeup MUA Asst: Gina Nomachi Jacquelene Tong Molly Lee Susan Hughes VFX Supervisor: Theo Touren Composite Artists: Vince Bufalino Theo Touren Rotoscope Artist: Tom Downie VFX Artist: Timothy Whiting Colourist: Timothy Whiting Unit Manager: Carlia Capozza Behind the Scenes: Luke Jeffs & Jesse Leaman Production Manager: Fabiana Weiner Production Asst: Olivia Altavilla Production Runners: Emily Seif Heshi Wijerathna Production Coordinator / Location Scout: Emily Munroe Risk Advisor: Trent Bekis CovidSafe Monitor: Olivia Altavilla Gear Hire: Creative Head Rentals Savage Film Services Catering: Locavore Catering Yum Catering by Elizabeth Andrews Two Boys One Beagle Coffee Shop Grilled Casting Director: Olivia Altavilla Starring: Rommel Daroya Fortuna Kebede Philip Eastment Ruby Vidor Vateresio Tuikaba Jacqui Whiting Ashleigh Stewart Carlia Capozza Choir Organiser: Alice Blake Choir: Ian Lee Judd Field Josh Gullo Stasia Lilomaiava Michaela Jayde Holly Clarkson Akosia Sabet Tristan Kellart Amy Kuruvilla Mareshah Lawton Nat Delahunty Randi Lilomaiave Abbie Thorpe Kurt Harbord Marietta Ouzas Extras: George Kozakis Chrissy Kozakis Eleni Modinos Julia Ponte Emily Seif Nicholas Peric Ronn Kurtz Vateresio Tuikaba Jack Katu Henry Katu Rye Dyson Stephanie George Robert Newbold Annabelle Newbold Ian Carpenter Ollie Reading Sunny S. Walia Catherine Stone Ernie Stone Stephen Clements Jacqueline Whiting Luke Jeffs Carlia Capozza Stunt Coordinators / Wirework: Showtech Australia Tiny Good Robyn Good Gareth Lieberman BTS Photographer: Anthony Littlechild BTS Videographer: Luke Jeffs BTS Director: Jesse Leaman Special Thanks: Jill Jiaquinta John Giaquinta Rod Micallef Rohan Robertson Amber Saunders Tappyleaks Tom David Tony Coombs Vince Clark Locations: Zonzo Estate Showtech Australia Shot on RED Monstro
    https://wn.com/Tones_And_I_Fly_Away_(Official_Video)
    Lenny Kravitz - Fly Away (Official Music Video)
    3:45

    Lenny Kravitz - Fly Away (Official Music Video)

    • Order:
    • Duration: 3:45
    • Uploaded Date: 03 Dec 2007
    • views: 134980219
    Official video of Lenny Kravitz performing Fly Away from the album 5, REMASTERED IN HD! Vote for Lenny Kravitz to join the Rock & Roll Hall of Fame Class of 2024! Vote every day through April 26: vote.rockhall.com Lenny Kravtiz won a Grammy Award in 1999 for Best Male Rock Performance for "Fly Away." Follow Lenny Kravitz: Instagram: https://www.instagram.com/lennykravitz Facebook: https://www.facebook.com/lennykravitz X: https://twitter.com/lennykravitz Official Website: https://www.lennykravitz.com/ #LennyKravitz #FlyAway #Remastered #VEVO
    https://wn.com/Lenny_Kravitz_Fly_Away_(Official_Music_Video)
    Tones And I - Fly Away (Lyrics)
    3:00

    Tones And I - Fly Away (Lyrics)

    • Order:
    • Duration: 3:00
    • Uploaded Date: 13 Nov 2020
    • views: 10614254
    Tones And I - Fly Away (Lyrics) For more quality music subscribe here ➡ http://bit.ly/sub2thvbgd We're on Spotify ➡ https://spoti.fi/37r55sT 🔔 Turn on notifications to stay updated with new uploads! ✖ Stream / Download: https://TonesAndI.lnk.to/FlyAway ✖ Follow Tones And I: https://www.tonesandi.com https://facebook.com/tonesandi https://instagram.com/tonesandi 🎤 Lyrics: [Intro] I had a dream that someday I would just fly, fly away And I always knew I couldn't stay So I had a dream that I'd just fly away [Verse 1] I've been on my own for a minute Is it only me all day? Searching for the place to begin it Is it me? Is it you? Is it real? Standing on the line I was given People staring at me while I'm here No one seems to think that I fit in But I don't wanna be like them [Pre-Chorus] No, 'cause I don't wanna be like them 'Cause I know that I, know that I [Chorus] I had a dream that someday I would just fly, fly away And I always knew I couldn't stay So I had a dream that I'd just fly away, away, oh (Fly away, fly away) Woah, woah, I'd fly away [Verse 2] No one know how low I was feeling Always get to reach for it all Knowing I was here for a reason But I was scared that if I a try, I'd fall So whеre do I go now? Then a minute I nеver thought it'd be like this Dreaming all my life and I did it But the grass is green and then it is [Chorus] 'Cause I had a dream that someday I would just fly, fly away And I always knew I couldn't stay So I had a dream that I'd just fly away, away, oh Woah, oh (Fly away, fly away) Oh, I'd fly away, woah, woah, oh (Fly away, fly away) I'd fly away [Bridge] 'Cause I had a dream that someday I would just fly, fly away And I always knew I couldn't stay So I had a dream that I'd just fly away, away, oh [Chorus] Woah, woah (Fly away, fly away Fly away, fly away) Woah, woah, woah (Fly away, fly away Fly away) I'd fly away THE VIBE GUIDE - Your guide to the latest music trends. ➡ http://instagram.com/thevibeguide ➡ http://snapchat.com/add/vibeguide ➡ http://thevibeguide.net ➡ http://facebook.com/thevibeguide ➡ http://soundcloud.com/thevibeguide ➡ http://twitter.com/thevibeguide Send your submissions: https://submit.thevibeguide.net #TonesAndI #FlyAway #Lyrics #Apple Recommended: Topic - Breaking Me (Lyrics) ft. A7S https://www.youtube.com/watch?v=_IWxwbyDIws
    https://wn.com/Tones_And_I_Fly_Away_(Lyrics)
    TheFatRat - Fly Away (Lyrics) feat. Anjulie
    3:12

    TheFatRat - Fly Away (Lyrics) feat. Anjulie

    • Order:
    • Duration: 3:12
    • Uploaded Date: 05 Jan 2020
    • views: 45744795
    🎵 Follow our Spotify playlists: http://bit.ly/7cloudsSpotify 🎧 TheFatRat - Fly Away (Lyrics) feat. Anjulie ⏬ Download / Stream: https://lnk.to/tfrflyaway 🔔 Turn on notifications to stay updated with new uploads! 👉 TheFatRat: https://facebook.com/thisisthefatrat https://twitter.com/ThisIsTheFatRat https://instagram.com/thefatratofficial https://soundcloud.com/thefatrat 👉Anjulie https://www.facebook.com/anjuliemusic/ https://twitter.com/Anjulie https://www.instagram.com/anjuliemusic/ ⭐️7clouds: https://open.spotify.com/user/7cloudsmusic https://instagram.com/7cloudsmusic https://facebook.com/7cloudsmusic https://twitter.com/7cloudsmusic ......... 🎤 Lyrics: TheFatRat - Fly Away feat. Anjulie [Intro] Come and fly away with me Come and fly away with me-e-e-e-e Come and fly away with me Co-co-come and fly away with me-e-e-e-e-e-e Come and fly away with me Come and fly away with me-e-e-e-e Come and fly away with me Co-co-come and fly away with me-e-e-e-e-e-e [Build] Don’t you be afraid Everything will change You and I Jumping off the edge They say dreamers never die So, come and fly Come and fly Come and fly away with me [Chorus] We’re rising, we’re falling We’ll make it through We’re climbing, we’re soaring A thousand views We’re rising, we’re falling We’ll make it through We’re climbing, we’re soaring A thousand views [Verse] Somewhere by the emerald sea Where the moon and water meet Somewhere close to harmony When the world is sound asleep Something's gonna bring a change Journeys we are meant to take Something at the edge of space Calling us to fly away [Build] Don’t you be afraid Everything will change You and I Jumping off the edge They say dreamers never die So, come and fly Come and fly Come and fly away with me [Chorus] We’re rising, we’re falling We’ll make it through We’re climbing, we’re soaring A thousand views We’re rising, we’re falling We’ll make it through We’re climbing, we’re soaring A thousand views [Break] Come and fly away Come and Come and fly away Come and fly away with me Come and fly away Come and Come and fly away Come and fly away with me [Outro] Something's gonna bring a change Journeys we are meant to take Something at the edge of space Calling us to fly away ......... 📷 Wallpaper: https://unsplash.com/ ......... 📧Contact: contact@7clouds.org ......... 💌 Submit music: https://7clouds.edmdistrict.com ......... #TheFatRat #FlyAway #Lyrics #Anjulie
    https://wn.com/Thefatrat_Fly_Away_(Lyrics)_Feat._Anjulie
    TheFatRat - Fly Away feat. Anjulie
    3:15

    TheFatRat - Fly Away feat. Anjulie

    • Order:
    • Duration: 3:15
    • Uploaded Date: 02 Jun 2017
    • views: 218533681
    My UNITY 10th Anniversary Compilation is here: https://thefatrat.ffm.to/unity10th Listen to "Fly Away" here 👉 https://thefatrat.ffm.to/flyaway Help children in Manila get education: https://bit.ly/TheFatRatPCF Fly Away is copyright FREE on YouTube. Please credit the artists and link to this song. Subscribe for more FREE MUSIC here https://www.youtube.com/thefatrat 👉 Check out my SOCIALS, STREAMING and song STEMS here https://ffm.bio/thefatrat //////////////////////////// Follow @anjuliesmusic Art by @Jordan Grimmer //////////////////////////// Submit your demos to my label The Arcadium via LabelRadar Send your creations featuring TheFatRat's or The Arcadium's music to fanmail@the-arcadium.de #thefatrat #fatrat #anjulie #flyaway #music #gamingmusic #freemusic #copyrightfree #royaltyfree #futurebass #electrohouse #edm #dubstep #trap #bass #Orchestra #GlitchHop #Soundtrack #EpicMusic #NoCopyrightMusic #Marshmello #AlanWalker #K-391 GamingMusic | Copyright Free Music | FreeMusic | TheFatRat | Orchestra | Cinematic | Glitch Hop | Soundtrack | Marshmello | Alan Walker | K-391
    https://wn.com/Thefatrat_Fly_Away_Feat._Anjulie
    “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video ("Fly Away" Song by TheFatRat)
    4:19

    “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video ("Fly Away" Song by TheFatRat)

    • Order:
    • Duration: 4:19
    • Uploaded Date: 06 Feb 2021
    • views: 77080015
    Thanks for watching “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video (Song by TheFatRat) ____ CHECK OUT VERSION B: https://youtu.be/zV5FxwJKKdc ____ Rendered with Fox Renderfarm: https://www.foxrenderfarm.com/?utm_source=YT&utm_medium=ZAMination​ Support us on PATREON: https://www.patreon.com/zamination​ Join our DISCORD server: https://discord.gg/mW2bcjg​ Check out our Merch Store: https://teespring.com/stores/zamination%E2%80%8B ____ Check out the Behind the Scenes: https://www.youtube.com/watch?v=l3U3LAjvcpQ ____ TheFatRat: https://www.youtube.com/user/ThisIsTheFatRat Anjulie: https://www.youtube.com/user/anjuliesmusic ♫ Stream/Buy "Fly Away" here: https://lnk.to/flyawaythefatrat ____ 🎬 Video Credits: Directed by: Zachary Preciado Song by: TheFatRat Executive Producer: Zach Belanger Layout: Zachary Preciado Animation: Zachary Preciado, Micah Preciado, Alex Ulrick, Arif Karaarslan, CloudX, Gabriel Carmo, GraphicationMaker, Jose Molina, Jun Liang Yap, Thomas Animations Assets: Zachary Preciado, Micah Preciado, James Pelter, Phyre, PixelFrosty, Seth Jones, Team Visionary Rigs: PixelFrosty, Seth Belanger Final Layout: Zachary Preciado, Micah Preciado, Zach Belanger Lighting: Micah Preciado, Seth Belanger, Zachary Preciado Dynamics/VFX: Evan Robinson Compositing: Seth Belanger Editing: Zachary Preciado Produced at EnchantedMob Studios in St. Louis, MO. ZAMination Twitter: https://twitter.com/zaminationyt​ Micah’s Twitter: https://twitter.com/ZAMinationYT​ Zachary’s Twitter: https://twitter.com/ZaminationZ​ Instagram: https://www.instagram.com/zamination/​ Comment "🐉" If you've read this far!
    https://wn.com/“Alex_And_The_Dragon”_Version_A_Minecraft_Animation_Music_Video_(_Fly_Away_Song_By_Thefatrat)
    Lenny Kravitz - Fly Away (Official Video)
    3:43

    Lenny Kravitz - Fly Away (Official Video)

    • Order:
    • Duration: 3:43
    • Uploaded Date: 26 Feb 2013
    • views: 12393341
    Blue Electric Light out now: https://lennykravitz.lnk.to/BlueElectricLight The Official Music Video for "Fly Away" by Lenny Kravitz *Follow Lenny Kravitz on…* Instagram - http://instagram.com/lennykravitz Twitter - http://twitter.com/lennykravitz Facebook - http://facebook.com/lennykravitz Website - http://www.lennykravitz.com Spotify - https://open.spotify.com/artist/5gznATMVO85ZcLTkE9ULU7 Apple Music - http://itunes.apple.com/us/artist/lenny-kravitz/id160410 Amazon Music - https://music.amazon.de/artists/B001Q5EU6I/lenny-kravitz?marketplaceId=A1PA6795UKMFR9&musicTerritory=DE&ref=dm_sh_QK3Ky7ChRLxRyMSY6tw5KAqLF YouTube Music - https://music.youtube.com/channel/UCoBLQWTzuTgn34IrVIo4hpw?feature=shared Deezer - https://www.deezer.com/de/artist/189 #lennykravitz
    https://wn.com/Lenny_Kravitz_Fly_Away_(Official_Video)
    Fatboy SSE - Fly Away (Official Video)
    2:28

    Fatboy SSE - Fly Away (Official Video)

    • Order:
    • Duration: 2:28
    • Uploaded Date: 27 Apr 2021
    • views: 1783165
    Listen to the single "Fly Away". Out now! Stream: https://music.empi.re/flyawayfatboy.oyd #FatboySSE #FlyAway #FatboyGang Official music video by Fatboy SSE - Fly Away © 2021 FatboyGang / EMPIRE
    https://wn.com/Fatboy_Sse_Fly_Away_(Official_Video)
    Fly Away
    4:24

    Fly Away

    • Order:
    • Duration: 4:24
    • Uploaded Date: 07 Nov 2019
    • views: 10397735
    Provided to YouTube by JVCKENWOOD Victor Entertainment Corp. Fly Away · TeddyLoid Panty & Stocking with Garterbelt The Original Soundtrack ℗ FlyingDog, Inc. Released on: 2010-12-29 Auto-generated by YouTube.
    https://wn.com/Fly_Away
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • TONES AND I - FLY AWAY (OFFICIAL VIDEO)
      3:05
      TONES AND I - FLY AWAY (OFFICIAL VIDEO)remove from playlist
    • Lenny Kravitz - Fly Away (Official Music Video)
      3:45
      Lenny Kravitz - Fly Away (Official Music Video)remove from playlist
    • Tones And I - Fly Away (Lyrics)
      3:00
      Tones And I - Fly Away (Lyrics)remove from playlist
    • TheFatRat - Fly Away (Lyrics) feat. Anjulie
      3:12
      TheFatRat - Fly Away (Lyrics) feat. Anjulieremove from playlist
    • TheFatRat - Fly Away feat. Anjulie
      3:15
      TheFatRat - Fly Away feat. Anjulieremove from playlist
    • “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video (
      4:19
      “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video ("Fly Away" Song by TheFatRat)remove from playlist
    • Lenny Kravitz - Fly Away (Official Video)
      3:43
      Lenny Kravitz - Fly Away (Official Video)remove from playlist
    • Fatboy SSE - Fly Away (Official Video)
      2:28
      Fatboy SSE - Fly Away (Official Video)remove from playlist
    • Fly Away
      4:24
      Fly Awayremove from playlist
    PLAYLIST TIME: 0:00 / 31:11

    TONES AND I - FLY AWAY (OFFICIAL VIDEO)

    New single 'Dreaming' out now: https://tonesandi.lnk.to/dreaming Stream/download 'Fly Away' from the debut album "Welcome to the Madhouse": https://TonesAndI.lnk.to/wttm Follow: https://www.tonesandi.com https://www.facebook.com/tonesandi https://www.instagram.com/tonesandi Contact Management Worldwide: Lemon Tree Music + Artists Only mgmt@tonesandi.com Production Company: Visible Studios @visiblestudios Directed by: Nick Kozakis @nickkozakis & Liam Kelly @liamkelly.x Executive & Post Producer: Timothy Whiting @tim.whiting Produced by: Fabiana Weiner @fabestelle Cinematographer: Carl Allison @carlallison Editors: Nick Kozakis & Liam Kelly 1st AC: Anthony Littlechild Focus Puller: Meg Perrott Production Designer: Callum Preston @callumpreston Art Asst: Mo Wyse Costume Designer / Stylist: Eva Schelling @style_believa Wedding Dress Designer: Holly Butler 1st AD: Madeline French 2nd AD: Robert Fantozzi Sound Designer / Playback: John Servedio Gaffer: Branco Grabovac Best Boy: Scott Pope Grip: Sean McGlynn Lighting Asst.: Alexander Angliss-Wilson MUA: Danielle Ruth @wowfx_makeup MUA Asst: Gina Nomachi Jacquelene Tong Molly Lee Susan Hughes VFX Supervisor: Theo Touren Composite Artists: Vince Bufalino Theo Touren Rotoscope Artist: Tom Downie VFX Artist: Timothy Whiting Colourist: Timothy Whiting Unit Manager: Carlia Capozza Behind the Scenes: Luke Jeffs & Jesse Leaman Production Manager: Fabiana Weiner Production Asst: Olivia Altavilla Production Runners: Emily Seif Heshi Wijerathna Production Coordinator / Location Scout: Emily Munroe Risk Advisor: Trent Bekis CovidSafe Monitor: Olivia Altavilla Gear Hire: Creative Head Rentals Savage Film Services Catering: Locavore Catering Yum Catering by Elizabeth Andrews Two Boys One Beagle Coffee Shop Grilled Casting Director: Olivia Altavilla Starring: Rommel Daroya Fortuna Kebede Philip Eastment Ruby Vidor Vateresio Tuikaba Jacqui Whiting Ashleigh Stewart Carlia Capozza Choir Organiser: Alice Blake Choir: Ian Lee Judd Field Josh Gullo Stasia Lilomaiava Michaela Jayde Holly Clarkson Akosia Sabet Tristan Kellart Amy Kuruvilla Mareshah Lawton Nat Delahunty Randi Lilomaiave Abbie Thorpe Kurt Harbord Marietta Ouzas Extras: George Kozakis Chrissy Kozakis Eleni Modinos Julia Ponte Emily Seif Nicholas Peric Ronn Kurtz Vateresio Tuikaba Jack Katu Henry Katu Rye Dyson Stephanie George Robert Newbold Annabelle Newbold Ian Carpenter Ollie Reading Sunny S. Walia Catherine Stone Ernie Stone Stephen Clements Jacqueline Whiting Luke Jeffs Carlia Capozza Stunt Coordinators / Wirework: Showtech Australia Tiny Good Robyn Good Gareth Lieberman BTS Photographer: Anthony Littlechild BTS Videographer: Luke Jeffs BTS Director: Jesse Leaman Special Thanks: Jill Jiaquinta John Giaquinta Rod Micallef Rohan Robertson Amber Saunders Tappyleaks Tom David Tony Coombs Vince Clark Locations: Zonzo Estate Showtech Australia Shot on RED Monstro
    3:05
    TONES AND I - FLY AWAY (OFFICIAL VIDEO)
    New single 'Dreaming' out now: https://tonesandi.lnk.to/dreaming Stream/download 'Fly Awa...
    published: 13 Nov 2020
    Play in Full Screen
    3:45
    Lenny Kravitz - Fly Away (Official Music Video)
    Official video of Lenny Kravitz performing Fly Away from the album 5, REMASTERED IN HD! V...
    published: 03 Dec 2007
    Play in Full Screen
    3:00
    Tones And I - Fly Away (Lyrics)
    Tones And I - Fly Away (Lyrics) For more quality music subscribe here ➡ http://bit.ly/su...
    published: 13 Nov 2020
    Play in Full Screen
    3:12
    TheFatRat - Fly Away (Lyrics) feat. Anjulie
    🎵 Follow our Spotify playlists: http://bit.ly/7cloudsSpotify 🎧 TheFatRat - Fly Away (Lyric...
    published: 05 Jan 2020
    Play in Full Screen
    3:15
    TheFatRat - Fly Away feat. Anjulie
    My UNITY 10th Anniversary Compilation is here: https://thefatrat.ffm.to/unity10th Listen ...
    published: 02 Jun 2017
    Play in Full Screen
    4:19
    “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video ("Fly Away" Song by TheFatRat)
    Thanks for watching “Alex and the Dragon” [VERSION A] Minecraft Animation Music Video (Son...
    published: 06 Feb 2021
    Play in Full Screen
    3:43
    Lenny Kravitz - Fly Away (Official Video)
    Blue Electric Light out now: https://lennykravitz.lnk.to/BlueElectricLight The Official ...
    published: 26 Feb 2013
    Play in Full Screen
    2:28
    Fatboy SSE - Fly Away (Official Video)
    Listen to the single "Fly Away". Out now! Stream: https://music.empi.re/flyawayfatboy.oyd ...
    published: 27 Apr 2021
    Play in Full Screen
    4:24
    Fly Away
    Provided to YouTube by JVCKENWOOD Victor Entertainment Corp. Fly Away · TeddyLoid Panty ...
    published: 07 Nov 2019
    Play in Full Screen

    Fly Away

    Fly Away or Flyaway may refer to:

    Music

    Albums

  • Fly Away (Banaroo album), the 2007 last studio album by the German group Banaroo
  • Fly Away (Corrinne May album), the 2001 first album by Corrinne May
  • Fly Away (Paul Wright album), the 2003 debut album of Christian rapper Paul Wright
  • Fly Away (Voyage album), a 1978 by the disco group Voyage
  • Flyaway (Nutshell album), a 1997 second album by Nutshell
  • Fly Away (All Angels album), 2009, by All Angels
  • Songs

  • "Fly Away" (John Denver song), a 1975 song written and performed by John Denver from the album Windsong
  • "Fly Away" (Haddaway song), a 1995 song by Haddaway from the album The Drive
  • "Fly Away" (Lenny Kravitz song), a 1998 song by Lenny Kravitz from the album 5
  • "Fly Away" (DJ Company song)
  • "Fly Away" (Honey Ryder song), 2009
  • "Fly Away" (Seo In-guk song), 2013
  • "Fly Away", a 1981 song by Blackfoot from the album Marauder
  • "Fly Away", a 1987 song by Michael Jackson from the album Bad
  • "Fly Away", a 1999 song by Cecilia from the album Inner Harmony
  • '); } 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)); } }); }); }); // -->
    ×