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

Iditarod Trail Sled Dog Race

The Iditarod Trail Sled Dog Race is an annual long-distance sled dog race run in early March from Anchorage to Nome, which takes place entirely in the US state of Alaska. Mushers and a team of 16 dogs, of which at least 6 must be on the towline at the finish line, cover the distance in 9–15 days or more. The Iditarod began in 1973 as an event to test the best sled dog mushers and teams but evolved into today's highly competitive race. The current fastest winning time record was set in 2014 by Dallas Seavey with a time of 8 days, 13 hours, 4 minutes, and 19 seconds. As of 2012, Dallas Seavey was also the youngest musher to win the race at the age of 25, while as of 2013, at the age of 53, Dallas' father Mitch Seavey was the oldest person to ever win the race.

Teams generally race through blizzards causing whiteout conditions, sub-zero temperatures and gale-force winds which can cause the wind chill to reach −100 °F (−73 °C). A ceremonial start occurs in the city of Anchorage and is followed by the official restart in Willow, a city 80 miles north of Anchorage. The restart was originally in Wasilla, but because of too little snow, the restart was permanently moved to Willow in 2008. The trail runs from Willow up the Rainy Pass of the Alaska Range into the sparsely populated interior, and then along the shore of the Bering Sea, finally reaching Nome in western Alaska. The trail is through a harsh landscape of tundra and spruce forests, over hills and mountain passes, and across rivers. While the start in Anchorage is in the middle of a large urban center, most of the route passes through widely separated towns and villages, and small Athabaskan and Iñupiat settlements. The Iditarod is regarded as a symbolic link to the early history of the state and is connected to many traditions commemorating the legacy of dog mushing.

Iditarod (disambiguation)

