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

Football at the Island Games

Football has been a regular event since 1989 at the Island Games, the biennial multi-sports event for island nations, territories and dependencies. A 5-a-side competition for under-16s was held at the inaugural event on the Isle of Man, and the success this minor competition brought to the games meant senior men's football was included on the itinerary for the first time in the Faroe Islands, in 1989. Women's football was included on the games' schedule for the first time in 2001.

Over the years, the competition has grown in stature, becoming one of the most important competitions for 'national' teams in non-FIFA football, and has grown from a five-team round robin competition to a 16-team tournament.

Men's Tournament

Results

Medalists

Performances by team

  • Blue square indicates host
  • Top goalscorers

    Women's Tournament

    Results

    Medalists

    Performances by team

  • Blue square indicates host
  • 5= – Finished below 4th place (no placement play-off matches were played in 2009)

    Top goalscorers

    Men's Football at the 2003 Island Games

    The 2003 Island Games on the island of Guernsey was the 8th edition in which a men's football (soccer) tournament was played at the multi-games competition. It was contested by 15 teams.

    Guernsey won the tournament for the second time.

    Participants

    Group phase

    Group 1

    Group 2

    Group 3

  • Rhodes originally entered into Group 3 but withdrew from the tournament following their final game against Guernsey, which was abandoned at 70 minutes (with Guernsey leading 2–1 – Goals: Ryan Tippett 2) after they had five players sent off. Rhodes' previous two games (6–1 vs. Orkney and 5–1 vs. Alderney) were expunged from the records.
  • Group 4

    Football at the 1989 Island Games

    The 1989 Island Games in the Faroe Islands was the 1st edition in which a men's football (soccer) tournament was played at the multi-games competition. It was contested by 5 teams.

    The Faroe Islands won the tournament for the first time.

    Participants

  •  Åland Islands
  •  Faroe Islands
  •  Greenland
  •  Shetland
  •  Ynys Môn
  • Final rankings

    Matches


    Top goalscorers

    External links

  • Official 1989 website
  • 2013 Island Games

    The XV Island Games (also known as the 2013 NatWest Island Games for sponsorship reasons) were held in Bermuda from 13 to 19 July 2013. Bermuda was selected to host the Games by default after Prince Edward Island withdrew from the International Island Games Association.

    It was the first time that the games were held outside Europe.

    Participating islands

    22 island entities of the IIGA from Europe, South Atlantic and the Caribbean area competed in these games.Rhodes and Sark declined their invitations to the games.

  •  Åland Islands (64)
  •  Alderney (6)
  •  Bermuda (Host) (100)
  •  Cayman Islands (69)
  •  Falkland Islands (49)
  •  Faroe Islands (84)
  •  Frøya (16)
  •  Gibraltar (75)
  •  Gotland (58)
  •  Greenland (74)
  •  Guernsey (100)
  •  Hitra (34)
  •  Isle of Man (85)
  •  Isle of Wight (30)
  •  Jersey (79)
  • Minorca Menorca (33)
  •  Orkney (29)
  •  Saaremaa (43)
  •  Shetland Islands (46)
  • Saint Helena St. Helena (8)
  •  Western Isles (22)
  • Anglesey Ynys Môn (23)
  • Sports

    Numbers in parentheses indicate the number of medal events contested in each sport.

  • Athletics (39) ()
  • Badminton (6) ()
  • 2005 Island Games

    The 2005 Island Games were the 11th Island Games, and were held in Shetland, Scotland, from July 9 to July 15, 2005.

    Medal table

    Key:

    Sports

    The sports chosen for the games were:

  • Archery - see results
  • Athletics - see results
  • Badminton - see results
  • Cycling - see results
  • Football - see results
  • Golf - see results
  • Gymnastics - see results
  • Indoor bowls - see results
  • Sailboarding - see results
  • Sailing - see results
  • Shooting - see results
  • Squash - see results
  • Swimming - see results
  • Table tennis - see results
  • Volleyball - see results
  • External links

  • Island Games 2005
  • 2017 Island Games

    The XVII Island Games (also known as the 2017 NatWest Island Games for sponsorship reasons) will held in Gotland, Sweden, from 24 June to 30 June 2017. This will be the second time that the island has hosted the games, the first being in 1999.

    Sports

    Numbers in parentheses indicate the number of medal events contested in each sport.

  • Archery (??) ()
  • Athletics (??) ()
  • Badminton (?) ()
  • Basketball (?) ()
  • Cycling (??) ()
  • Mountain biking (?)
  • Road (?)
  • Time trial (?)
  • Town centre criterium (?)
  • Football (2) ()
  • Golf (2) ()
  • Gymnastics (??) ()
  • Shooting (??) ()
  • Swimming (??) ()
  • Table tennis (?) ()
  • Tennis (?) ()
  • Triathlon (?) ()
  • Volleyball
  • Beach volleyball (2) ()
  • Indoor volleyball (2) ()
  • References

    External links

  • Island Games 2017
  • Podcasts:

    • Best Football Nation in Island Games (1989-2017) | Country with Most Goals in NatWest International

      This video shows the islands with the most goals in the NatWest International Island Games.

      published: 21 Mar 2020
    • Men's Football Final At NatWest Island Games, July 18 2013

      http://bernews.com Men's Football Final At NatWest Island Games, July 18 2013 Full coverage here: http://bernews.com/tag/island-games/ ------------------------------------------------------------------------- Join us on Facebook: http://facebook.com/bernews Join us on Twitter: http://twitter.com/bernewsdotcom Join us on Instagram: http://instagram.com/bernews Sign up for our email list: http://bernews.com/emaileditions Download our iPhone & Android app: http://bernews.com/app/

      published: 19 Jul 2013
    • Football - NatWest Island Games - Jersey 2015

      If you are interested in finding out about a particular sport or club in Jersey, go to http://www.jerseylovessport.com If you would like to find out about sport in Jersey, go to https://www.gov.je/sport This film was produced during the NatWest Island Games held in Jersey from 27th June to 3rd July 2015. The film has been created as part of the legacy of the Games to inspire people of all ages to take up sport and in addition to promote Jersey as a great sporting island with top class facilities. If you would like to see more films about Jersey sport, please follow Jersey Sport TV on Youtube.

      published: 14 Jan 2016
    • #serbia #football #simi

      published: 17 Jan 2023
    • NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 2-1

      The isle of Man supporters celebrating 2-1 goal in bronze-medal match. 4/7 2009

      published: 07 Jul 2009
    • Football Tiwi Style, Bathurst Island, northern Australia

      http://ozoutback.com.au/ A very wet game of Aussie Rule Football in Nguiu, the Tiwi Aboriginal community on Bathurst Island in the Northern Territory of Australia. The game is very popular among the Tiwi and the yearly Grand Final is a major event on the island. Sorry about the poor video quality: this was recorded Saturday afternoon, 21 November 1987! http://youtube.com/watch?v=aEZSYG9n8X0

      published: 05 Mar 2012
    • NatWest Island Games Åland 2009 Womens football Isle of Man-Isle of Wight 3-1

      Isle of Man scores 3-1 in bronze-medal match and the supporters celebrate.4/72009

      published: 07 Jul 2009
    • "I PLAY FOOTBALL" Arsenal Star Ben White Responds Hilariously To Crypto Question 🤣💰 #Shorts

      Arsenal defender Ben White responds hilariously to Crypto question. #Arsenal #Crypto #BenWhite ► SUBSCRIBE: http://www.youtube.com/channel/UCAbau7DblBT5Kd943sBbEWQ?sub_confirmation=1 ► PODCAST: https://www.spreaker.com/show/the-arsenal-way-arsenal-fc-podcast ► TWITTER: https://twitter.com/TheArsenalWayN5 ► FACEBOOK: https://www.facebook.com/The-Arsenal-Way-224360529523040 ► WEBSITE: https://www.football.london/all-about/the-arsenal-way Just like you, we can’t get enough of Arsenal! That’s why we’ve decided to supplement our expansive Arsenal coverage on football.london with our committed platform catered specifically to Arsenal fans - The Arsenal Way. Writers and presenters who share your passion for the red side of north London will be producing written, visual and audio content to r...

      published: 01 Nov 2022
    • Larkin High Football: At Rock Island September 1 1989

      This game was played at venerable Rocky Stadium which, in many ways, was like watching a football game played in the 1950s. The long bus ride was worth it for Larkin as Greenhagel led them to victory... Final: Larkin 32 Rock Island 15

      published: 19 Oct 2016
    • NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 1-0 goalcelebrating

      The Isle of Man supporters celebrating 1-0 in bronze- medal match against Isle of Wight. 4/7 2009

      published: 07 Jul 2009
    developed with YouTube
    Best Football Nation in Island Games (1989-2017) | Country with Most Goals in NatWest International
    3:27

    Best Football Nation in Island Games (1989-2017) | Country with Most Goals in NatWest International

    • Order:
    • Duration: 3:27
    • Uploaded Date: 21 Mar 2020
    • views: 253
    This video shows the islands with the most goals in the NatWest International Island Games.
    https://wn.com/Best_Football_Nation_In_Island_Games_(1989_2017)_|_Country_With_Most_Goals_In_Natwest_International
    Men's Football Final At NatWest Island Games, July 18 2013
    3:20

    Men's Football Final At NatWest Island Games, July 18 2013

    • Order:
    • Duration: 3:20
    • Uploaded Date: 19 Jul 2013
    • views: 1490
    http://bernews.com Men's Football Final At NatWest Island Games, July 18 2013 Full coverage here: http://bernews.com/tag/island-games/ ------------------------------------------------------------------------- Join us on Facebook: http://facebook.com/bernews Join us on Twitter: http://twitter.com/bernewsdotcom Join us on Instagram: http://instagram.com/bernews Sign up for our email list: http://bernews.com/emaileditions Download our iPhone & Android app: http://bernews.com/app/
    https://wn.com/Men's_Football_Final_At_Natwest_Island_Games,_July_18_2013
    Football -  NatWest Island Games - Jersey 2015
    2:52

    Football - NatWest Island Games - Jersey 2015

    • Order:
    • Duration: 2:52
    • Uploaded Date: 14 Jan 2016
    • views: 829
    If you are interested in finding out about a particular sport or club in Jersey, go to http://www.jerseylovessport.com If you would like to find out about sport in Jersey, go to https://www.gov.je/sport This film was produced during the NatWest Island Games held in Jersey from 27th June to 3rd July 2015. The film has been created as part of the legacy of the Games to inspire people of all ages to take up sport and in addition to promote Jersey as a great sporting island with top class facilities. If you would like to see more films about Jersey sport, please follow Jersey Sport TV on Youtube.
    https://wn.com/Football_Natwest_Island_Games_Jersey_2015
    #serbia #football #simi
    0:21

    #serbia #football #simi

    • Order:
    • Duration: 0:21
    • Uploaded Date: 17 Jan 2023
    • views: 672899
    https://wn.com/Serbia_Football_Simi
    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 2-1
    0:23

    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 2-1

    • Order:
    • Duration: 0:23
    • Uploaded Date: 07 Jul 2009
    • views: 1008
    The isle of Man supporters celebrating 2-1 goal in bronze-medal match. 4/7 2009
    https://wn.com/Natwest_Island_Games_Åland_2009_Womens_Football_Isle_Of_Man_Isle_Of_Wight_2_1
    Football Tiwi Style, Bathurst Island, northern Australia
    1:54

    Football Tiwi Style, Bathurst Island, northern Australia

    • Order:
    • Duration: 1:54
    • Uploaded Date: 05 Mar 2012
    • views: 8153
    http://ozoutback.com.au/ A very wet game of Aussie Rule Football in Nguiu, the Tiwi Aboriginal community on Bathurst Island in the Northern Territory of Australia. The game is very popular among the Tiwi and the yearly Grand Final is a major event on the island. Sorry about the poor video quality: this was recorded Saturday afternoon, 21 November 1987! http://youtube.com/watch?v=aEZSYG9n8X0
    https://wn.com/Football_Tiwi_Style,_Bathurst_Island,_Northern_Australia
    NatWest Island Games Åland 2009 Womens football Isle of Man-Isle of Wight 3-1
    0:26

    NatWest Island Games Åland 2009 Womens football Isle of Man-Isle of Wight 3-1

    • Order:
    • Duration: 0:26
    • Uploaded Date: 07 Jul 2009
    • views: 1430
    Isle of Man scores 3-1 in bronze-medal match and the supporters celebrate.4/72009
    https://wn.com/Natwest_Island_Games_Åland_2009_Womens_Football_Isle_Of_Man_Isle_Of_Wight_3_1
    "I PLAY FOOTBALL" Arsenal Star Ben White Responds Hilariously To Crypto Question 🤣💰 #Shorts
    0:24

    "I PLAY FOOTBALL" Arsenal Star Ben White Responds Hilariously To Crypto Question 🤣💰 #Shorts

    • Order:
    • Duration: 0:24
    • Uploaded Date: 01 Nov 2022
    • views: 5069555
    Arsenal defender Ben White responds hilariously to Crypto question. #Arsenal #Crypto #BenWhite ► SUBSCRIBE: http://www.youtube.com/channel/UCAbau7DblBT5Kd943sBbEWQ?sub_confirmation=1 ► PODCAST: https://www.spreaker.com/show/the-arsenal-way-arsenal-fc-podcast ► TWITTER: https://twitter.com/TheArsenalWayN5 ► FACEBOOK: https://www.facebook.com/The-Arsenal-Way-224360529523040 ► WEBSITE: https://www.football.london/all-about/the-arsenal-way Just like you, we can’t get enough of Arsenal! That’s why we’ve decided to supplement our expansive Arsenal coverage on football.london with our committed platform catered specifically to Arsenal fans - The Arsenal Way. Writers and presenters who share your passion for the red side of north London will be producing written, visual and audio content to reflect the mood in the stands as well as the press box.
    https://wn.com/I_Play_Football_Arsenal_Star_Ben_White_Responds_Hilariously_To_Crypto_Question_🤣💰_Shorts
    Larkin High Football: At Rock Island  September 1 1989
    1:40:22

    Larkin High Football: At Rock Island September 1 1989

    • Order:
    • Duration: 1:40:22
    • Uploaded Date: 19 Oct 2016
    • views: 78
    This game was played at venerable Rocky Stadium which, in many ways, was like watching a football game played in the 1950s. The long bus ride was worth it for Larkin as Greenhagel led them to victory... Final: Larkin 32 Rock Island 15
    https://wn.com/Larkin_High_Football_At_Rock_Island_September_1_1989
    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight  1-0 goalcelebrating
    0:13

    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 1-0 goalcelebrating

    • Order:
    • Duration: 0:13
    • Uploaded Date: 07 Jul 2009
    • views: 1386
    The Isle of Man supporters celebrating 1-0 in bronze- medal match against Isle of Wight. 4/7 2009
    https://wn.com/Natwest_Island_Games_Åland_2009_Womens_Football_Isle_Of_Man_Isle_Of_Wight_1_0_Goalcelebrating
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Best Football Nation in Island Games (1989-2017) | Country with Most Goals in NatWest International

    This video shows the islands with the most goals in the NatWest International Island Games.
    3:27
    Best Football Nation in Island Games (1989-2017) | Country with Most Goals in NatWest International
    This video shows the islands with the most goals in the NatWest International Island Games...
    published: 21 Mar 2020
    Play in Full Screen
    3:20
    Men's Football Final At NatWest Island Games, July 18 2013
    http://bernews.com Men's Football Final At NatWest Island Games, July 18 2013 Full coverag...
    published: 19 Jul 2013
    Play in Full Screen
    2:52
    Football - NatWest Island Games - Jersey 2015
    If you are interested in finding out about a particular sport or club in Jersey, go to htt...
    published: 14 Jan 2016
    Play in Full Screen
    0:21
    #serbia #football #simi
    published: 17 Jan 2023
    Play in Full Screen
    0:23
    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 2-1
    The isle of Man supporters celebrating 2-1 goal in bronze-medal match. 4/7 2009
    published: 07 Jul 2009
    Play in Full Screen
    1:54
    Football Tiwi Style, Bathurst Island, northern Australia
    http://ozoutback.com.au/ A very wet game of Aussie Rule Football in Nguiu, the Tiwi Aborig...
    published: 05 Mar 2012
    Play in Full Screen
    0:26
    NatWest Island Games Åland 2009 Womens football Isle of Man-Isle of Wight 3-1
    Isle of Man scores 3-1 in bronze-medal match and the supporters celebrate.4/72009
    published: 07 Jul 2009
    Play in Full Screen
    0:24
    "I PLAY FOOTBALL" Arsenal Star Ben White Responds Hilariously To Crypto Question 🤣💰 #Shorts
    Arsenal defender Ben White responds hilariously to Crypto question. #Arsenal #Crypto #Be...
    published: 01 Nov 2022
    Play in Full Screen
    1:40:22
    Larkin High Football: At Rock Island September 1 1989
    This game was played at venerable Rocky Stadium which, in many ways, was like watching a f...
    published: 19 Oct 2016
    Play in Full Screen
    0:13
    NatWest Island Games Åland 2009 Womens football Isle of Man - Isle of Wight 1-0 goalcelebrating
    The Isle of Man supporters celebrating 1-0 in bronze- medal match against Isle of Wight. 4...
    published: 07 Jul 2009
    Play in Full Screen

    Football at the Island Games

    Football has been a regular event since 1989 at the Island Games, the biennial multi-sports event for island nations, territories and dependencies. A 5-a-side competition for under-16s was held at the inaugural event on the Isle of Man, and the success this minor competition brought to the games meant senior men's football was included on the itinerary for the first time in the Faroe Islands, in 1989. Women's football was included on the games' schedule for the first time in 2001.

    Over the years, the competition has grown in stature, becoming one of the most important competitions for 'national' teams in non-FIFA football, and has grown from a five-team round robin competition to a 16-team tournament.

    Men's Tournament

    Results

    Medalists

    Performances by team

  • Blue square indicates host
  • Top goalscorers

    Women's Tournament

    Results

    Medalists

    Performances by team

  • Blue square indicates host
  • 5= – Finished below 4th place (no placement play-off matches were played in 2009)

    Top goalscorers

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