Curling              var ItemSlideShowPhoto = new Class( { Extends : GenericItemSlideShow, //Ajax request which generate more links tab (Json Serialize) retrieveRelatedLinks:function(ParamUrl, type) { objectItemSlideShow = this; ajaxRequest = new Request.HTML({ method: 'get', url: ParamUrl, onSuccess: function(response, responseElements, responseHTML, responseJavaScript) { //Update MegaDropDown CSS for calcul the size var desc = $('desc_content_to_slide'); desc.getElement('.content').setStyle('display', 'block'); var RGContainer = $$('#desc_content_to_slide .more .column .rg'); var MFContainer = $$('#desc_content_to_slide .more .column .mf'); desc.setStyle('height', 'auto'); // pour dire fait la hauteur de ton contenu var Mobject = eval(" (" + responseHTML + ") "); //switch for clean the good container switch(type) { case 'RelatedGalleries': RGContainer[0].empty(); break; case 'MoreFact': MFContainer[0].empty(); break; } //call à function which generate HTML objectItemSlideShow.injectMoreLinks(Mobject, type); //console.log(Mobject); //Update MegaDropDown CSS for calcul the size $$('#photo .toggler .trigger', '#photoGallery .trigger').removeClass('collapse'); descHeight = desc.getSize().y; // refresh descHeight with the new height which is automatic desc.setStyle('height', 0); // Now that's not automatic } }).send(); }, //That function is used to create and inject HTML element for more links injectMoreLinks:function(ListObject, injectType) { //I select the good container if (injectType == 'RelatedGalleries') { var RGContainer = $$('#desc_content_to_slide .more .column .rg'); } else { if (injectType == 'MoreFact') { var RGContainer = $$('#desc_content_to_slide .more .column .mf'); } } //For each links it's generate balise and

with their setting for (i = 0; i < ListObject.length; i++) { var pElement = new Element('p'); var link = new Element('a'); link.set('href', ListObject[i].Href); link.innerHTML = ListObject[i].Texte; link.inject(pElement); pElement.inject(RGContainer[0]); } }, //That function will call Ajax request for Related Galleries and More Fact links switchMoreLinks:function(DefaultIndex) { var pageRefId = ListObject[DefaultIndex].PageLink.ID; var pageReflangue = ListObject[DefaultIndex].Langue; var LinkType = ListObject[DefaultIndex].Langue; var PageID = '<%= this.PageID %>'; MoreLinkType = 'MoreFact'; var url = '/AjaxScripts/retrieveRelatedLinks.aspx?pageRefId=' + pageRefId + '&pageReflangue=' + pageReflangue + '&LinkType=' + MoreLinkType + '&PageID=' + PageID; retrieveRelatedLinks(url, MoreLinkType); // AJAX call MoreLinkType = 'RelatedGalleries'; var url = '/AjaxScripts/retrieveRelatedLinks.aspx?pageRefId=' + pageRefId + '&pageReflangue=' + pageReflangue + '&LinkType=' + MoreLinkType + '&PageID=' + PageID; retrieveRelatedLinks(url, MoreLinkType); // AJAX call }, //Ajax request which generate ItemDataMedia (Json serialize) RetrieveData:function(pUrl,pAsync) { var Item = this; ajaxRequest = new Request.JSON( { method: 'get', url: pUrl+'&itemtoload='+this.NumItem, async :pAsync, } ); ajaxRequest.addEvent('success',function(responseJSON, responseText){ Item.ItemDataMedia = responseJSON; }); ajaxRequest.send(); }, RenderItem:function(pSlideShow) { var ContainerHtmlItem = $$('.photo-slider .image')[0]; //clean the HTML container ContainerHtmlItem.empty(); var picture = new Element('img'); picture.addEvent('load', function() { pSlideShow.RenderComplete(); }); var DefaultIndex = 0; var titre = $$('#photo .ItemTitle')[0]; var descrip = $$('#desc_content_to_slide .desc')[0]; var author = $$('#author')[0]; picture.set('src', this.ItemDataMedia.HighQualitySrc); titre.set('text', this.ItemDataMedia.Title); descrip.set('text', this.ItemDataMedia.Description); author.set('text', this.ItemDataMedia.Copyright); var pageRefId = this.ItemDataMedia.PageLink.ID; var pageReflangue = this.ItemDataMedia.Langue; var PageID = '<%= this.PageID %>'; var MFContainer = $$('#desc_content_to_slide .more .column .mf'); MFContainer[0].empty(); var RGContainer = $$('#desc_content_to_slide .more .column .rg'); RGContainer[0].empty(); //Ajax request for More Fact links var MoreLinkType = 'MoreFact'; var url = '/AjaxScripts/retrieveRelatedLinks.aspx?pageRefId=' + pageRefId + '&pageReflangue=' + pageReflangue + '&LinkType=' + MoreLinkType + '&PageID=' + PageID; this.retrieveRelatedLinks(url, MoreLinkType); // AJAX call //Ajax request for Related Galleries links MoreLinkType = 'RelatedGalleries'; var url = '/AjaxScripts/retrieveRelatedLinks.aspx?pageRefId=' + pageRefId + '&pageReflangue=' + pageReflangue + '&LinkType=' + MoreLinkType + '&PageID=' + PageID; this.retrieveRelatedLinks(url, MoreLinkType); // AJAX call //Call the function which will generate the DropDown this.dropDownGenerate(); picture.inject(ContainerHtmlItem); }, //That function will generate the MégaDropDown dropDownGenerate:function() { var desc = $('desc_content_to_slide'); desc.getElement('.content').setStyle('display', 'block'); descHeight = desc.getElement('.content').getSize().y; descHeight = (descHeight + 35); var visible = false; desc.setStyle('overflow', 'hidden'); desc.setStyle('height', '0px'); //photo-info $$('#photo .toggler .trigger', '#photoGallery .trigger').addEvent('click', function() { var descToSlide = new Fx.Morph(desc, { duration: 'short', transition: Fx.Transitions.Sine.easeOut }); // Initialise une animation // Open if (!visible) { $(this).addClass('collapse'); // Launch the animation and increase div size untill descHeight descToSlide.start({ 'height': descHeight }); visible = true; } else { // Close $(this).removeClass('collapse'); // Launch the animation and decrease div size untill 0 descToSlide.start({ 'height': 0 }); visible = false; } }); } }); var SlideShowGalery = new Class({ Extends : GenericSlideShow, initialize:function(pTypeItem, pButtonPrevious, pButtonNext) { Item =this; Item.parent(pTypeItem, pButtonPrevious, pButtonNext); //That is used for ADD Arrow $$('.photo-slider .paging').addEvent('mouseover', function() { Item.clearTimeArrow(); Item.appearArrow(); return false; }); //That is used for REMOVE Arrow $$('.photo-slider .paging').addEvent('mouseout', function() { Item.timeArrow(); return false; }); //I call it on load Item.timeArrow(); }, //That function is used for remove right and left arrow thanks to a timer : timeArrow() disappearArrow:function() { $$('.photo-slider .paging .next').fade('out'); $$('.photo-slider .paging .prev').fade('out'); }, //That function is used for add right and left arrow appearArrow:function() { $$('.photo-slider .paging .next').fade('in'); $$('.photo-slider .paging .prev').fade('in'); }, //That function is a timer for remove right and left arrow timeArrow:function() { Slideshow=this; this.timer = setTimeout(function() { Slideshow.disappearArrow(); }, 6000); }, clearTimeArrow:function() { clearTimeout(this.timer); }, }); var SlideShow; function DisplayPhoto(pIdPhoto) { var vurl = '/ajaxscripts/getpositionofmediaingalery.aspx?idgalery=' + pageRefId + '&lng=' + lng + '&idmedia=' + pIdPhoto; // build the URL to get HTML for videos //Get the position of Photo to reload slideshow var vPos = -1; ajaxRequest = new Request.JSON({ method: 'get', url: vurl, onSuccess: function(responseJSON){ vPos = responseJSON; if (vPos != -1) { if (vPos <= 1) vItemPrevious = SlideShow.GetNewItem(pNbElement); else vItemPrevious = SlideShow.GetNewItem(vPos - 1); vItemCurrent = SlideShow.GetNewItem(vPos); vItemNext = SlideShow.GetNewItem(vPos + 1); var vUrlService = '/ajaxscripts/retrieveitemmedia.aspx?datasourcepageid=' + pageRefId + '&vLng=' + lng; vItemPrevious.RetrieveData(vUrlService, false); vItemCurrent.RetrieveData(vUrlService, false); vItemNext.RetrieveData(vUrlService, false); SlideShow.Load(vUrlService, NbElements, vItemPrevious, vItemCurrent, vItemNext, true); } } }).send(); } window.addEvent('domready', function() { //Configure and start slideshow var vLng = 'en'; var vDataSourcePageId = 160783; var vNbElement = 104; var vUrlService = '/ajaxscripts/retrieveitemmedia.aspx?datasourcepageid='+vDataSourcePageId+'&vLng='+vLng; var vButtonNext=$$('#photo .photo-slider .paging .next')[0]; var vButtonPrev=$$('#photo .photo-slider .paging .prev')[0]; var linkG = $$('.photo-slider .paging .linkG')[0]; var linkD = $$('.photo-slider .paging .linkD')[0]; var vItemPrevious = new ItemSlideShowPhoto(vNbElement); vItemPrevious.RetrieveData(vUrlService,false); var vItemCurrent = new ItemSlideShowPhoto(1); vItemCurrent.RetrieveData(vUrlService,false); var vItemNext = new ItemSlideShowPhoto(2); vItemNext.RetrieveData(vUrlService,false); SlideShow= new SlideShowGalery('ItemSlideShowPhoto',vButtonPrev, vButtonNext); linkG.addEvent('click',function(){SlideShow.NextSlide(SlideShow);}); linkD.addEvent('click',function(){SlideShow.PreviousSlide(SlideShow);}); SlideShow.addEvent('RenderComplete',function(){ picture = $$('.photo-slider .image img')[0]; //When the picture is loaded, the span size is calculated wid = ((picture.getWidth() / 2) - 100); var linkG = $$('.photo-slider .paging .linkG')[0]; var linkD = $$('.photo-slider .paging .linkD')[0]; //var height = picture.getSize().y; //right side linkD.setStyle('height', picture.getHeight()); linkD.setStyle('width', wid); linkD.setStyle('left', picture.offsetLeft + 'px'); //left side linkG.setStyle('height', picture.getHeight()); linkG.setStyle('width', wid); linkG.setStyle('right', picture.offsetLeft + 'px'); }); SlideShow.Load(vUrlService,vNbElement,vItemPrevious, vItemCurrent, vItemNext, true); $$("#ctl00_mainContent_SetPhotoBlock_ddlPlaylist").addEvent('changed', function() { vDataSourcePageId = $$("#ctl00_mainContent_SetPhotoBlock_ddlPlaylist").getSelected()[0].get('value'); var NbElements = vDataSourcePageId[0].substr(vDataSourcePageId[0].lastIndexOf('_') + 1); vDataSourcePageId = vDataSourcePageId[0].substring(0, vDataSourcePageId[0].lastIndexOf('_')); vItemPrevious = new ItemSlideShowPhoto(NbElements); vItemCurrent = new ItemSlideShowPhoto(1); vItemNext = new ItemSlideShowPhoto(2); vUrlService = '/ajaxscripts/retrieveitemmedia.aspx?datasourcepageid='+vDataSourcePageId+'&vLng='+vLng; vItemPrevious.RetrieveData(vUrlService,false); vItemCurrent.RetrieveData(vUrlService,false); vItemNext.RetrieveData(vUrlService,false); SlideShow.Load(vUrlService,NbElements,vItemPrevious, vItemCurrent, vItemNext, true); }); });                                    Olympic.orgOfficial website of the Olympic Movement       English  |  Français    Follow us              The Olympic Games                   Olympics                   Olympics          window.addEvent('load', function() { new GoogleSearch('ctl00_SearchBlock_TxtBoxSearch', 'ctl00_SearchBlock_SearchButton_hlnkButton', 'https://web.archive.org./web/20130328200330/http://www.olympic.org/results'); });    Search all results & Olympic medallists Search    Go        window.onload = function() {tabbutton_143438_build();tabbutton_143432_build();tabbutton_143430_build();tabbutton_143433_build();tabbutton_143434_build();tabbutton_143435_build();tabbutton_143428_build();tabbutton_166107_build();tabbutton_143436_build();tabbutton_143431_build();tabbutton_166199_build(); };   Home     Olympic Games         All Games since 1896London 2012Vancouver 2010Beijing 2008Turin 2006Athens 2004Salt Lake 2002       Olympic Games    Sochi 2014 Less than one year to go!      Rio 2016 Golf course design revealed!     PyeongChang 2018 1st Coordination Commission held     Host City Election How does the IOC choose?           PAST OLYMPICS   London 2012     The spirit of the London 2012 Olympic Games will live on forever in the hearts of millions of people.     Watch all the highlights from London 2012!     Relay gold for Bolt and the Jamaican 4x100 team      Nicola Adams makes Olympic boxing history      Michael Phelps bows out with relay gold      Magic moments from the Closing Ceremony                       The first ancient Olympic Games can be traced back to 776 BC  Ancient Olympic Games           Re-live the Games! Watch all the highlights in our  London 2012 Video Gallery            li#tabbutton_143438 div#tabbutton_143438_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143438:hover div#tabbutton_143438_subnav{ display:block !important;}div#tabbutton_143438_subnav a:hover{ color:#209900 !important;}   YOG                Youth Olympic Games    Singapore 2010 Re-live the first YOG ever!     Innsbruck 2012 Check out the highlights!     Nanjing 2014 China gets ready for YOG!     Lillehammer 2016 Discover the next Winter YOG!           The best YOG videos   We will never forget you, Yoggl       All the best moments from Innsbruck 2012     Ben Ferguson flies much higher than any of his rivals      Russia and Finland meet in the ice hockey final     Takanashi flies as Innsbruck 2012 takes off      Yan powers to Men's Figure Skating Gold     Re-live the Opening Ceremony                       What is YOG?  Participating in sport, having fun and learning!           YOG on the Road to Sochi 2014  Are you ready for Sochi 2014?             li#tabbutton_143432 div#tabbutton_143432_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143432:hover div#tabbutton_143432_subnav{ display:block !important;}div#tabbutton_143432_subnav a:hover{ color:#9BC627 !important;}   Sports                    There are few better ways of developing physical and mental strength.  In the spotlight - Archery           Badminton is guaranteed to sharpen the reflexes!  In the spotlight - Badminton                Summer Sports   Aquatics  Diving Swimming Synchronized Swimming Water polo   Archery  Athletics  Badminton  Basketball  Boxing  Canoe kayak  Slalom Sprint   Cycling  Cycling BMX Cycling Road Cycling Track Mountain Bike     Equestrian  Dressage Eventing Jumping   Fencing  Football  Golf  Gymnastics  Artistic Gymnastics Rhythmic Gymnastics Trampoline   Handball  Hockey  Judo  Modern pentathlon  Rowing  Rugby    Sailing  Shooting  Table tennis  Taekwondo  Tennis  Triathlon  Volleyball  Beach volleyball Volleyball   Weightlifting  Wrestling  Greco-Roman Freestyle      Winter Sports   Biathlon  Bobsleigh  Bobsleigh Bobsleigh Skeleton   Curling  Ice Hockey  Luge  Skating  Figure skating Short Track Speed Skating Speed Skating   Skiing  Alpine Skiing Cross Country Skiing Freestyle Skiing Nordic Combined Ski Jumping Snowboard              li#tabbutton_143430 div#tabbutton_143430_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143430:hover div#tabbutton_143430_subnav{ display:block !important;}div#tabbutton_143430_subnav a:hover{ color:#0066FF !important;}   Athletes         Find an Olympic AthleteAll Medals and RecordsFollow Athletes on Social MediaDiscover the Athletes' Space       Olympic Champions    Michael Phelps 18 Olympic Gold Medals!     Nadia Comaneci  The first perfect ten!     Roger Federer Tennis doubles champion in Beijing!     Michael Jordan Dream Olympic performance           Featured Athletes  Elena Isinbaeva     With the pole vault gold medal assured at the Beijing 2008 Games, Isinbayeva went for the world record of 5.05m, and thrilled the crowd by achieving it at her third attempt.     Record Vault in Beijing!                  Usain Bolt     Lightning Bolt!     Bolt thunders to 100m gold!     Bolt leads Jamaican 200m clean-sweep     Tips from Usain Bolt’s Manager                   Birgit Fischer’s achievements make her one of the greatest olympians of all time.  12 medals in 24 years           He shook the world by winning four sprint golds in 1936.  Jesse Owens’ Berlin glory             li#tabbutton_143433 div#tabbutton_143433_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143433:hover div#tabbutton_143433_subnav{ display:block !important;}div#tabbutton_143433_subnav a:hover{ color:#D9001E !important;}   Countries                    China is the dominant force in table tennis.  China and table tennis           Kenya is one of long-distance running’s dominant forces.  Kenya and athletics           Featured Video   Discover the Youth Development Centre London 2012 hopefuls are making most of the Olympic Youth Development Centre in Zambia                India won all six gold medals between 1928 and 1956.  India and hockey           Japan is by far the most successful nation in judo.  Japan and Judo            li#tabbutton_143434 div#tabbutton_143434_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143434:hover div#tabbutton_143434_subnav{ display:block !important;}div#tabbutton_143434_subnav a:hover{ color:#FF6600 !important;}   Olympism         Sport for allDevelopment through sportEducation through sportWomen and SportPeace through sportSport and Environment           The IOC on Social Media   How to stay connected           From Olympia to the Host City  The Olympic Torch Relay           Olympic Legacy    Beyond the Finish Line When an athlete crosses the finish line, the story of those Games is far from over. Check out the new Olympic Legacy section!                Setting new standards at sports events  The IOC's sustainability initiatives            The Olympic Studies Centre  Discover official references and sources on Olympism            li#tabbutton_143435 div#tabbutton_143435_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143435:hover div#tabbutton_143435_subnav{ display:block !important;}div#tabbutton_143435_subnav a:hover{ color:#9933FF !important;}   Photos         Sochi 2014London 2012Vancouver 2010Beijing 2008Turin 2006Athens 2004Salt Lake City 2002           London 2012  Watch the best images from the last Olympic Games!           Vancouver 2010  Re-live the last Winter Games!           Ready for Sochi 2014?   Get ready for Sochi 2014 - the next Winter Games are less than a year away ! Discover our brand-new photo gallery! And meet the mascots!                Freestyle Skiing  Take off with our amazing photo gallery!           Curling  See the best pictures from past Games!            li#tabbutton_143428 div#tabbutton_143428_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143428:hover div#tabbutton_143428_subnav{ display:block !important;}div#tabbutton_143428_subnav a:hover{ color:#DC5F73 !important;}   Videos         London 2012Vancouver 2010Beijing 2008Turin 2006Athens 2004Salt Lake City 2002Sydney 2000           Ice Hockey Video Gallery  Watch the best scenes from past Games!           The Volunteers  Meet the champions of the Games !           Best of London 2012   Re-live some of the most exciting moments of these Games and watch the performances of the world's greatest athletes in our highlights video!                See you in Sochi!   Check our latest video and get to know more about Sochi!           Celebrating our female heroes!  Watch here some of the greatest moments in Olympic history            li#tabbutton_166107 div#tabbutton_166107_subnav{ display:none !important; overflow: hidden;}li#tabbutton_166107:hover div#tabbutton_166107_subnav{ display:block !important;}div#tabbutton_166107_subnav a:hover{ color:#64A0C8 !important;}   The IOC                All about the IOC    The Organisation How is the IOC administered?     Revenue Sources and Distribution The IOC distributes over 90% of its revenues.     Broadcasting Find out all about the IOC’s broadcast policy      Sponsors Support from the business community is crucial.           Watch the top videos   The first medal for an Afghan athlete       All about the IOC's Athlete Career Programme     See how sport can generate hope     Making the vision of sustainable Games a reality     Sport brings relief to kids in Haiti     Discover the IOC Youth Development Centre in Zambia                       Olympic Solidarity’s aim is to organise assistance for NOCs.  Discover Olympic Solidarity           The XIII Olympic Congress in 2009 brought together over 1.000 participants.  Find all the outcomes here            li#tabbutton_143436 div#tabbutton_143436_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143436:hover div#tabbutton_143436_subnav{ display:block !important;}div#tabbutton_143436_subnav a:hover{ color:#03A0C3 !important;}   News      The Olympic  Museum         All about the MuseumDiscover the Treasures of the Olympic MuseumAll the Virtual Exhibitions           Virtual Exhibition  Discover 20 years of Olympic emotion           Virtual Exhibition  When sport can change the world           The Olympic Museum    The Olympic Museum in full metamorphosis The renovation of the institution aims to place The Olympic Museum in Lausanne among the great museums of the 21st century.                How well do you know the Games?  Discover how you can work on Olympic topics in class!           Miga, Quatchi, Sumi and Mukmuk  Meet the Vancouver mascots!            li#tabbutton_143431 div#tabbutton_143431_subnav{ display:none !important; overflow: hidden;}li#tabbutton_143431:hover div#tabbutton_143431_subnav{ display:block !important;}div#tabbutton_143431_subnav a:hover{ color:#FD0065 !important;}   Shop                    Only available in the online shop: Travel back in time to the London 1948 Games!  London 1948 Jacket           Never out of fashion since London 1948: The Women's hoodie!  London 1948 Hoodie           The Olympic Shop   Discover our brand new Olympic Shop Pins, posters, clothes and other souvenirs: Re-live the magic of the Games of the past and get your gear in our new online shop!                 Get the T-Shirt with the original logo of the London 1948 Olympic Games!  London 1948 T-Shirt           Limited edition: An exact replica!  Muhammad Ali's sports bag from Rome 1960            li#tabbutton_166199 div#tabbutton_166199_subnav{ display:none !important; overflow: hidden;}li#tabbutton_166199:hover div#tabbutton_166199_subnav{ display:block !important;}div#tabbutton_166199_subnav a:hover{ color:#D93861 !important;}   .tabbutton_143429 *, .Selectedtabbutton_143429 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143429L, .tabbutton_143429R, .Selectedtabbutton_143429L, .Selectedtabbutton_143429R { width: 3px; } a.tabbutton_143429, a:visited.tabbutton_143429 { color: #000; } a.Selectedtabbutton_143429, li#tabbutton_143429:hover a.tabbutton_143429 { color: #fff;} .tabbutton_143429C, .Selectedtabbutton_143429C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143429 span.tabbutton_143429L, a.tabbutton_143429:visited span.tabbutton_143429L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidegreyLarge.gif) no-repeat 100% 0px; } a.tabbutton_143429 span.tabbutton_143429R, a.tabbutton_143429:visited span.tabbutton_143429R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidegreyLarge.gif) no-repeat; } a.tabbutton_143429 span.tabbutton_143429C, a.tabbutton_143429:visited span.tabbutton_143429C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCentergreyLarge.gif) repeat-x;} li#tabbutton_143429:hover a.tabbutton_143429 span.tabbutton_143429L, a.Selectedtabbutton_143429 span.Selectedtabbutton_143429L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidegreyLarge.gif) no-repeat 100% 100%; } li#tabbutton_143429:hover a.tabbutton_143429 span.tabbutton_143429R, a.Selectedtabbutton_143429 span.Selectedtabbutton_143429R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidegreyLarge.gif) no-repeat 0px 100%; } li#tabbutton_143429:hover a.tabbutton_143429 span.tabbutton_143429C, a.Selectedtabbutton_143429 span.Selectedtabbutton_143429C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCentergreyLarge.gif) repeat-x 0px 100%; }  .tabbutton_143438 *, .Selectedtabbutton_143438 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143438L, .tabbutton_143438R, .Selectedtabbutton_143438L, .Selectedtabbutton_143438R { width: 3px; } a.tabbutton_143438, a:visited.tabbutton_143438 { color: #000; } a.Selectedtabbutton_143438, li#tabbutton_143438:hover a.tabbutton_143438 { color: #fff;} .tabbutton_143438C, .Selectedtabbutton_143438C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143438 span.tabbutton_143438L, a.tabbutton_143438:visited span.tabbutton_143438L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideGreenLarge.gif) no-repeat 100% 0px; } a.tabbutton_143438 span.tabbutton_143438R, a.tabbutton_143438:visited span.tabbutton_143438R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideGreenLarge.gif) no-repeat; } a.tabbutton_143438 span.tabbutton_143438C, a.tabbutton_143438:visited span.tabbutton_143438C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterGreenLarge.gif) repeat-x;} li#tabbutton_143438:hover a.tabbutton_143438 span.tabbutton_143438L, a.Selectedtabbutton_143438 span.Selectedtabbutton_143438L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideGreenLarge.gif) no-repeat 100% 100%; } li#tabbutton_143438:hover a.tabbutton_143438 span.tabbutton_143438R, a.Selectedtabbutton_143438 span.Selectedtabbutton_143438R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideGreenLarge.gif) no-repeat 0px 100%; } li#tabbutton_143438:hover a.tabbutton_143438 span.tabbutton_143438C, a.Selectedtabbutton_143438 span.Selectedtabbutton_143438C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterGreenLarge.gif) repeat-x 0px 100%; }  .tabbutton_143432 *, .Selectedtabbutton_143432 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143432L, .tabbutton_143432R, .Selectedtabbutton_143432L, .Selectedtabbutton_143432R { width: 3px; } a.tabbutton_143432, a:visited.tabbutton_143432 { color: #000; } a.Selectedtabbutton_143432, li#tabbutton_143432:hover a.tabbutton_143432 { color: #fff;} .tabbutton_143432C, .Selectedtabbutton_143432C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143432 span.tabbutton_143432L, a.tabbutton_143432:visited span.tabbutton_143432L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideYOGLarge.gif) no-repeat 100% 0px; } a.tabbutton_143432 span.tabbutton_143432R, a.tabbutton_143432:visited span.tabbutton_143432R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideYOGLarge.gif) no-repeat; } a.tabbutton_143432 span.tabbutton_143432C, a.tabbutton_143432:visited span.tabbutton_143432C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterYOGLarge.gif) repeat-x;} li#tabbutton_143432:hover a.tabbutton_143432 span.tabbutton_143432L, a.Selectedtabbutton_143432 span.Selectedtabbutton_143432L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideYOGLarge.gif) no-repeat 100% 100%; } li#tabbutton_143432:hover a.tabbutton_143432 span.tabbutton_143432R, a.Selectedtabbutton_143432 span.Selectedtabbutton_143432R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideYOGLarge.gif) no-repeat 0px 100%; } li#tabbutton_143432:hover a.tabbutton_143432 span.tabbutton_143432C, a.Selectedtabbutton_143432 span.Selectedtabbutton_143432C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterYOGLarge.gif) repeat-x 0px 100%; }  .tabbutton_143430 *, .Selectedtabbutton_143430 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143430L, .tabbutton_143430R, .Selectedtabbutton_143430L, .Selectedtabbutton_143430R { width: 3px; } a.tabbutton_143430, a:visited.tabbutton_143430 { color: #000; } a.Selectedtabbutton_143430, li#tabbutton_143430:hover a.tabbutton_143430 { color: #fff;} .tabbutton_143430C, .Selectedtabbutton_143430C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143430 span.tabbutton_143430L, a.tabbutton_143430:visited span.tabbutton_143430L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideBlueLarge.gif) no-repeat 100% 0px; } a.tabbutton_143430 span.tabbutton_143430R, a.tabbutton_143430:visited span.tabbutton_143430R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideBlueLarge.gif) no-repeat; } a.tabbutton_143430 span.tabbutton_143430C, a.tabbutton_143430:visited span.tabbutton_143430C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterBlueLarge.gif) repeat-x;} li#tabbutton_143430:hover a.tabbutton_143430 span.tabbutton_143430L, a.Selectedtabbutton_143430 span.Selectedtabbutton_143430L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideBlueLarge.gif) no-repeat 100% 100%; } li#tabbutton_143430:hover a.tabbutton_143430 span.tabbutton_143430R, a.Selectedtabbutton_143430 span.Selectedtabbutton_143430R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideBlueLarge.gif) no-repeat 0px 100%; } li#tabbutton_143430:hover a.tabbutton_143430 span.tabbutton_143430C, a.Selectedtabbutton_143430 span.Selectedtabbutton_143430C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterBlueLarge.gif) repeat-x 0px 100%; }  .tabbutton_143433 *, .Selectedtabbutton_143433 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143433L, .tabbutton_143433R, .Selectedtabbutton_143433L, .Selectedtabbutton_143433R { width: 3px; } a.tabbutton_143433, a:visited.tabbutton_143433 { color: #000; } a.Selectedtabbutton_143433, li#tabbutton_143433:hover a.tabbutton_143433 { color: #fff;} .tabbutton_143433C, .Selectedtabbutton_143433C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143433 span.tabbutton_143433L, a.tabbutton_143433:visited span.tabbutton_143433L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideRedLarge.gif) no-repeat 100% 0px; } a.tabbutton_143433 span.tabbutton_143433R, a.tabbutton_143433:visited span.tabbutton_143433R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideRedLarge.gif) no-repeat; } a.tabbutton_143433 span.tabbutton_143433C, a.tabbutton_143433:visited span.tabbutton_143433C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterRedLarge.gif) repeat-x;} li#tabbutton_143433:hover a.tabbutton_143433 span.tabbutton_143433L, a.Selectedtabbutton_143433 span.Selectedtabbutton_143433L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideRedLarge.gif) no-repeat 100% 100%; } li#tabbutton_143433:hover a.tabbutton_143433 span.tabbutton_143433R, a.Selectedtabbutton_143433 span.Selectedtabbutton_143433R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideRedLarge.gif) no-repeat 0px 100%; } li#tabbutton_143433:hover a.tabbutton_143433 span.tabbutton_143433C, a.Selectedtabbutton_143433 span.Selectedtabbutton_143433C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterRedLarge.gif) repeat-x 0px 100%; }  .tabbutton_143434 *, .Selectedtabbutton_143434 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143434L, .tabbutton_143434R, .Selectedtabbutton_143434L, .Selectedtabbutton_143434R { width: 3px; } a.tabbutton_143434, a:visited.tabbutton_143434 { color: #000; } a.Selectedtabbutton_143434, li#tabbutton_143434:hover a.tabbutton_143434 { color: #fff;} .tabbutton_143434C, .Selectedtabbutton_143434C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143434 span.tabbutton_143434L, a.tabbutton_143434:visited span.tabbutton_143434L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideOrangeLarge.gif) no-repeat 100% 0px; } a.tabbutton_143434 span.tabbutton_143434R, a.tabbutton_143434:visited span.tabbutton_143434R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideOrangeLarge.gif) no-repeat; } a.tabbutton_143434 span.tabbutton_143434C, a.tabbutton_143434:visited span.tabbutton_143434C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterOrangeLarge.gif) repeat-x;} li#tabbutton_143434:hover a.tabbutton_143434 span.tabbutton_143434L, a.Selectedtabbutton_143434 span.Selectedtabbutton_143434L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideOrangeLarge.gif) no-repeat 100% 100%; } li#tabbutton_143434:hover a.tabbutton_143434 span.tabbutton_143434R, a.Selectedtabbutton_143434 span.Selectedtabbutton_143434R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideOrangeLarge.gif) no-repeat 0px 100%; } li#tabbutton_143434:hover a.tabbutton_143434 span.tabbutton_143434C, a.Selectedtabbutton_143434 span.Selectedtabbutton_143434C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterOrangeLarge.gif) repeat-x 0px 100%; }  .tabbutton_143435 *, .Selectedtabbutton_143435 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143435L, .tabbutton_143435R, .Selectedtabbutton_143435L, .Selectedtabbutton_143435R { width: 3px; } a.tabbutton_143435, a:visited.tabbutton_143435 { color: #000; } a.Selectedtabbutton_143435, li#tabbutton_143435:hover a.tabbutton_143435 { color: #fff;} .tabbutton_143435C, .Selectedtabbutton_143435C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143435 span.tabbutton_143435L, a.tabbutton_143435:visited span.tabbutton_143435L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePurpleLarge.gif) no-repeat 100% 0px; } a.tabbutton_143435 span.tabbutton_143435R, a.tabbutton_143435:visited span.tabbutton_143435R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePurpleLarge.gif) no-repeat; } a.tabbutton_143435 span.tabbutton_143435C, a.tabbutton_143435:visited span.tabbutton_143435C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterPurpleLarge.gif) repeat-x;} li#tabbutton_143435:hover a.tabbutton_143435 span.tabbutton_143435L, a.Selectedtabbutton_143435 span.Selectedtabbutton_143435L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePurpleLarge.gif) no-repeat 100% 100%; } li#tabbutton_143435:hover a.tabbutton_143435 span.tabbutton_143435R, a.Selectedtabbutton_143435 span.Selectedtabbutton_143435R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePurpleLarge.gif) no-repeat 0px 100%; } li#tabbutton_143435:hover a.tabbutton_143435 span.tabbutton_143435C, a.Selectedtabbutton_143435 span.Selectedtabbutton_143435C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterPurpleLarge.gif) repeat-x 0px 100%; }  .tabbutton_143428 *, .Selectedtabbutton_143428 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143428L, .tabbutton_143428R, .Selectedtabbutton_143428L, .Selectedtabbutton_143428R { width: 3px; } a.tabbutton_143428, a:visited.tabbutton_143428 { color: #000; } a.Selectedtabbutton_143428, li#tabbutton_143428:hover a.tabbutton_143428 { color: #fff;} .tabbutton_143428C, .Selectedtabbutton_143428C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143428 span.tabbutton_143428L, a.tabbutton_143428:visited span.tabbutton_143428L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePhotoLarge.gif) no-repeat 100% 0px; } a.tabbutton_143428 span.tabbutton_143428R, a.tabbutton_143428:visited span.tabbutton_143428R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePhotoLarge.gif) no-repeat; } a.tabbutton_143428 span.tabbutton_143428C, a.tabbutton_143428:visited span.tabbutton_143428C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterPhotoLarge.gif) repeat-x;} li#tabbutton_143428:hover a.tabbutton_143428 span.tabbutton_143428L, a.Selectedtabbutton_143428 span.Selectedtabbutton_143428L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePhotoLarge.gif) no-repeat 100% 100%; } li#tabbutton_143428:hover a.tabbutton_143428 span.tabbutton_143428R, a.Selectedtabbutton_143428 span.Selectedtabbutton_143428R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidePhotoLarge.gif) no-repeat 0px 100%; } li#tabbutton_143428:hover a.tabbutton_143428 span.tabbutton_143428C, a.Selectedtabbutton_143428 span.Selectedtabbutton_143428C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterPhotoLarge.gif) repeat-x 0px 100%; }  .tabbutton_166107 *, .Selectedtabbutton_166107 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_166107L, .tabbutton_166107R, .Selectedtabbutton_166107L, .Selectedtabbutton_166107R { width: 3px; } a.tabbutton_166107, a:visited.tabbutton_166107 { color: #000; } a.Selectedtabbutton_166107, li#tabbutton_166107:hover a.tabbutton_166107 { color: #fff;} .tabbutton_166107C, .Selectedtabbutton_166107C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_166107 span.tabbutton_166107L, a.tabbutton_166107:visited span.tabbutton_166107L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideVideoLarge.gif) no-repeat 100% 0px; } a.tabbutton_166107 span.tabbutton_166107R, a.tabbutton_166107:visited span.tabbutton_166107R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideVideoLarge.gif) no-repeat; } a.tabbutton_166107 span.tabbutton_166107C, a.tabbutton_166107:visited span.tabbutton_166107C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterVideoLarge.gif) repeat-x;} li#tabbutton_166107:hover a.tabbutton_166107 span.tabbutton_166107L, a.Selectedtabbutton_166107 span.Selectedtabbutton_166107L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideVideoLarge.gif) no-repeat 100% 100%; } li#tabbutton_166107:hover a.tabbutton_166107 span.tabbutton_166107R, a.Selectedtabbutton_166107 span.Selectedtabbutton_166107R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideVideoLarge.gif) no-repeat 0px 100%; } li#tabbutton_166107:hover a.tabbutton_166107 span.tabbutton_166107C, a.Selectedtabbutton_166107 span.Selectedtabbutton_166107C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterVideoLarge.gif) repeat-x 0px 100%; }  .tabbutton_143436 *, .Selectedtabbutton_143436 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143436L, .tabbutton_143436R, .Selectedtabbutton_143436L, .Selectedtabbutton_143436R { width: 3px; } a.tabbutton_143436, a:visited.tabbutton_143436 { color: #000; } a.Selectedtabbutton_143436, li#tabbutton_143436:hover a.tabbutton_143436 { color: #fff;} .tabbutton_143436C, .Selectedtabbutton_143436C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143436 span.tabbutton_143436L, a.tabbutton_143436:visited span.tabbutton_143436L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightblueLarge.gif) no-repeat 100% 0px; } a.tabbutton_143436 span.tabbutton_143436R, a.tabbutton_143436:visited span.tabbutton_143436R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightblueLarge.gif) no-repeat; } a.tabbutton_143436 span.tabbutton_143436C, a.tabbutton_143436:visited span.tabbutton_143436C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterlightblueLarge.gif) repeat-x;} li#tabbutton_143436:hover a.tabbutton_143436 span.tabbutton_143436L, a.Selectedtabbutton_143436 span.Selectedtabbutton_143436L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightblueLarge.gif) no-repeat 100% 100%; } li#tabbutton_143436:hover a.tabbutton_143436 span.tabbutton_143436R, a.Selectedtabbutton_143436 span.Selectedtabbutton_143436R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightblueLarge.gif) no-repeat 0px 100%; } li#tabbutton_143436:hover a.tabbutton_143436 span.tabbutton_143436C, a.Selectedtabbutton_143436 span.Selectedtabbutton_143436C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterlightblueLarge.gif) repeat-x 0px 100%; }  .tabbutton_143437 *, .Selectedtabbutton_143437 * { height: 25px; padding-top: 5px; font-size: 12px; line-height: 19px; } .tabbutton_143437L, .tabbutton_143437R, .Selectedtabbutton_143437L, .Selectedtabbutton_143437R { width: 3px; } a.tabbutton_143437, a:visited.tabbutton_143437 { color: #000; } a.Selectedtabbutton_143437, li#tabbutton_143437:hover a.tabbutton_143437 { color: #fff;} .tabbutton_143437C, .Selectedtabbutton_143437C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143437 span.tabbutton_143437L, a.tabbutton_143437:visited span.tabbutton_143437L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightpurpleLarge.gif) no-repeat 100% 0px; } a.tabbutton_143437 span.tabbutton_143437R, a.tabbutton_143437:visited span.tabbutton_143437R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightpurpleLarge.gif) no-repeat; } a.tabbutton_143437 span.tabbutton_143437C, a.tabbutton_143437:visited span.tabbutton_143437C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterlightpurpleLarge.gif) repeat-x;} li#tabbutton_143437:hover a.tabbutton_143437 span.tabbutton_143437L, a.Selectedtabbutton_143437 span.Selectedtabbutton_143437L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightpurpleLarge.gif) no-repeat 100% 100%; } li#tabbutton_143437:hover a.tabbutton_143437 span.tabbutton_143437R, a.Selectedtabbutton_143437 span.Selectedtabbutton_143437R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSidelightpurpleLarge.gif) no-repeat 0px 100%; } li#tabbutton_143437:hover a.tabbutton_143437 span.tabbutton_143437C, a.Selectedtabbutton_143437 span.Selectedtabbutton_143437C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterlightpurpleLarge.gif) repeat-x 0px 100%; }  .tabbutton_143431 *, .Selectedtabbutton_143431 * { height: 25px; padding-top: 5px; font-size: 9px; line-height: 10px; text-transform: uppercase; } .tabbutton_143431L, .Selectedtabbutton_143431L { width: 26px; } .tabbutton_143431R, .Selectedtabbutton_143431R { width: 3px; } a.tabbutton_143431, a:visited.tabbutton_143431 { color: #000; } a.Selectedtabbutton_143431, a:visited.Selectedtabbutton_143431, a:hover.Selectedtabbutton_143431, a:hover.tabbutton_143431 { color: #fff;} .tabbutton_143431C, .Selectedtabbutton_143431C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_143431 span.tabbutton_143431L, a.tabbutton_143431:visited span.tabbutton_143431L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideMuseum.gif) no-repeat 100% 0px; } a.tabbutton_143431 span.tabbutton_143431R, a.tabbutton_143431:visited span.tabbutton_143431R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideMuseum.gif) no-repeat; } a.tabbutton_143431 span.tabbutton_143431C, a.tabbutton_143431:visited span.tabbutton_143431C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterMuseum.gif) repeat-x;} a.tabbutton_143431:hover span.tabbutton_143431L, a.Selectedtabbutton_143431 span.Selectedtabbutton_143431L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideMuseum.gif) no-repeat 100% 100%; } a.tabbutton_143431:hover span.tabbutton_143431R, a.Selectedtabbutton_143431 span.Selectedtabbutton_143431R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideMuseum.gif) no-repeat 0px 100%; } a.tabbutton_143431:hover span.tabbutton_143431C, a.Selectedtabbutton_143431 span.Selectedtabbutton_143431C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterMuseum.gif) repeat-x 0px 100%; }  .tabbutton_166199 *, .Selectedtabbutton_166199 * { height: 25px; padding-top: 5px; font-size: 9px; line-height: 10px; text-transform: uppercase; } .tabbutton_166199L, .Selectedtabbutton_166199L { width: 26px; } .tabbutton_166199R, .Selectedtabbutton_166199R { width: 3px; } a.tabbutton_166199, a:visited.tabbutton_166199 { color: #000; } a.Selectedtabbutton_166199, a:visited.Selectedtabbutton_166199, a:hover.Selectedtabbutton_166199, a:hover.tabbutton_166199 { color: #fff;} .tabbutton_166199C, .Selectedtabbutton_166199C{ padding-left: 5px; padding-right: 5px;} a.tabbutton_166199 span.tabbutton_166199L, a.tabbutton_166199:visited span.tabbutton_166199L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideShopLarge.gif) no-repeat 100% 0px; } a.tabbutton_166199 span.tabbutton_166199R, a.tabbutton_166199:visited span.tabbutton_166199R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideShopLarge.gif) no-repeat; } a.tabbutton_166199 span.tabbutton_166199C, a.tabbutton_166199:visited span.tabbutton_166199C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterShopLarge.gif) repeat-x;} a.tabbutton_166199:hover span.tabbutton_166199L, a.Selectedtabbutton_166199 span.Selectedtabbutton_166199L { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideShopLarge.gif) no-repeat 100% 100%; } a.tabbutton_166199:hover span.tabbutton_166199R, a.Selectedtabbutton_166199 span.Selectedtabbutton_166199R { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuSideShopLarge.gif) no-repeat 0px 100%; } a.tabbutton_166199:hover span.tabbutton_166199C, a.Selectedtabbutton_166199 span.Selectedtabbutton_166199C { background: url(/web/20130328200330im_/http://www.olympic.org/Assets/Navigation%20redesign/MenuCenterShopLarge.gif) repeat-x 0px 100%; }                     Home > Photos > Curling    Print Share   window.addEvent('load', function() { new OnClickPopup('#ctl00_SharePrintBlock_shareOpenButton', '#ctl00_SharePrintBlock_shareForm_shareCloseButton,#ctl00_SharePrintBlock_shareOpenButton', 'ctl00_SharePrintBlock_shareForm_divShareForm', {hasOverlay: true}); });   Share Close    Del.icio.us Digg Facebook Google Bookmark MySpace Stumble Upon Twitter  Copy and paste this link into an e-mail or instant message:             window.addEvent('domready', function() { //advanced-search $$('#title .trigger').addEvent('click', function() { var optionList = $$('#title .list'); var topStories = $$('#topStories'); if (optionList.getStyle('display') == 'none') { optionList.setStyle('display', 'block'); optionList.fade('in'); optionList.getParent().getParent().addClass('advanced'); if (topStories.length > 0) { var myElement = new Element('div', { 'id': 'overlayer' }); $$('#background_div').adopt(myElement); } } else { optionList.fade('out'); optionList.getParent().getParent().removeClass('advanced'); optionList.setStyle('display', 'none'); $$('#overlayer').dispose(); } }); }); window.addEvent('load', function() { new TextBoxClearer('ctl00_mainContent_PhotoVideoSearchBlock_keyword'); var queryStringAssociations = { Men: 'ctl00_mainContent_PhotoVideoSearchBlock_cbMen', Women: 'ctl00_mainContent_PhotoVideoSearchBlock_cbWomen', Mixed: 'ctl00_mainContent_PhotoVideoSearchBlock_cbMixed', Sport: 'ctl00_mainContent_PhotoVideoSearchBlock_ddlSports', Game: 'ctl00_mainContent_PhotoVideoSearchBlock_ddlOlympicGames', Country: 'ctl00_mainContent_PhotoVideoSearchBlock_ddlCountries', Search: 'ctl00_mainContent_PhotoVideoSearchBlock_keyword' }; new MediaPlayerFilters(queryStringAssociations, 'ctl00_mainContent_PhotoVideoSearchBlock_RLBGo', 'https://web.archive.org./web/20130328200330/http://www.olympic.org:80/photos/search-results', 'ctl00_mainContent_PhotoVideoSearchBlock_keyword', null, '0', ''); });    Curling         Options   Gender  Men   Women   Mixed    Sports   All sports Alpine Skiing Archery Artistic Gymnastics Athletics Badminton Baseball Basketball Basque Pelota Beach volleyball Biathlon Bobsleigh Boxing Canoe / Kayak Flatwater Canoe / Kayak Slalom Canoe-Kayak Cricket Croquet Cross Country Skiing Curling Cycling Cycling BMX Cycling Road Cycling Track Diving Equestrian Equestrian / Dressage Equestrian / Eventing Equestrian / Jumping Equestrian / Vaulting Fencing Figure skating Football Freestyle Skiing Golf Handball Hockey Ice Hockey Jeu de Paume Judo Lacrosse Luge Modern Pentathlon Mountain Bike Nordic Combined Polo Rackets Rhythmic Gymnastics Rink-Hockey Roque Rowing Rugby Sailing Shooting Short Track Speed Skating Skeleton Ski Jumping Snowboard Softball Speed skating Speed skiing Swimming Synchronized Swimming Table Tennis Taekwondo Tennis Trampoline Triathlon Tug of War Volleyball Water Motorsports Water polo Water Skiing Weightlifting Wrestling Wrestling Freestyle Wrestling Greco-Roman     Olympic Games   All Olympic Games PyeongChang 2018 Rio de Janeiro 2016 Sochi 2014 London 2012 Vancouver 2010 Beijing 2008 Turin 2006 Athens 2004 Salt Lake City 2002 Sydney 2000 Nagano 1998 Atlanta 1996 Lillehammer 1994 Barcelona 1992 Albertville 1992 Seoul 1988 Calgary 1988 Los Angeles 1984 Sarajevo 1984 Moscow 1980 Lake Placid 1980 Montreal 1976 Innsbruck 1976 Munich 1972 Sapporo 1972 Mexico 1968 Grenoble 1968 Tokyo 1964 Innsbruck 1964 Rome 1960 Squaw Valley 1960 Melbourne / Stockholm 1956 Cortina d'Ampezzo 1956 Helsinki 1952 Oslo 1952 London 1948 St. Moritz 1948 Berlin 1936 Garmisch-Partenkirchen 1936 Los Angeles 1932 Lake Placid 1932 Amsterdam 1928 St. Moritz 1928 Paris 1924 Chamonix 1924 Antwerp 1920 Stockholm 1912 London 1908 St Louis 1904 Paris 1900 Athens 1896     Countries   All countries Afghanistan Netherlands Antilles Anguilla Albania Algeria Andorra Angola Antigua and Barbuda Australasia (1908-1912) Argentina Armenia Aruba American Samoa Australia Austria Azerbaijan Bahamas Bangladesh Barbados Burundi Belgium Benin Bermuda Bhutan Bosnia and Herzegovina Burma (until 1989) Belize Belarus Bohemia (TCH since 1920) Bolivia Botswana Brazil Bahrain Brunei Darussalam Bulgaria Burkina Faso British West Indies (BAR, JAM Central African Republic Cambodia Canada Cayman Islands Gold Coast - Ghana since 1960 Ceylan in 1948 became Sri Lank Montenegro Congo Chad Chine devient Rép. Pop. de Chi Chile People's Republic of China Côte d'Ivoire Cameroon Democratic Republic of the Congo Cook Islands Colombia Comoros Cape Verde Costa Rica Croatia Cuba Cyprus Czech Republic Dahomey - (BEN) Bénin since 19 Denmark Djibouti Dominica Dominican Republic Ecuador Egypt Eritrea El Salvador Spain Estonia Ethiopia United Team of Germany (1956,1960,1964) Unified Team (ex USSR) Fiji Finland France Federal Republic of Germany (1950-1990, "GER" since)  Federated States of Micronesia Gabon Gambia Great Britain Guinea-Bissau Gibraltar Guadeloupe German Democratic Republic (1955-1990,  Georgia Equatorial Guinea Germany Ghana Greece Grenada Guatemala British Guyana - GUY since 196 Guinea Guam Guyana Haiti British Honduras Hong Kong, China Honduras Hungary Åland Islands Falkland Islands (Malvinas) Indonesia India Independent Olympic Athlete Independant Participant Islamic Republic of Iran Ireland Iraq Iceland Israel Virgin Islands, US Italy Virgin Islands, British Jamaica Jordan Japan Kazakhstan Kenya Kyrgyzstan République Khmer Kiribati Republic of Korea Saudi Arabia Kuwait Lao People's Democratic Republic Latvia Libya Liberia Saint Lucia Lesotho Lebanon Liechtenstein Lithuania Luxembourg Macau Madagascar Malaya (MAS) Malaysia since196 Martinique Morocco Malaysia Malawi Republic of Moldova Maldives Mexico Mongolia Marshall Islands Mixed NOCs The Former Yugoslav Republic of Macedonia Mali Malta Montenegro Monaco Mozambique Mauritius Mauritania Martinique Myanmar (ex Burma until 1989) Namibia North Bornéo - (BRU) Brunei si Nicaragua New Caledonia Netherlands Nepal Nigeria Niger Niue Norway Norfolk Island Nauru New Zealand Oman Pakistan Panama Paraguay Peru French Polynesia Philippines Palestine Palau Papua New Guinea Poland Portugal Democratic People's Republic of Korea Perse - Iran IRI since 1948 Puerto Rico Qatar North Rhodesia - (ZAM) Zambia Rhodesia (until 1968) Réunion Romania (not used) Romania South Africa Russia Russian Federation Rwanda Samoa (until 1996 Western Samoa) Sarre (1952) Serbia and Montenegro Senegal Serbia - Yougoslavie YUG since Seychelles Saint Helena Singapore Saint Kitts and Nevis Sierra Leone Slovenia San Marino Solomon Islands Somalia Serbia Sri Lanka Vatican City State Sao Tome and Principe Sudan Switzerland Suriname Slovakia Sweden Swaziland Syrian Arab Republic United Republic of Tanzania Turks and Caicos Islands Czechoslovakia Tonga Tanganyaka - (TAN) Tanzania si Thailand Tadjikistan Turkmenistan Democratic Republic of Timor-Leste Togo Chinese Taipei Trinidad and Tobago (not used) Trinidad and Tobago Tunisia Turkey Tuvalu Tuvalu United Arab Emirates United Arab Republic (1960-1968) Uganda Ukraine USSR Uruguay United States of America Uzbekistan Vanuatu Venezuela Vietnam St Vincent and the Grenadines Wallis and Futuna Yemen Arab Republic Yemen Democratic Republic of Yemen Yugoslavia Zaire (1971-1997) Zambia Zimbabwe Mixed team Other countries                 > <           Details     Tweet!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//web.archive.org./web/20130328200330/http://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");    (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//web.archive.org./web/20130328200330/http://connect.facebook.net/en_GB/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));     window.___gcfg = {lang: 'en-GB'};(function() {var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://web.archive.org./web/20130328200330/https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);})();     1 2 3 4 5  Current Rating: 0   window.addEvent('load', function() { var _ctl00_mainContent_PhotoBlock_Rating1_divRatingsClient = new Rating({ containerId : 'ctl00_mainContent_PhotoBlock_Rating1_divRatings', currentRating : 0, rateFunction : function(value) { __SA__.vote('v0', value); } }); $extend(_ctl00_mainContent_PhotoBlock_Rating1_divRatingsClient, { tryToVoteAgain : function() { this.options.enabled = false; $('ctl00_mainContent_PhotoBlock_Rating1_divRatings').addClass('iocRatingDisabled'); $('ctl00_mainContent_PhotoBlock_Rating1_divRatings').addEvent('click', function() { alert('You have already voted'); }); } }); __SA__.addEvent('voted', function(ratingId) { _ctl00_mainContent_PhotoBlock_Rating1_divRatingsClient.tryToVoteAgain(); }); if (__SA__.hasAlreadyVoted('v0')) { _ctl00_mainContent_PhotoBlock_Rating1_divRatingsClient.tryToVoteAgain(); } });   Mail  Share   window.addEvent('load', function() { new OnClickPopup('#ctl00_mainContent_PhotoBlock_shareOpenButton1', '#ctl00_mainContent_PhotoBlock_ShareFormBlock1_shareCloseButton,#ctl00_mainContent_PhotoBlock_shareOpenButton1', 'ctl00_mainContent_PhotoBlock_ShareFormBlock1_divShareForm', {hasOverlay: true}); });   Share Close    Del.icio.us Digg Facebook Google Bookmark MySpace Stumble Upon Twitter  Copy and paste this link into an e-mail or instant message:      window.addEvent('load', function() { new OnClickPopup('#ctl00_mainContent_PhotoBlock_mailButton1', '#ctl00_mainContent_PhotoBlock_SendFormBlock1_sendCloseButton,#ctl00_mainContent_PhotoBlock_SendFormBlock1_hlnkCancel,#ctl00_mainContent_PhotoBlock_mailButton1', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_divSendForm', {hasOverlay: true}); new CustomValidator('ctl00_mainContent_PhotoBlock_SendFormBlock1_txtReceiverAddress', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblValidReceiverAddress', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblInvalidReceiverAddress', '\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*'); new CustomValidator('ctl00_mainContent_PhotoBlock_SendFormBlock1_txtSenderEmail', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblValidSenderAddress', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblInvalidSenderAddress', '\\w+([-+.\']\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*'); new SendToFriend('ctl00_mainContent_PhotoBlock_SendFormBlock1_txtReceiverAddress', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_txtSenderEmail', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_ChkCopy', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblSuccessful', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_lblUnsuccessful', 'ctl00_mainContent_PhotoBlock_SendFormBlock1_RLBSend_hlnkButton', 'en', '' ); });   Send to a friend Close     E-mail address*  Email format is not valid Perfect!   My e-mail*  Email format is not valid Perfect!   Send me a copy   * required    Send    or Cancel  An error has occured Your email was sent           

        More Facts     Related Galleries            var pageRefId; var NbElements; var lng; //Ajax Request function retrieveDataSet(ParamUrl, append) { typeof append == 'undefined' ? false : append; ajaxRequest = new Request.HTML({ method: 'get', url: ParamUrl, onSuccess: function(response, responseElements, responseHTML, responseJavaScript) { var MediaList = eval(" (" + responseHTML + ") "); var VideoList = $$('#photoList'); var VideoListElement = VideoList[0]; if (append !== true) VideoListElement.empty(); if (MediaList.length > 0) { if (append !== true) { var VideoListBaseElement = new Element('ul'); VideoListBaseElement.set('class', 'gal-list'); VideoListBaseElement.inject(VideoListElement); } else { var VideoListBaseElementResult = $$('#photoList ul'); var VideoListBaseElement = VideoListBaseElementResult[0]; } fillInListSet(VideoListBaseElement, MediaList); } } }).send(); } function fillInListSet(HTMLListElement, ListObject) { var m_dllPlaylist = $('ctl00_mainContent_SetPhotoBlock_ddlPlaylist'); var containLightBox = $$('div#lightboxHidden'); containLightBox[0].empty(); for (i = 0; i < ListObject.length; i++) { var VideoItem = ListObject[i]; var liElement = new Element('li'); var picture = new Element('img'); var link = new Element('a'); var linkPrev = new Element('a'); var preview = new Element('div'); var prevImageC = new Element('div'); var prevImage = new Element('img'); var h3 = new Element('h3'); var byline = new Element('div'); picture.set('src', VideoItem.SlideShowImageSrc); picture.set('alt', VideoItem.AlternativeText); link.set('href', VideoItem.LinkURL); linkPrev.set('href', VideoItem.LinkURL); /* link.set('href', "javascript:DisplayPhoto("+VideoItem.PageId+");"); linkPrev.set('href', "javascript:DisplayPhoto("+VideoItem.PageId+");");*/ preview.set('class', 'preview'); prevImageC.set('class', 'image'); prevImage.set('src', VideoItem.StandardQualitySrc); byline.set('class', 'byline'); var titre = VideoItem.Title; var desc = VideoItem.Description; link.inject(liElement); linkPrev.inject(preview); preview.inject(liElement); prevImage.inject(prevImageC); prevImageC.inject(linkPrev); h3.innerHTML = titre; h3.inject(linkPrev); byline.inject(linkPrev); byline.innerHTML = desc; picture.inject(link, 'top'); liElement.inject(HTMLListElement); } $$('div#gallery a.slideshow').addEvent('click', function(e) { var tmp_idgallery = m_dllPlaylist.getSelected()[0].get('value'); var nbpic = tmp_idgallery.substr(tmp_idgallery.lastIndexOf('_') + 1); idgallery = tmp_idgallery.substring(0, tmp_idgallery.lastIndexOf('_')); var lng = 'en'; javascript: DisplayGenericLightBox(vSlideShowLightBox, 'ItemLightBox', idgallery, nbpic,1, lng, 'Close'); e.stopPropagation(); return false; }); } function DDLSelect(pageRefId, onload) { var onload = onload || false; var vDropDown = 'ctl00_mainContent_SetPhotoBlock_ddlSetContainer'; var vSelecteur = "#" + vDropDown + " select option"; $$(vSelecteur).each(function(item, index) { var vIdSet = item.get('value').substr(0, item.get('value').indexOf("_")); if (vIdSet == pageRefId) { item.set('selected', 'yes'); pageRefValue = item.get('text').replace(/(<([^>]+)>)/ig, ""); //regex qui supprime les balise html; } }); var vSelecteur = "div#" + vDropDown + " .selectedOptionContainer span.selectedOption"; $$(vSelecteur).set('text', pageRefValue); var vSelecteur = "div#" + vDropDown + " .optionsContainer span"; $$(vSelecteur).set('class', '').each(function(item, index) { if (item.get('title') == pageRefValue) { item.set('class', 'selectedOptionInList'); } }); var lng = 'en'; var url = '/AjaxScripts/RetrieveMediasFromSet.aspx?pageRefId=' + pageRefId + '&lng=' + lng; // build the URL to get HTML for videos // Permet d'éviter que le retrieveDataSet se charge 2 fois au chargement de la Lightbox if (!onload) { retrieveDataSet(url, false); // AJAX call } return false; } window.addEvent('domready', function() { var m_dllPlaylist = $('ctl00_mainContent_SetPhotoBlock_ddlPlaylist'); //var pageRefId = -1; if (m_dllPlaylist != null) { pageRefId = m_dllPlaylist.getSelected()[0].get('value'); NbElements = pageRefId.substr(pageRefId.lastIndexOf('_') + 1); pageRefId = pageRefId.substring(0, pageRefId.lastIndexOf('_')); } else { // get the REF of the video page pageRefId = ''; NbElements = pageRefId.substr(pageRefId.lastIndexOf('_') + 1); pageRefId = pageRefId.substring(0, pageRefId.lastIndexOf('_')); } lng = 'en'; var url = '/AjaxScripts/RetrieveMediasFromSet.aspx?pageRefId=' + pageRefId + '&lng=' + lng; // build the URL to get HTML for videos retrieveDataSet(url, false); // AJAX call if (m_dllPlaylist != null) { // Load videos when the value changes on the selectbox m_dllPlaylist.addEvent('changed', function() { if (m_dllPlaylist != null) { pageRefId = m_dllPlaylist.getSelected()[0].get('value'); var NbElements = pageRefId.substr(pageRefId.lastIndexOf('_') + 1); pageRefId = pageRefId.substring(0, pageRefId.lastIndexOf('_')); } // get the REF of the video page var lng = 'en'; var url = '/AjaxScripts/RetrieveMediasFromSet.aspx?pageRefId=' + pageRefId + '&lng=' + lng; // build the URL to get HTML for videos retrieveDataSet(url, false); // AJAX call }); } // Load more videos when click on the "Load More" button $$(".more a.loadMore").addEvent('click', function() { var nbDisplayedItems = $$('#photoList li').length; if (m_dllPlaylist != null) { pageRefId = m_dllPlaylist.getSelected()[0].get('value'); var NbElements = pageRefId.substr(pageRefId.lastIndexOf('_') + 1); pageRefId = pageRefId.substring(0, pageRefId.lastIndexOf('_')); } else { // get the REF of the video page pageRefId = ''; var NbElements = pageRefId.substr(pageRefId.lastIndexOf('_') + 1); pageRefId = pageRefId.substring(0, pageRefId.lastIndexOf('_')); } var lng = 'en'; var url = '/AjaxScripts/RetrieveMediasFromSet.aspx?pageRefId=' + pageRefId + '&startPosition=' + nbDisplayedItems + '&lng=' + lng; // build the URL to get HTML for videos retrieveDataSet(url, true); // AJAX call with the APPEND param }); //The balise witch class .genPL is inside the about Gallery block $$("a.genPl").addEvent('click', function() { var pageRefId = $(this).get('href'); var pageRefValue; pageRefId = pageRefId.substr(1, (pageRefId.length)); DDLSelect(pageRefId); }); });     Sets    <a href='http://www.olympic.org/photos/curling'>All photos (104 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Chamonix-1924/'>Chamonix 1924 (5 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Albertville-1992/'>Albertville 1992 (1 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Nagano-1998/'>Nagano 1998 (20 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Salt-Lake-City-2002/'>Salt Lake City 2002 (15 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Turin-2006/'>Turin 2006 (12 Photos)</a> <a href='/Multimedia-Player/Galleries/Photos/Sport-Galleries/Winter/Curling/Curling/Vancouver-2010/'>Vancouver 2010 (7 Photos)</a>    slideshow           Load More        

 Sets      Chamonix 1924     Albertville 1992       Nagano 1998     Salt Lake City 2002       Turin 2006     Vancouver 2010             More Facts                      Legal Information  |  Jobs  |  Newsletter  |  FAQ  |  Documents  |  Sitemap  |  Media Information  | © Copyright 2012. All rights reserved.         var __SA__ = new StatisticsAccess(); __SA__.options.endpoint = '/AjaxScripts/StatisticsAccess.svc';   //