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

Taxonomic rank

In biological classification, rank is the relative level of a group of organisms (a taxon) in a taxonomic hierarchy. Examples of taxonomic ranks are species, genus, family, class, kingdom, etc.

A given rank subsumes under it less general categories, that is, more specific descriptions of life forms. Above it, each rank is classified within more general categories of organisms and groups of organisms related to each other through inheritance of traits or features from common ancestors. The rank of any species and the description of its genus is basic; which means that to identify a particular organism, it is usually not necessary to specify ranks other than these first two.

Consider a particular species, the red fox Vulpes vulpes: its next rank, the genus Vulpes, comprises all the 'true foxes'. Their closest relatives are in the immediately higher rank, the family Canidae, which includes dogs, wolves, jackals, all foxes, and other caniforms; the next higher rank, the order Carnivora, includes feliforms and caniforms (lions, tigers, bears, hyenas, wolverines, and all those mentioned above), plus other carnivorous mammals. As one group of the class Mammalia, all of the above are classified among those with backbones in the Chordata phylum rank, and with them among all the animals in the Animalia kingdom rank. Finally, all of the above will find their earliest relatives somewhere in their domain rank Eukarya.

Séries+

Séries+ is a Canadian French language Category A specialty channel devoted to scripted comedy and dramatic programming. The channel is owned by Corus Entertainment.

History

On May 21, 1999, Alliance Atlantis Communications (AAC) and Premier Choix Networks (a division of Astral Media) were granted approval by the Canadian Radio-television and Telecommunications Commission (CRTC) to launch a national French-language specialty television service called Canal Fiction, described as a "service devoted to drama."

The channel was launched on January 31, 2000 as Séries+ at 6pm EST.

On January 18, 2008, a joint venture between Canwest and Goldman Sachs Capital Partners known as CW Media purchased AAC and gained AAC's interest in Séries+.

On October 27, 2010, Shaw Communications completed its acquisition of Canwest and Goldman Sachs' interest in CW Media, giving it control of CW Media's 50% interest in Séries+.

On March 4, 2013, Corus Entertainment announced that it would acquire Astral Media's stakes in Séries+ and Historia, as well as several other properties, under separate transactions with the two companies. The purchase was tied to Bell Media's pending takeover of Astral Media; an earlier proposal had been rejected by the CRTC in October 2012 due to concerns surrounding its total market share following the merger, but was restructured under the condition that the companies divest certain media properties. In a separate deal, Corus also acquired Shaw's interests in Séries+ and Historia, giving it full ownership. The deals were approved by the CRTC on December 20, 2013 and Corus officially become the full owner of the channel on January 1, 2014.

203 series

The 203 series (203系) is an electric multiple unit (EMU) train type operated in Japan between 1982 and 2011 by Japanese National Railways (JNR) and later by East Japan Railway Company (JR East), and currently operated by KRL Jabodetabek in Indonesia and Philippine National Railways (PNR) in the Philippines.

Operations

The 203 series sets were on through services between the Joban Line and Tokyo Metro Chiyoda Line until they were replaced by E233-2000 series EMUs, and finally withdrawn from services in Japan in September 2011.

Formation

The sets were formed as follows.

Cars 3, 6, and 9 were each fitted with one PS21 pantograph.

