- published: 03 Mar 2011
- views: 1025
'+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; })); }); -->
Dream Team may refer to:
The 1992 United States men's Olympic basketball team, nicknamed the "Dream Team", was the first American Olympic team to feature active NBA players. Described by American journalists as the greatest sports team ever assembled, and called by the Naismith Memorial Basketball Hall of Fame "the greatest collection of basketball talent on the planet", it defeated its opponents by an average of 44 points en route to the gold medal against Croatia at the 1992 Summer Olympics held in Barcelona, Spain.Chuck Daly served as coach, assisted by Lenny Wilkens, P. J. Carlesimo, and Mike Krzyzewski.
At the 1988 Summer Olympics in Seoul, the United States national basketball team, made up of college stars, finished in third place. The defeat increased calls for professionals to be allowed to play in the Olympics. Borislav Stanković of FIBA advocated for this for years until the organization agreed in April 1989 despite American and Russian votes against the proposal.USA Basketball asked the NBA to supply players for its 1992 roster; the league was initially unenthusiastic, not foreseeing the cultural phenomenon that the team would become.Sports Illustrated was the first to nickname the forthcoming American roster as the "Dream Team", on the cover of its February 18, 1991 issue. So many corporate sponsors (including McDonald's, Coca-Cola, and Kellogg) wished to use the team to advertise their products that some were rejected.
The Dream Team was an Australian Football League (AFL) representative team created to take part in the AFL Hall of Fame Tribute Match against a Victorian representative team.
Although not officially a State of Origin game, eligibility for the Dream Team was based upon State of Origin rules: players who played their junior football within Victoria were eligible for Victoria, and players who played their junior football outside Victoria (including international players) were eligible for the Dream Team. The "Dream Team" concept was similar to the Allies, a composite State of Origin team representing players from anywhere except for South Australia, Victoria and Western Australia.
The Dream Team wore a predominantly white guernsey, with beige cuffs and collars, and blue numbers and side panels. The names of 1246 community and grass-roots football clubs competing within the Australian states and territories eligible for the Dream Team were also included in beige across the front.
A football team is the collective name given to a group of players selected together in the various team sports known as football.
Such teams could be selected to play in a match against an opposing team, to represent a football club, group, state or nation, an All-star team or even selected as a hypothetical team (such as a Dream Team or Team of the Century) and never play an actual match.
There are several varieties of football, notably Association football, Gridiron football, Australian rules football, Gaelic football, rugby league, and rugby union. The number of players selected for each team within these varieties and their associated codes can vary substantially. In some, use of the word "team" is sometimes limited to those who play on the field in a match and does not always include other players who may take part as replacements or emergency players. "Football squad" may be used to be inclusive of these support and reserve players.
The term football club is the most commonly used for a sports club which is an organised or incorporated body with a president, committee and a set of rules responsible for ensuring the continued playing existence of one or more teams which are selected for regular competition play (and which may participate in several different divisions or leagues). The oldest football clubs date back to the early 19th century. The words team and club are sometimes used interchangeably by supporters, although they typically refer to the team within the club playing in the highest division or competition.
A-Next is the Marvel Comics' MC2 universe version of the Avengers. The team made its first appearance in What If? #105, the first comic featuring Spider-Girl, and the team's origin story was told in the A-Next #1, cover dated October 1998.
The first issue of A-Next paid homage to The Avengers (vol. 1) #1, with an Asgardian menace prompting new superheroes to band together, all of them analogues to the original team. Future stories introduced new heroes and menaces, most of them based on pre-existing Marvel characters. Characters and story elements created by DeFalco in the comic were used in other comics in the MC2 Universe.
A five issue miniseries entitled Avengers Next ran from November 2006 to January 2007, written by Tom DeFalco and with artwork by Ron Lim, that followed on from the events of Last Hero Standing and Last Planet Standing. It reunited the remaining members of A-Next and added new members Sabreclaw, Kate Power (of Power Pack), Thena, the daughter of Thor and a former criminal teleporter called Warp to the team.
Dream Team is a 1999 gay pornographic film, written and directed by Jerry Douglas, starring Tony Donovan, Rick Chase and Kurt Young, and produced by Studio 2000. This movie tells the coming-of-age stories of a group of high school basketball team players who come to terms with their sexualities at a young age in 1957, and later in a 1962 reunion.
NOTE: This film has character names. However, names of real-life performers are used in this article.
The story is set in Herbert Hoover High School in Heartland Heights, Iowa. It features seven former high school basketball players, part of the class of 1957, and it then shows their five-year reunion in 1962. The movie switches scenes between high school and the reunion.
In 1962, Rick Chase is now an actor in California. Aaron Lawrence becomes a reverend primarily to repress his homosexuality and his love for Chase. Tony Donovan is unhappily married with a wife and children, and Kurt Young cruises around with men and women. Scott Lyons has turned to drink. Kristian Brooks and Lucas James are secret lovers.
The eighth series of Dream Team was broadcast on Sky1 from October 2004 to May 2005, covering the 2004-05 English football season. It followed the story of Harchester United attempting to return to the Premier League after relegation the previous season and their first participation in the UEFA Champions League.
Several new faces were brought on board for season eight, mainly within the backroom staff of the club. The most notable of the new signings was former Boyzone singer Shane Lynch, in his first major acting role on television.
Toyota AFL Dream Team TV featuring Kevin Sheehan and Dr Dream Team
Richmond's season is rolling after Dustin Martin dazzled a heaving Optus Stadium and led the Tigers to a memorable Dreamtime in Perth win against Essendon. In an engrossing match that had looked destined to go down to the wire, the Tigers piled on seven straight goals in the final quarter to secure their seventh consecutive Dreamtime win, 19.9 (123) to 12.12 (84). For unique access to much more incredible footy content, head to AFL On Demand: http://afl.com.au/ondemand Follow us on Instagram: http://www.instagram.com/afl Like our Facebook page: http://www.facebook.com/AFL Follow us on Twitter: http://www.twitter.com/AFL Add us on Snapchat - aflofficial Find out how you can watch AFL games here: http://afl.to/2lm0nog #AFL
Essendon midfield gun Brent Stanton breaks the AFL Dream Team record with 193 points against the Brisbane Lions in Round 6, 2012. More highlights at http://afl.com.au
Ten years on. Highlights as Fevola, Brown, Judd and the Victorians took on Franklin, McLeod, Richo and the Dream Team on May 10, 2008 to mark the 150th anniversary of Australian Football. 2008 Victorian Tribute Match side B: Campbell Brown (Hawthorn) Matthew Scarlett (Geelong) Darren Milburn (Geelong) HB: Heath Shaw (Collingwood) Trent Croad (Hawthorn) Jarrad Waite (Carlton) C: Brent Harvey (North Melbourne) Sam Mitchell (Hawthorn) Adam Goodes (Sydney) HF: Ryan O'Keefe (Sydney) Jonathan Brown (Brisbane Lions) Robert Murphy (Western Bulldogs F: Steve Johnson (Geelong) Brendan Fevola (Carlton) Daniel Bradshaw (Brisbane Lions) Foll: Troy Simmonds (Richmond) Jimmy Bartel (Geelong) Chris Judd (Carlton) Int: Josh Fraser (Collingwood) Luke Power (Brisbane Lions) Paul Chapman (Geelong) James...
This was channel ten's intro for the 2008 AFL Hall of Fame Tribute Match. Victoria vs Dream Team
A pump-up promo video for the 2010 AFL Dream Team season. Sorry guys, i did it quickly, i only spent 15 minutes on it. Bring on DT2010!!!
Dream Team may refer to:
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
The other day a friend gave me a call
He said that the dream team was playin' basketball
Was so excited I had a get a witness
The first time the NBA was in the 'lympics
I tuned in because I was hella psyched
To see Magic Johnson on the same team with Mike
Gettin' crazy and havin' lots of fun
We were makin' sure that they got the job done
The fans were wavin' the red white end blue
It seemed strange to me was it strange to you?
The brotha's on the street and everyone is scared a ya
So how could ten Africans represent America?
Bullshit it didn't mean a thing 'cause in the same year
We saw Rodney King
So I thought that I would put a team together
A team that I have been waitin' for forever
Well some of you may know exactly who I mean
But if you don't then let me introduce you to
My dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well chuck D's announcin' flava's, flava's doin' color
And halftime entertainment is by Dre and Ed Lover
Malcolm X is the coach he's drawin' up the strategy
We're choppin' appart all America's anatomy
'Cause they're the ones we're up against of course
Our general manager is chief crazy horse
Huey Newton 'cause he was extra hard
He's the one who would be playin' at the shootin' guard
I dreamed Charles Barkley would be played by Marcus Garvey
He'd be throwin' people off his back and makin'
Sure they never got a rebound rebound and he'd throw it to the outlet
Nat Turner 'cause he can turn the corner when he's out there
He be flyin' through the air and throwin' passes like he really doesn't care
Behind the back and in between the legs
He's handlin' the rock as gently as an egg
He's throwin' it into Angela Davis's neighborhood
She's postin' up down in the extra hard wood
When she grabs the pill and then she puts her shoulder down
Get out the way because she's gonna throw down now
Boom oh my God, I just can't believe it
Well get another backboard or better yet leave it
We always play for fun, we always play for keeps
The game is over and the loser's gotta sweep
Up the glass that we busted in the ass
Set the record straight about America's past
This is my dream team
Spearhead in the area
Dream team's in the house
Dream team's in the house
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Well after doin' that we be headin' for the ceremony
And on the heart is a bunch of baloney
The spirit of the '68 Olympics
Black power people can I get a witness
Fist in the air this is the proper manners
While Jimi Hendrix is fuckin' up the spangled banner
Up into the sky miles Davis blows a horn
Look into the bleachers, it's Bill Clinton sellin' popcorn
So now we jump and we have a celebration
Shaquille 0'neal would provide the entertainment
To some of you this is a far fetched scheme
But to me, I'll tell you what it is
This is my dream team
Spearhead in the area
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Because I like to shoot hoops not brothas
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green
Dat's how we know, dat's how we dream team
Red black green, red gold green