Iditarod may refer to:

  • Iditarod, Alaska, an abandoned town in the Yukon–Koyukuk Census Area of Alaska
  • Iditarod River, a river in western Alaska
  • Iditarod Trail, a thousand-plus mile historic and contemporary trail system in Alaska
  • Iditarod Trail Sled Dog Race, an annual sled dog team race across Alaska
  • 2006 Iditarod

    The ceremonial start of the 34th annual (XXXIV) Iditarod Trail Sled Dog Race across the U.S. state of Alaska began amidst the crowds of Anchorage on March 4, 2006, and the start of the competitive race, or "restart", began the next day in Willow. The race followed a modified version of the northern route for 1,151 mi (1,852 km) across the Alaska Range, through the sparsely inhabited Interior, along the Yukon River, and then up the coast of the Bering Sea to the city of Nome. Unlike in previous years, where the teams had to deal with unseasonably warm temperatures and soft, mushy snow, the weather was cold, with temperatures reported as low as −40 °F (−40 °C).

    Eighty three competitors started the race, eleven "scratched", and one was withdrawn from the race. The field of racers was extremely competitive, with pundits like Cabela's John Little listing more than half a dozen possible winners. The ultimate winner was Jeff King, who crossed under the "burled arch" on March 15, becoming one of the few four-time champions. Fellow four-time winner Doug Swingley of Montana came in 2nd place, followed by Paul Gebhardt. Each of the 83 teams was composed of 16 dogs, four of whom died during the event.

    Podcasts:

    • Meet Iditarod-Winning Sled Dogs

      At VICE Sports we've already gone a long way to tell you that dogs are sports, but these dogs are some of the greatest athletes in the world. Dallas Seavey captured his third Iditarod title in 2015 with the help of his canine friends and has cemented his reputation as the best dog sledder in the world. In this VICE Sports exclusive, we headed up to Willow, Alaska to meet with Seavey and his 100+ dogs. Subscribe to VICE Sports here: http://bit.ly/Subscribe-to-VICE-Sports Check out VICE Sports for more: http://www.vicesports.com Follow VICE Sports here: Facebook: https://facebook.com/VICESports Twitter: https://twitter.com/VICESports Instagram: http://instagram.com/vicesports More videos from the VICE network: https://www.fb.com/vicevideos

      published: 06 May 2015
    • Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOX

      The Iditarod Trail Sled Dog Race starts Sunday and will take racers nearly 1,000 miles across Alaska. This is the 51st running, but its 33 mushers are the smallest field ever to start the race. LiveNOW's Shirley Descorbeth spoke with Iditarod CEO, Rob Urbach about the sport. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.

      published: 04 Mar 2023
    • 2022 Iditarod Dog Sled Race | Willow Alaska

      We attend the annual Iditarod Restart in Willow, Alaska for a day of fun in the sun. This historic race is truly a spectacle to witness from the sidelines. Such a special occasion calls for a campfire cook out complete with stuffed garlic bread and banana boats. We wish all of the mushers and their dog teams a safe journey! Last Year's Iditarod Race (2021) - https://youtu.be/enmfXDb7wbg 𝐎𝐮𝐫 𝟐𝟎𝟐𝟐 𝑨𝒍𝒂𝒔𝒌𝒂 𝑪𝒂𝒍𝒆𝒏𝒅𝒂𝒓 𝐢𝐬 𝐟𝐨𝐫 𝐬𝐚𝐥𝐞! 𝐅𝐨𝐥𝐥𝐨𝐰 𝐥𝐢𝐧𝐤 𝐭𝐨 𝐩𝐮𝐫𝐜𝐡𝐚𝐬𝐞 𝐲𝐨𝐮𝐫 𝐜𝐨𝐩𝐲: ⬇⬇⬇⬇⬇ https://www.createphotocalendars.com/Store/2022+Alaska+Calendar-8134805887 We appreciate you tagging along for our Alaskan adventure 😀 Thank you for watching and supporting our channel! 💙 - Eric & Arielle Illia Music By Epidemic Sound:...

      published: 10 Mar 2022
    • Iditarod Sled Dogs: Facts To Know

      Running 100 miles or more a day, the canines that compete in the Iditarod Trail Sled Dog Race are in a league of their own. #foxweather #weather Download the FOX Weather app: https://www.foxweather.com/app FOX Weather is a 24/7 ad-supported streaming service operated by FOX News Media. The platform builds upon FOX News Channel’s expansive newsgathering units and FOX Television Stations’ added resources with a combined 120 meteorologists for a comprehensive suite of weather products featuring local, regional and national reporting, in addition to live programming. Utilizing multiple radar systems, including an immersive mobile 3D radar, and a vast network of HD cameras located around the country, the service offers users an innovative approach to forecasting, including coverage surroundin...

      published: 08 Mar 2022
    • Saturday Night Iditarod Update

      The latest from Iditarod 2023 For more Local News from KTUU: https://www.alaskasnewssource.com/ For more YouTube Content: https://www.youtube.com/channel/UCJZWh6xwfsZe7NrjHo4OvGg

      published: 12 Mar 2023
    • Capturing the Iditarod - Behind the Scenes | Life Below Zero

      An intrepid film crew travels ten days and a thousand miles, across frozen tundra and cruel terrain, in order to capture the last great race, the Iditarod. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Watch all clips of Life Below Zero here: http://bit.ly/WatchLifeBelowZero #NationalGeographic #Iditarod #LifeBelowZero About Life Below Zero: Life Below Zero follows six people as they battle for the most basic necessities in the state with the lowest population density in the United States. Living at the ends of the world's loneliest roads and subsisting off the rugged Alaskan bush, they battle whiteout snow storms, man-eating carnivores, questionable frozen terrain, and limited resources through a long and bitter winter. Some of them are lone wolves; others have their families beside the...

      published: 22 May 2019
    • Iditarod 2023 - Run Dogs Run documentary -

      #iditarod #mushing #alaska Iditarod 2023 - Run Dogs Run Documentary - Fandub por Rubén Rb - Suscríbete al canal para ver mas vídeos de la Iditarod 2023: https://www.youtube.com/@PowerdogsTv Puedes escucharnos en Ivoox: https://go.ivoox.com/sq/422413 O en Spotify: https://open.spotify.com/show/7mo5Gid4jWRCmX5kWXrhTo?si=13a10f86a1b64bdb Únete al grupo de Telegram para interactuar con nosotros: https://t.me/powerdogscomunidad

      published: 20 Mar 2023
    • What is the Iditarod? | AK Explained

      http://www.alaskapublic.org/ How long does the Iditarod Trail Sled Dog Race take to finish? Where does it go? What's with all those dogs? Alaska Public Media answers all of your questions about the most popular sporting event in Alaska. Video Eric Keto Kaysie Ellingson Story John Norris Eric Keto Music “brown&gold” by airtone http://ccmixter.org/files/airtone/23579 “Brass Beat” by Blake http://ccmixter.org/files/blakeht/31638 “Words of Gratitude Soars Heart of Eye” by FACELESSIWONDER http://ccmixter.org/files/FACELESSIWONDER/42779 Photos Frank K. http://commons.wikimedia.org/wiki/File:Anchorage_and_Chugach_Mountains.jpg W. D. Harney http://commons.wikimedia.org/wiki/File:Bird's-eye_View_of_Nome_Alaska_-_1907.jpg D. Sikes http://commons.wikimedia.org/wiki/File:Ice_fog_and_Alaska_Ran...

      published: 06 Mar 2015
    • Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’

      The 51st Iditarod Trail Sled Dog Race is concluding during the week of Mar. 13, 2023 in Nome, Alaska. The 1,000-mile race began with a ceremonial start in Anchorage, Alaska, then a restart in Willow. Straight Arrow News spoke with a number of mushers who participated, including the 2022 champion, Brent Sass. “The sled dog was used hundreds of years ago for transportation and moving freight around,” Sass said. “And it comes from the Siberian Huskies and the Malamutes–all those big, northern dogs. But those dogs were good for hauling freight and surviving the weather and the winters, but they weren’t fast. And so over the years, as racing became something that started happening probably 50, 60 years ago, then we started breeding other sorts of dogs into them, like greyhounds and all kinds ...

      published: 15 Mar 2023
    • Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020

      Want to experience the Iditarod 2020 again? Here are highlights from all days. Thank you for supporting us through the QRILLPAWS 2020. This wouldn't have been possible without you! - What is QRILLPAWS? - QRILLPAWS brings the excitement, joy and extreme performance from the most exotic dog mushing races to a worldwide audience. From the 2020 season, for the first time the sport, the profiles and the adventurous lifestyle will be covered and distributed through new digital platforms and international TV broadcasting. People from around the world will be able to follow the two- and four-legged athletes like never before. The first season of the World Series consists of four legendary and historic dog races across the globe, ultimately determining the world’s best dog mushers. The races are...

      published: 27 Mar 2020
    developed with YouTube
    Meet Iditarod-Winning Sled Dogs
    4:45

    Meet Iditarod-Winning Sled Dogs

    • Order:
    • Duration: 4:45
    • Uploaded Date: 06 May 2015
    • views: 172358
    At VICE Sports we've already gone a long way to tell you that dogs are sports, but these dogs are some of the greatest athletes in the world. Dallas Seavey captured his third Iditarod title in 2015 with the help of his canine friends and has cemented his reputation as the best dog sledder in the world. In this VICE Sports exclusive, we headed up to Willow, Alaska to meet with Seavey and his 100+ dogs. Subscribe to VICE Sports here: http://bit.ly/Subscribe-to-VICE-Sports Check out VICE Sports for more: http://www.vicesports.com Follow VICE Sports here: Facebook: https://facebook.com/VICESports Twitter: https://twitter.com/VICESports Instagram: http://instagram.com/vicesports More videos from the VICE network: https://www.fb.com/vicevideos
    https://wn.com/Meet_Iditarod_Winning_Sled_Dogs
    Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOX
    9:36

    Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOX

    • Order:
    • Duration: 9:36
    • Uploaded Date: 04 Mar 2023
    • views: 18489
    The Iditarod Trail Sled Dog Race starts Sunday and will take racers nearly 1,000 miles across Alaska. This is the 51st running, but its 33 mushers are the smallest field ever to start the race. LiveNOW's Shirley Descorbeth spoke with Iditarod CEO, Rob Urbach about the sport. Subscribe to LiveNOW from FOX! https://www.youtube.com/livenowfox?sub_confirmation=1 Where to watch LiveNOW from FOX: https://www.livenowfox.com/ Follow us @LiveNOWFOX on Twitter: https://twitter.com/livenowfox Raw and unfiltered. Watch a non-stop stream of breaking news, live events and stories across the nation. Limited commentary. No opinion. Experience LiveNOW from FOX.
    https://wn.com/Alaska's_Iconic_Iditarod_Trail_Sled_Dog_Race_Kicks_Off_This_Weekend_|_Livenow_From_Fox
    2022 Iditarod Dog Sled Race | Willow Alaska
    15:07

    2022 Iditarod Dog Sled Race | Willow Alaska

    • Order:
    • Duration: 15:07
    • Uploaded Date: 10 Mar 2022
    • views: 277572
    We attend the annual Iditarod Restart in Willow, Alaska for a day of fun in the sun. This historic race is truly a spectacle to witness from the sidelines. Such a special occasion calls for a campfire cook out complete with stuffed garlic bread and banana boats. We wish all of the mushers and their dog teams a safe journey! Last Year's Iditarod Race (2021) - https://youtu.be/enmfXDb7wbg 𝐎𝐮𝐫 𝟐𝟎𝟐𝟐 𝑨𝒍𝒂𝒔𝒌𝒂 𝑪𝒂𝒍𝒆𝒏𝒅𝒂𝒓 𝐢𝐬 𝐟𝐨𝐫 𝐬𝐚𝐥𝐞! 𝐅𝐨𝐥𝐥𝐨𝐰 𝐥𝐢𝐧𝐤 𝐭𝐨 𝐩𝐮𝐫𝐜𝐡𝐚𝐬𝐞 𝐲𝐨𝐮𝐫 𝐜𝐨𝐩𝐲: ⬇⬇⬇⬇⬇ https://www.createphotocalendars.com/Store/2022+Alaska+Calendar-8134805887 We appreciate you tagging along for our Alaskan adventure 😀 Thank you for watching and supporting our channel! 💙 - Eric & Arielle Illia Music By Epidemic Sound: Why Do You Still Hurt (Instrumental Version) - Pastis (っ◔◡◔)っ ♥ 𝐒𝐡𝐨𝐩 𝐨𝐮𝐫 𝐄𝐭𝐬𝐲 𝐬𝐭𝐨𝐫𝐞 𝐟𝐨𝐫 𝐜𝐮𝐬𝐭𝐨𝐦 𝐓𝐢𝐞 𝐃𝐲𝐞 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 𝐦𝐞𝐫𝐜𝐡𝐚𝐧𝐝𝐢𝐬𝐞: ♥ https://www.etsy.com/shop/SimpleLivingAKTieDye Visit our Amazon store to see the products we use and recommend: https://www.amazon.com/shop/simplelivingalaska Our Amazon affiliate link if you wish to support our channel: https://amzn.to/2Xi9CvE Products used in this video: Sony a6400 Camera: https://amzn.to/3sQrviQ Sigma 16mm Lens: https://amzn.to/3JJAitX Rode VideoMicro Microphone: https://amzn.to/36Afs21 Thermos: https://amzn.to/3I0qCd4 Rabbit Fur Hat: https://amzn.to/3sXGNDN You can also support us through PayPal at: https://www.paypal.me/SimpleLivingAlaska?locale.x=en_US Don't want to miss an episode? You can 🅢🅤🅑🅢🅒🅡🅘🅑🅔 here: http://www.youtube.com/c/SimpleLivingAlaska Our most popular playlist: https://www.youtube.com/watch?v=43yscm4F1pA&list=PL5dzTsBM4zzBbhZowW6uMJD8mdTts66EN 𝐌𝐨𝐫𝐞 𝐅𝐫𝐨𝐦 𝐒𝐢𝐦𝐩𝐥𝐞 𝐋𝐢𝐯𝐢𝐧𝐠 𝐀𝐥𝐚𝐬𝐤𝐚 - 𝑊𝑒𝑏𝑠𝑖𝑡𝑒: https://www.simplelivingalaska.com 𝐹𝑎𝑐𝑒𝑏𝑜𝑜𝑘: https://www.facebook.com/SimpleLivingAlaska 𝐼𝑛𝑠𝑡𝑎𝑔𝑟𝑎𝑚: https://www.instagram.com/simplelivingalaska/ 𝐑𝐞𝐚𝐜𝐡 𝐨𝐮𝐭 𝐭𝐨 𝐮𝐬 - 𝑀𝑎𝑖𝑙: Simple Living Alaska PO Box 506 Willow, AK 99688 We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.
    https://wn.com/2022_Iditarod_Dog_Sled_Race_|_Willow_Alaska
    Iditarod Sled Dogs: Facts To Know
    3:14

    Iditarod Sled Dogs: Facts To Know

    • Order:
    • Duration: 3:14
    • Uploaded Date: 08 Mar 2022
    • views: 39885
    Running 100 miles or more a day, the canines that compete in the Iditarod Trail Sled Dog Race are in a league of their own. #foxweather #weather Download the FOX Weather app: https://www.foxweather.com/app FOX Weather is a 24/7 ad-supported streaming service operated by FOX News Media. The platform builds upon FOX News Channel’s expansive newsgathering units and FOX Television Stations’ added resources with a combined 120 meteorologists for a comprehensive suite of weather products featuring local, regional and national reporting, in addition to live programming. Utilizing multiple radar systems, including an immersive mobile 3D radar, and a vast network of HD cameras located around the country, the service offers users an innovative approach to forecasting, including coverage surrounding all weather patterns, from immediate to long-term. FOX Weather is available via foxweather.com, the FOX Weather app on iOS and Android devices, as well as Tubi, Apple TV, Amazon, and Roku, through FOX’s Connected TV Apps. Follow FOX Weather on Facebook: https://www.facebook.com/FOXWeather/ Follow FOX Weather on Twitter: https://twitter.com/FOXWeather Follow FOX Weather on Instagram: https://www.instagram.com/FOXWeather/ Follow FOX Weather on TikTok: https://www.tiktok.com/@officialfoxweather Follow FOX Weather on LinkedIn: https://www.linkedin.com/company/fox-weather
    https://wn.com/Iditarod_Sled_Dogs_Facts_To_Know
    Saturday Night Iditarod Update
    6:51

    Saturday Night Iditarod Update

    • Order:
    • Duration: 6:51
    • Uploaded Date: 12 Mar 2023
    • views: 3792
    The latest from Iditarod 2023 For more Local News from KTUU: https://www.alaskasnewssource.com/ For more YouTube Content: https://www.youtube.com/channel/UCJZWh6xwfsZe7NrjHo4OvGg
    https://wn.com/Saturday_Night_Iditarod_Update
    Capturing the Iditarod - Behind the Scenes | Life Below Zero
    5:47

    Capturing the Iditarod - Behind the Scenes | Life Below Zero

    • Order:
    • Duration: 5:47
    • Uploaded Date: 22 May 2019
    • views: 130945
    An intrepid film crew travels ten days and a thousand miles, across frozen tundra and cruel terrain, in order to capture the last great race, the Iditarod. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Watch all clips of Life Below Zero here: http://bit.ly/WatchLifeBelowZero #NationalGeographic #Iditarod #LifeBelowZero About Life Below Zero: Life Below Zero follows six people as they battle for the most basic necessities in the state with the lowest population density in the United States. Living at the ends of the world's loneliest roads and subsisting off the rugged Alaskan bush, they battle whiteout snow storms, man-eating carnivores, questionable frozen terrain, and limited resources through a long and bitter winter. Some of them are lone wolves; others have their families beside them. All must overcome despairing odds to brave the wild and survive through to the spring. And when spring arrives in Alaska, rising temperatures bring mounting challenges as they work to prepare for yet another winter. Get More Life Below Zero: Official Site: https://on.natgeo.com/2kgvtSK Facebook: http://bit.ly/LifeBelowZeroFacebook Twitter: http://bit.ly/LifeBelowZeroTwitter About National Geographic: National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta Capturing the Iditarod - Behind the Scenes | Life Below Zero https://youtu.be/_II9swB9MmM National Geographic https://www.youtube.com/natgeo
    https://wn.com/Capturing_The_Iditarod_Behind_The_Scenes_|_Life_Below_Zero
    Iditarod 2023 - Run Dogs Run documentary -
    10:18

    Iditarod 2023 - Run Dogs Run documentary -

    • Order:
    • Duration: 10:18
    • Uploaded Date: 20 Mar 2023
    • views: 302
    #iditarod #mushing #alaska Iditarod 2023 - Run Dogs Run Documentary - Fandub por Rubén Rb - Suscríbete al canal para ver mas vídeos de la Iditarod 2023: https://www.youtube.com/@PowerdogsTv Puedes escucharnos en Ivoox: https://go.ivoox.com/sq/422413 O en Spotify: https://open.spotify.com/show/7mo5Gid4jWRCmX5kWXrhTo?si=13a10f86a1b64bdb Únete al grupo de Telegram para interactuar con nosotros: https://t.me/powerdogscomunidad
    https://wn.com/Iditarod_2023_Run_Dogs_Run_Documentary
    What is the Iditarod? | AK Explained
    3:01

    What is the Iditarod? | AK Explained

    • Order:
    • Duration: 3:01
    • Uploaded Date: 06 Mar 2015
    • views: 329375
    http://www.alaskapublic.org/ How long does the Iditarod Trail Sled Dog Race take to finish? Where does it go? What's with all those dogs? Alaska Public Media answers all of your questions about the most popular sporting event in Alaska. Video Eric Keto Kaysie Ellingson Story John Norris Eric Keto Music “brown&gold” by airtone http://ccmixter.org/files/airtone/23579 “Brass Beat” by Blake http://ccmixter.org/files/blakeht/31638 “Words of Gratitude Soars Heart of Eye” by FACELESSIWONDER http://ccmixter.org/files/FACELESSIWONDER/42779 Photos Frank K. http://commons.wikimedia.org/wiki/File:Anchorage_and_Chugach_Mountains.jpg W. D. Harney http://commons.wikimedia.org/wiki/File:Bird's-eye_View_of_Nome_Alaska_-_1907.jpg D. Sikes http://commons.wikimedia.org/wiki/File:Ice_fog_and_Alaska_Range.jpg Michael Phelps https://www.flickr.com/groups/michael_phelps_phans/
    https://wn.com/What_Is_The_Iditarod_|_Ak_Explained
    Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’
    8:46

    Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’

    • Order:
    • Duration: 8:46
    • Uploaded Date: 15 Mar 2023
    • views: 30644
    The 51st Iditarod Trail Sled Dog Race is concluding during the week of Mar. 13, 2023 in Nome, Alaska. The 1,000-mile race began with a ceremonial start in Anchorage, Alaska, then a restart in Willow. Straight Arrow News spoke with a number of mushers who participated, including the 2022 champion, Brent Sass. “The sled dog was used hundreds of years ago for transportation and moving freight around,” Sass said. “And it comes from the Siberian Huskies and the Malamutes–all those big, northern dogs. But those dogs were good for hauling freight and surviving the weather and the winters, but they weren’t fast. And so over the years, as racing became something that started happening probably 50, 60 years ago, then we started breeding other sorts of dogs into them, like greyhounds and all kinds of different hound dogs and stuff like that to create what we all now consider the Alaskan husky and they say it’s just basically a mutt dog.” Follow Straight Arrow News on social media — Facebook: https://www.facebook.com/straightarrownews Twitter: https://twitter.com/StraightArrow__ Instagram: https://www.instagram.com/straightarrownews/ TikTok: https://www.tiktok.com/@straightarrownews For more SAN content: https://straightarrownews.com Sign up for our weekly newsletters: https://newsletter.straightarrownews.com/.
    https://wn.com/Inside_The_51St_Iditarod_The_Meaning_Behind_The_‘Last_Great_Race_On_Earth’
    Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020
    1:50:09

    Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020

    • Order:
    • Duration: 1:50:09
    • Uploaded Date: 27 Mar 2020
    • views: 96368
    Want to experience the Iditarod 2020 again? Here are highlights from all days. Thank you for supporting us through the QRILLPAWS 2020. This wouldn't have been possible without you! - What is QRILLPAWS? - QRILLPAWS brings the excitement, joy and extreme performance from the most exotic dog mushing races to a worldwide audience. From the 2020 season, for the first time the sport, the profiles and the adventurous lifestyle will be covered and distributed through new digital platforms and international TV broadcasting. People from around the world will be able to follow the two- and four-legged athletes like never before. The first season of the World Series consists of four legendary and historic dog races across the globe, ultimately determining the world’s best dog mushers. The races are unique and great sporting events separately, and by bringing them together in an international championship we believe the sport can reach a totally new level of interest. Learning from the elite – training, nutrition, welfare QRILLPAWS is looking to inspire and influence regular, everyday dog owners — shining a light on the practices of elite dog mushers and the exceptional dog care they provide. The dog mushers will inspire and be a great example for dog owners around the world in regards to training, nutrition, general welfare and guidelines for their own dogs. The 2020 Season The World Series starts in January 2020 in Minnesota, USA with the “John Beargrease Sled Dog Marathon,” before the series takes us to Norway and “Femundløpet”. QPAWS then travels to Russia and ”Volga Quest” before the world finale in Alaska during the legendary “Iditarod Trail Sled Dog Race.” Rob Urbach, CEO of The Iditarod said: “We are proud to be a part of QRILLPAWS, along with the Femund Race, Volga Quest and John Beargrease. With the investments in digital visualization technology and innovative television production, we have great confidence that we will be showcasing our sport in a more experiential and compelling way.” QRILLPAWS Calendar, 2020: John Beargrease, start January 26 Femundløpet, start January 31 Volga Quest, start February 8 Iditarod Finale, start March 7 Showcasing the Sport "This sport has everything; interaction between dogs and humans, amazing Arctic settings, the challenges this extreme environment presents, the exotic places with ancient histories and rich cultural tapestries — all combined with the adventures of completing these races, will provide a magnificent product for audiences worldwide. For us, it will be important to show the joy the dogs have while racing down the trail and the competence these dog mushers embody,” says Matts Johansen. About the Qrill Pet Arctic World Series QRILLPAWS will highlight the sport of long-distance dog mushing. The aim is to help the sport and the mushing community to grow and to strengthen the separate race organizations, as well as showcase the worldclass dog care that the sport is famous for. The series is based on a joint point system, advanced digital visualization of GPS tracking, as well as television production and distribution. QRILLPAWS was established as a non-profit sports series through an initiative by Aker BioMarine. All proceeds go back to the events and as investments in the sport of long distance dog mushing. For more information: www.q-paws.com The organiser of the QRILLQPAWS is the Norwegian company Aker BioMarine. Aker BioMarine is a biotech innovator and Antarctic krill-harvesting company, dedicated to improving human and planetary health. The company develops krill-based ingredients for nutraceutical, aquaculture, and animal feed applications. The company’s fully transparent value chain stretches from sustainable krill harvesting in pristine Antarctic waters through its Montevideo logistics hub, Houston production plant, and all the way to customers around the world. Aker BioMarine is fully owned by the Norwegian holding company Aker ASA, an industrial pioneer since its establishment in 1841. QRILL Pet is the brand name for Aker BioMarine’s high quality nutrition for pets. Dog owners can take advantage of this ingredient in dog food brands all over the world. Look for the ”Powered by QRILL Pet” logo on the package. akerbiomarine.com Contact persons: Aker BioMarine, owner and organiser: Sigmund Nordal, Marketing director: (+47) 99011480 Qrill Pet Arctic World Series Nils Marius Otterstad, Project Manager: (+47) 95745754 QRILLPAWS events: Femundløpet: post@femundlopet.no Volga Quest: volgaquest@mail.ru John Beargrease: info@beargrease.com Iditarod Trail Committee: Rob Urbach, CEO, rob.urbach@iditarod.com
    https://wn.com/Iditarod_2020_Highlights_From_All_Days_|_Qrillpaws_2020
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Meet Iditarod-Winning Sled Dogs
      4:45
      Meet Iditarod-Winning Sled Dogsremove from playlist
    • Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOX
      9:36
      Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOXremove from playlist
    • 2022 Iditarod Dog Sled Race | Willow Alaska
      15:07
      2022 Iditarod Dog Sled Race | Willow Alaskaremove from playlist
    • Iditarod Sled Dogs: Facts To Know
      3:14
      Iditarod Sled Dogs: Facts To Knowremove from playlist
    • Saturday Night Iditarod Update
      6:51
      Saturday Night Iditarod Updateremove from playlist
    • Capturing the Iditarod - Behind the Scenes | Life Below Zero
      5:47
      Capturing the Iditarod - Behind the Scenes | Life Below Zeroremove from playlist
    • Iditarod 2023 - Run Dogs Run documentary -
      10:18
      Iditarod 2023 - Run Dogs Run documentary -remove from playlist
    • What is the Iditarod? | AK Explained
      3:01
      What is the Iditarod? | AK Explainedremove from playlist
    • Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’
      8:46
      Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’remove from playlist
    • Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020
      1:50:09
      Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Meet Iditarod-Winning Sled Dogs

    At VICE Sports we've already gone a long way to tell you that dogs are sports, but these dogs are some of the greatest athletes in the world. Dallas Seavey captured his third Iditarod title in 2015 with the help of his canine friends and has cemented his reputation as the best dog sledder in the world. In this VICE Sports exclusive, we headed up to Willow, Alaska to meet with Seavey and his 100+ dogs. Subscribe to VICE Sports here: http://bit.ly/Subscribe-to-VICE-Sports Check out VICE Sports for more: http://www.vicesports.com Follow VICE Sports here: Facebook: https://facebook.com/VICESports Twitter: https://twitter.com/VICESports Instagram: http://instagram.com/vicesports More videos from the VICE network: https://www.fb.com/vicevideos
    4:45
    Meet Iditarod-Winning Sled Dogs
    At VICE Sports we've already gone a long way to tell you that dogs are sports, but these d...
    published: 06 May 2015
    Play in Full Screen
    9:36
    Alaska's iconic Iditarod Trail Sled Dog Race kicks off this weekend | LiveNOW from FOX
    The Iditarod Trail Sled Dog Race starts Sunday and will take racers nearly 1,000 miles acr...
    published: 04 Mar 2023
    Play in Full Screen
    15:07
    2022 Iditarod Dog Sled Race | Willow Alaska
    We attend the annual Iditarod Restart in Willow, Alaska for a day of fun in the sun. This ...
    published: 10 Mar 2022
    Play in Full Screen
    3:14
    Iditarod Sled Dogs: Facts To Know
    Running 100 miles or more a day, the canines that compete in the Iditarod Trail Sled Dog R...
    published: 08 Mar 2022
    Play in Full Screen
    6:51
    Saturday Night Iditarod Update
    The latest from Iditarod 2023 For more Local News from KTUU: https://www.alaskasnew...
    published: 12 Mar 2023
    Play in Full Screen
    5:47
    Capturing the Iditarod - Behind the Scenes | Life Below Zero
    An intrepid film crew travels ten days and a thousand miles, across frozen tundra and crue...
    published: 22 May 2019
    Play in Full Screen
    10:18
    Iditarod 2023 - Run Dogs Run documentary -
    #iditarod #mushing #alaska Iditarod 2023 - Run Dogs Run Documentary - Fandub por Rubén R...
    published: 20 Mar 2023
    Play in Full Screen
    3:01
    What is the Iditarod? | AK Explained
    http://www.alaskapublic.org/ How long does the Iditarod Trail Sled Dog Race take to finis...
    published: 06 Mar 2015
    Play in Full Screen
    8:46
    Inside the 51st Iditarod: The meaning behind the ‘Last Great Race on Earth’
    The 51st Iditarod Trail Sled Dog Race is concluding during the week of Mar. 13, 2023 in No...
    published: 15 Mar 2023
    Play in Full Screen
    1:50:09
    Iditarod 2020 Highlights from ALL DAYS | QRILLPAWS 2020
    Want to experience the Iditarod 2020 again? Here are highlights from all days. Thank you f...
    published: 27 Mar 2020
    Play in Full Screen

    Iditarod Trail Sled Dog Race

    The Iditarod Trail Sled Dog Race is an annual long-distance sled dog race run in early March from Anchorage to Nome, which takes place entirely in the US state of Alaska. Mushers and a team of 16 dogs, of which at least 6 must be on the towline at the finish line, cover the distance in 9–15 days or more. The Iditarod began in 1973 as an event to test the best sled dog mushers and teams but evolved into today's highly competitive race. The current fastest winning time record was set in 2014 by Dallas Seavey with a time of 8 days, 13 hours, 4 minutes, and 19 seconds. As of 2012, Dallas Seavey was also the youngest musher to win the race at the age of 25, while as of 2013, at the age of 53, Dallas' father Mitch Seavey was the oldest person to ever win the race.

    Teams generally race through blizzards causing whiteout conditions, sub-zero temperatures and gale-force winds which can cause the wind chill to reach −100 °F (−73 °C). A ceremonial start occurs in the city of Anchorage and is followed by the official restart in Willow, a city 80 miles north of Anchorage. The restart was originally in Wasilla, but because of too little snow, the restart was permanently moved to Willow in 2008. The trail runs from Willow up the Rainy Pass of the Alaska Range into the sparsely populated interior, and then along the shore of the Bering Sea, finally reaching Nome in western Alaska. The trail is through a harsh landscape of tundra and spruce forests, over hills and mountain passes, and across rivers. While the start in Anchorage is in the middle of a large urban center, most of the route passes through widely separated towns and villages, and small Athabaskan and Iñupiat settlements. The Iditarod is regarded as a symbolic link to the early history of the state and is connected to many traditions commemorating the legacy of dog mushing.

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

    Latest News for: iditarod

    Edit

    News Man Weekly: Mansfield police on the hunt for a brutal, cold-case killer

    Richland Source 14 Jan 2025
    MANSFIELD — The 29th episode of the News Man Weekly podcast has dropped ... .
    Edit

    Iditarod prep: Mansfield’s Matthew Failor to mush Saturday in Copper Basin 300

    Richland Source 10 Jan 2025
    That means Failor will launch his 14th Iditarod effort when the nearly 1,000-mile race begins its 53rd campaign with a ceremonial start in Anchorage on March 1, an effort that begins on Saturday with the first of two shorter prep races.
    Edit

    LOOKING BACK: 100 years ago this month cars, snow and the birth of the Iditarod

    Finger Lakes Times 04 Jan 2025
    I recently scrolled through microfilm of the Geneva Daily Times to see what was happening 100 years ago this month. I began with Dec. 31, 1924. The paper devoted the issue to looking back at the past year. I was ... .
    Edit

    6-time Iditarod champion opens new private dog sledding adventure business in Summit County

    Vail Daily 29 Dec 2024
    Founded in 2024 by third-generation dog musher and the only six-time Iditarod champion, Dallas Seavey, Colorado Dog Sledding transports guests back to Alaska in the early 1900’s for a private dog sledding adventure.
    Edit

    6-time Iditarod champion opens new private dog sledding adventure business in Colorado’s ski capital, Summit County

    Summit Daily 29 Dec 2024
    Founded in 2024 by third-generation dog musher and the only six-time Iditarod champion, Dallas Seavey, Colorado Dog Sledding transports guests back to Alaska in the early 1900’s for a private dog sledding adventure.
    Edit

    Mountain Men Season 13 finale: Lauro Eklund’s Iditarod journey comes to an end

    Monsters & Critics 27 Dec 2024
    In the season finale of Mountain Men, which aired on December 26, 2024, viewers witnessed rookie musher Lauro Eklund’s relentless pursuit to complete the grueling Iditarod Trail Sled Dog Race.
    Edit

    RTP Grant Application - Iditarod National Historic Trail: Waterfall to Ptarmigan Trail (Alaska Department of Natural Resources)

    Public Technologies 31 Oct 2024
    RTP Grant Application - Iditarod National Historic Trail ... RTP Grant Application - Iditarod National Historic Trail ... build approximately 2.8 miles of new trail along the Iditarod National Historic Trail.
    Edit

    Documentary highlights Dallas Seavey's historic 2024 Iditarod win (University of Alaska Fairbanks)

    Public Technologies 18 Sep 2024
    ) Documentary highlights Dallas Seavey's historic 2024 Iditarod win ... A documentary about Dallas Seavey's historic sixth victory in the Iditarod Trail Sled Dog Race will be screened on the University of Alaska Fairbanks Troth Yeddha' Campus at 6 p.m.
    Edit

    DOG SLED SHOPPING CART IDITAROD RACE

    Bitchute 09 Sep 2024
    Go to the source via the article link to view the video or lcik the video icon ....
    Edit

    The Iditarod through the eyes of a veterinarian: 'Four Thousand Paws'

    Fairbanks Daily News-Miner 28 Jul 2024
    So many books have been written about the Iditarod that it’s fair to ask if any new angles can be found. Histories, personal memoirs, and accounts by reporters who have covered the race abound. But until now, one aspect has ... .
    Edit

    Next up for adventurer Emily Ford: Iditarod sled dog race

    Hastings Tribune 27 Jun 2024
    DULUTH, Minn. — While many Northlanders are just getting into the swing of warm, midsummer days, flip-flops and swimsuits, Emily Ford is already thinking ahead to two weeks of brutal cold and snow next March in the wilds of Alaska ... .
    Edit

    Housing Iditarod

    Cook County News Herald 21 Jun 2024
    Login. Sign up for complimentary access ... Close ....

    Most Viewed

    ×