Interior

  • Interior view, September 2007

  • Interior view, September 2007

  • Priority seating, November 2010

  • Priority seating, November 2010

    History

    Withdrawal

    The trains were gradually replaced by new E233-2000 series EMUs, and the last set ran in revenue service on 26 September 2011.

    Overseas operations

    Indonesia

    Five former 203 series sets have been sent to KRL Jabodetabek (KCJ) in Jakarta, Indonesia. All trains are in operation in the Jabodetabek area with 8 cars per set, due to the short platforms at most stations in Indonesia.

    List of 90210 episodes

    The following is an episode list of The CW series, 90210 — a spin-off to Beverly Hills, 90210, and the fourth series in the Beverly Hills, 90210 continuity. The show premiered September 2, 2008 in the U.S. on The CW and in Canada on Global. 90210 is available on the United States iTunes Store in HD and SD quality for purchase.

    A total of 114 episodes of 90210 were aired over five seasons.

    Series overview

    Episodes

    Season 1 (2008–09)

    Season 2 (2009–10)

    Season 3 (2010–11)

    Season 4 (2011–12)

    Season 5 (2012–13)

    Specials

    A retrospective of the entire series titled "90210 4ever" aired on May 13, 2013, before the series finale.

    References

    External links

    List of 90210 episodes at the Internet Movie Database

    SMALL

    SMALL, Small Machine Algol Like Language, is a programming language developed by Dr. Nevil Brownlee of Auckland University.

    History

    The aim of the language was to enable people to write ALGOL-like code that ran on a small machine. It also included the string type for easier text manipulation.

    SMALL was used extensively from about 1980 to 1985 at Auckland University as a programming teaching aid, and for some internal projects. Originally written to run on a Burroughs Corporation B6700 Main frame in Fortran IV, subsequently rewritten in SMALL and ported to a DEC PDP-10 Architecture (on the Operating System TOPS-10) and IBM S360 Architecture (on the Operating System VM/CMS).

    About 1985, SMALL had some object-oriented features added to handle structures (that were missing from the early language), and to formalise file manipulation operations.

    See also

  • ALGOL
  • Lua (programming language)
  • Squirrel (programming language)
  • References

  • Nevil Brownlee
  • Creatures (Elf Power album)

    Creatures is the fifth full-length album by indie rock group Elf Power. It was released in 2002 on spinART Records.

    Track listing

    All songs written by Andrew Rieger, except for where noted.

  • "Let the Serpent Sleep"
  • "Everlasting Scream"
  • "The Creature"
  • "Palace of the Flames"
  • "The Modern Mind"
  • "Visions Of The Sea"
  • "Things That Should Not Be"
  • "Three Seeds" (Rieger, William Cullen Hart)
  • "The Haze"
  • "Unseen Hand"
  • "The Creature Part II"
  • References


    Creatures (company)

    Creatures Inc. (株式会社クリーチャーズ Kabushiki-gaisha Kurīchāzu) is an affiliate of Nintendo and a Japanese video game development company. It was founded by Tsunekazu Ishihara in November 1995, as a successor to Shigesato Itoi's company Ape Inc. It is well known for producing Pokémon card games and toys. Its current President is Hirokazu Tanaka. The company has its headquarters on the second floor of the Gobancho KU Building (五番町KUビル Gobanchō KU Biru) in Chiyoda, Tokyo, in proximity to the Japan Rail Ichigaya Station.

    History

    Ape Inc. was founded in March 1989 and Shigesato Itoi became its chief executive officer. Nintendo president Hiroshi Yamauchi had wanted to support new talent in game design. Liking Itoi's work, he proposed the idea of the company to Itoi and invested in it. Ape's staff included Tsunekazu Ishihara, who later became the Pokémon Company's CEO, and Ashura Benimaru Itoh, a renowned illustrator. They began work on Mother, which released in July. Its music was composed by Hip Tanaka, who later became the second CEO of Creatures. The team continued with work on Mother 2. When the project began to falter, Satoru Iwata of HAL Laboratories was brought in to help the project. The game was released in August 1994 and the Ape team dismantled.

    Podcasts:

    • The Very Small Creatures Full Episodes Series 1 Compilation

      🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 Five Very Small Creatures with BIG personalities! A brand new animated series following the adventures of five curious little friends who have lots of fun exploring a child’s play area when no one’s around. Through play and discovery, Pink, Green, Yellow, Blue and Orange learn about themselves, each other and the world around them. Set on the floor of a child’s play area, full of bright colours and varied textures, there are lots of toys and other well-loved objects left lying around, creating opportunities for The Very Small Creatures to explore the intriguing objects, discovering how they move, feel and work. 💗Pink is the natural leader of the group, a r...

      published: 14 Jul 2023
    • 💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2

      🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blu...

      published: 09 Apr 2024
    • Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodes

      🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 Five Very Small Creatures with BIG personalities! A brand new animated series following the adventures of five curious little friends who have lots of fun exploring a child’s play area when no one’s around. Through play and discovery, Pink, Green, Yellow, Blue and Orange learn about themselves, each other and the world around them. Set on the floor of a child’s play area, full of bright colours and varied textures, there are lots of toys and other well-loved objects left lying around, creating opportunities for The Very Small Creatures to explore the intriguing objects, discovering how they move, feel and work. 💗Pink is the natural leader of the group, a r...

      published: 05 Jul 2023
    • 🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!

      🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blu...

      published: 05 Mar 2024
    • Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodes

      👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids

      published: 23 Nov 2023
    • 🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2

      🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blu...

      published: 02 Apr 2024
    • The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!

      👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids

      published: 28 Nov 2023
    • 🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2

      👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids

      published: 18 May 2024
    • Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodes

      👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids

      published: 14 Nov 2023
    • Watch The Very Small Creatures Series 2 on Sky Kids and Now!

      Series two of The Very Small Creatures has launched on Sky Kids and NOW! Aardman and Sky Kids have launched a second series of The Very Small Creatures. The spin-off from Aardman’s hugely popular Morph series, The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. Watch series 1 here: https://www.youtube.com/playlist?list=PLk4EUW9gr6I-WGYMa209byyeJ7OWuK3FA Instagram: https://www.instagram.com/aardmananimations/ Facebook: https://www.facebook.com/aardman/ Website: https://www.aardman.com/

      published: 17 Jul 2023
    developed with YouTube
    The Very Small Creatures Full Episodes Series 1 Compilation
    57:27

    The Very Small Creatures Full Episodes Series 1 Compilation

    • Order:
    • Duration: 57:27
    • Uploaded Date: 14 Jul 2023
    • views: 4844941
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 Five Very Small Creatures with BIG personalities! A brand new animated series following the adventures of five curious little friends who have lots of fun exploring a child’s play area when no one’s around. Through play and discovery, Pink, Green, Yellow, Blue and Orange learn about themselves, each other and the world around them. Set on the floor of a child’s play area, full of bright colours and varied textures, there are lots of toys and other well-loved objects left lying around, creating opportunities for The Very Small Creatures to explore the intriguing objects, discovering how they move, feel and work. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    https://wn.com/The_Very_Small_Creatures_Full_Episodes_Series_1_Compilation
    💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2
    54:44

    💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2

    • Order:
    • Duration: 54:44
    • Uploaded Date: 09 Apr 2024
    • views: 3462134
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    https://wn.com/💚_1_Hour_Full_Season_Compilation_🧡_The_Very_Small_Creatures_S2
    Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodes
    8:27

    Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodes

    • Order:
    • Duration: 8:27
    • Uploaded Date: 05 Jul 2023
    • views: 1486721
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 Five Very Small Creatures with BIG personalities! A brand new animated series following the adventures of five curious little friends who have lots of fun exploring a child’s play area when no one’s around. Through play and discovery, Pink, Green, Yellow, Blue and Orange learn about themselves, each other and the world around them. Set on the floor of a child’s play area, full of bright colours and varied textures, there are lots of toys and other well-loved objects left lying around, creating opportunities for The Very Small Creatures to explore the intriguing objects, discovering how they move, feel and work. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    https://wn.com/Sorted_Hiccups_Moo_|_The_Very_Small_Creatures_|_3X_Full_Episodes
    🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!
    11:12

    🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!

    • Order:
    • Duration: 11:12
    • Uploaded Date: 05 Mar 2024
    • views: 1963417
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    https://wn.com/🍊🍋_Full_Episodes_1_4_🧡_The_Very_Small_Creatures_S2_🔔_Now_On_Timmy_Friends
    Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodes
    8:31

    Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodes

    • Order:
    • Duration: 8:31
    • Uploaded Date: 23 Nov 2023
    • views: 180678
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids
    https://wn.com/Autumn_Leaves_Funny_Mirrors_|_The_Very_Small_Creatures_|_Full_Episodes
    🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2
    11:13

    🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2

    • Order:
    • Duration: 11:13
    • Uploaded Date: 02 Apr 2024
    • views: 783477
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    https://wn.com/🚀_Full_Episodes_17_20_🧡_The_Very_Small_Creatures_S2
    The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!
    57:27

    The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!

    • Order:
    • Duration: 57:27
    • Uploaded Date: 28 Nov 2023
    • views: 3379758
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids
    https://wn.com/The_Very_Small_Creatures_Full_Episodes_Series_1_Compilation_All_Episodes
    🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2
    54:44

    🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2

    • Order:
    • Duration: 54:44
    • Uploaded Date: 18 May 2024
    • views: 2161598
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids
    https://wn.com/🍊🍋_1_Hour_|_Full_Episodes_🧡_The_Very_Small_Creatures_S2
    Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodes
    8:27

    Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodes

    • Order:
    • Duration: 8:27
    • Uploaded Date: 14 Nov 2023
    • views: 241359
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's YouTube channel: https://aard.mn/2HwDspm Follow Morph: Instagram: https://www.instagram.com/amazingmorph/ Facebook: http://www.facebook.com/amazingmorph Twitter: http://www.twitter.com/amazingmorph #Morph #EpicMorph #CartoonsForKids
    https://wn.com/Special_Ball_Noisy_Sticky_|_The_Very_Small_Creatures_|_Full_Episodes
    Watch The Very Small Creatures Series 2 on Sky Kids and Now!
    0:49

    Watch The Very Small Creatures Series 2 on Sky Kids and Now!

    • Order:
    • Duration: 0:49
    • Uploaded Date: 17 Jul 2023
    • views: 205964
    Series two of The Very Small Creatures has launched on Sky Kids and NOW! Aardman and Sky Kids have launched a second series of The Very Small Creatures. The spin-off from Aardman’s hugely popular Morph series, The Very Small Creatures follows the adventures of five, toddler-like clay creatures who explore a child’s playroom when no one is around. Through interacting with objects they find, the creatures learn about their physical world, themselves and each other. Watch series 1 here: https://www.youtube.com/playlist?list=PLk4EUW9gr6I-WGYMa209byyeJ7OWuK3FA Instagram: https://www.instagram.com/aardmananimations/ Facebook: https://www.facebook.com/aardman/ Website: https://www.aardman.com/
    https://wn.com/Watch_The_Very_Small_Creatures_Series_2_On_Sky_Kids_And_Now
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Very Small Creatures Full Episodes Series 1 Compilation
      57:27
      The Very Small Creatures Full Episodes Series 1 Compilationremove from playlist
    • 💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2
      54:44
      💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2remove from playlist
    • Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodes
      8:27
      Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodesremove from playlist
    • 🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!
      11:12
      🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!remove from playlist
    • Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodes
      8:31
      Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodesremove from playlist
    • 🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2
      11:13
      🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2remove from playlist
    • The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!
      57:27
      The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!remove from playlist
    • 🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2
      54:44
      🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2remove from playlist
    • Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodes
      8:27
      Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodesremove from playlist
    • Watch The Very Small Creatures Series 2 on Sky Kids and Now!
      0:49
      Watch The Very Small Creatures Series 2 on Sky Kids and Now!remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Very Small Creatures Full Episodes Series 1 Compilation

    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more videos: https://aard.mn/VSCFullEps 🥰💖🥰🧡🥰💚🥰💙🥰💛 Five Very Small Creatures with BIG personalities! A brand new animated series following the adventures of five curious little friends who have lots of fun exploring a child’s play area when no one’s around. Through play and discovery, Pink, Green, Yellow, Blue and Orange learn about themselves, each other and the world around them. Set on the floor of a child’s play area, full of bright colours and varied textures, there are lots of toys and other well-loved objects left lying around, creating opportunities for The Very Small Creatures to explore the intriguing objects, discovering how they move, feel and work. 💗Pink is the natural leader of the group, a resilient creature with buckets of confidence. You’ll often find Pink trying things first, no matter how daring it may appear to the other Very Small Creatures. 🧡Orange is the most sociable of the bunch and enjoys spending time with the other four Very Small Creatures. Orange is a little accident prone and clumsy at times so you’ll often find Pink, Green, Blue and Yellow acting quickly to help Orange feel better. 💚Green is the more impulsive and excited Very Small Creature with a brilliant optimistic outlook on life. Green is brave and very curious and you’ll often find they are the first to join in with any activity. 💙Blue is the more reserved of the group, who can be a little shy and nervous. Whilst they are very creative and have a curious nature, they often need encouragement from friends to try new things. Blue always ends up joining in the play and having fun with the other Very Small Creatures gaining bravery and confidence along the way. 💛Yellow is a very calming influence on the group and cares deeply for the other four Very Small Creatures. They are a critical thinker and take time to assess a situation before acting, but this doesn’t stop them from joining in the fun. 🔎🔎🔎🔎🔎🔎🔎🔎 https://amazingmorph.com/very-small-creatures/ #VerySmallCreatures #Morph #TimmyandFriends
    57:27
    The Very Small Creatures Full Episodes Series 1 Compilation
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more vide...
    published: 14 Jul 2023
    Play in Full Screen
    54:44
    💚 1 HOUR Full Season Compilation 🧡 The Very Small Creatures S2
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more vide...
    published: 09 Apr 2024
    Play in Full Screen
    8:27
    Sorted / Hiccups / Moo | The Very Small Creatures | 3x full episodes
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more vide...
    published: 05 Jul 2023
    Play in Full Screen
    11:12
    🍊🍋 Full Episodes 1-4 🧡 The Very Small Creatures S2 🔔 NOW ON TIMMY & FRIENDS!
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more vide...
    published: 05 Mar 2024
    Play in Full Screen
    8:31
    Autumn Leaves / Funny Mirrors | The Very Small Creatures | Full episodes
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's You...
    published: 23 Nov 2023
    Play in Full Screen
    11:13
    🚀 Full Episodes 17-20 🧡 The Very Small Creatures S2
    🔔 Subscribe to the Timmy & Friends channel: https://aard.mn/TimmyFriends 👀 Watch more vide...
    published: 02 Apr 2024
    Play in Full Screen
    57:27
    The Very Small Creatures Full Episodes Series 1 Compilation! All Episodes!
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's You...
    published: 28 Nov 2023
    Play in Full Screen
    54:44
    🍊🍋 1 HOUR | Full Episodes 🧡 The Very Small Creatures S2
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's You...
    published: 18 May 2024
    Play in Full Screen
    8:27
    Special Ball / Noisy / Sticky | The Very Small Creatures | Full episodes
    👀 Watch more classic Morph videos: https://aard.mn/ClassicMorph 👋 Subscribe to Morph's You...
    published: 14 Nov 2023
    Play in Full Screen
    0:49
    Watch The Very Small Creatures Series 2 on Sky Kids and Now!
    Series two of The Very Small Creatures has launched on Sky Kids and NOW! Aardman and Sky K...
    published: 17 Jul 2023
    Play in Full Screen

    Taxonomic rank

    In biological classification, rank is the relative level of a group of organisms (a taxon) in a taxonomic hierarchy. Examples of taxonomic ranks are species, genus, family, class, kingdom, etc.

    A given rank subsumes under it less general categories, that is, more specific descriptions of life forms. Above it, each rank is classified within more general categories of organisms and groups of organisms related to each other through inheritance of traits or features from common ancestors. The rank of any species and the description of its genus is basic; which means that to identify a particular organism, it is usually not necessary to specify ranks other than these first two.

    Consider a particular species, the red fox Vulpes vulpes: its next rank, the genus Vulpes, comprises all the 'true foxes'. Their closest relatives are in the immediately higher rank, the family Canidae, which includes dogs, wolves, jackals, all foxes, and other caniforms; the next higher rank, the order Carnivora, includes feliforms and caniforms (lions, tigers, bears, hyenas, wolverines, and all those mentioned above), plus other carnivorous mammals. As one group of the class Mammalia, all of the above are classified among those with backbones in the Chordata phylum rank, and with them among all the animals in the Animalia kingdom rank. Finally, all of the above will find their earliest relatives somewhere in their domain rank Eukarya.

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