CINXE.COM
DSC_4202 | Flickr : partage de photos !
<!DOCTYPE html> <html xmlns:dc="http://purl.org/dc/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:cc="http://creativecommons.org/ns#"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.flickr.com:80/photos/markjaquith/4720647769","20100814192849","https://web.archive.org/","web","/_static/", "1281814129"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>DSC_4202 | Flickr : partage de photos !</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="keywords" content="people, dalton, individuals, lukedalton, photographie, photos, photo"> <meta name="description" content="DSC_4202"> <meta http-equiv="imagetoolbar" content="no"> <meta name="title" content="DSC_4202"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="medium" content="image"> <link rel="image_src" href="https://web.archive.org/web/20100814192849im_/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_m.jpg"> <link rel="canonical" href="https://web.archive.org/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/"> <link id="shorturl" rev="canonical" type="text/html" href="http://flic.kr/p/8c9y7M"> <meta name="viewport" content="width=1036"> <script> F = window.F || {}; (function(F){var el,w,d,n,ua,ae,is_away_from_tab,disabled=false,assigned_events=false;w=window;d=w.document;n=w.navigator;ua=n&&n.userAgent;function doF(e,me){if(is_away_from_tab&&e.target===w){is_away_from_tab=false;}else{el=e.target||me;}} function doB(e){if(el!==w&&e.target===w){is_away_from_tab=true;}else{el=undefined;}} function get(){var nt,in_doc;if(el&&(nt=el.nodeType)){if(d.contains){if((ua&&ua.match(/Opera[\s\/]([^\s]*)/))||nt===1){in_doc=d.contains(el);}else{while(el){if(d===el){in_doc=true;} el=el.parentNode;}}}else if(d.compareDocumentPosition){if(d===el||!!(d.compareDocumentPosition(el)&16)){in_doc=true;}}else{var myEl=el;while(myEl){if(d===myEl){in_doc=true;} myEl=myEl.parentNode;}}} return in_doc?el:undefined;} function isInput(){var n=get(),nn;if(!n){return false;} nn=n.nodeName.toLowerCase();return(nn==='input'||nn==='textarea');} function instrumentInputs(){if(!assigned_events){var i,me,inputs=document.getElementsByTagName('input'),tas=document.getElementsByTagName('textarea'),nInputs=inputs.length,nTextAreas=tas.length;if(nInputs||nTextAreas){for(i=0;i<nTextAreas;i++){me=tas[i];tas[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});};for(i=0;i<nInputs;i++){me=inputs[i];inputs[i].attachEvent('onfocusin',function(e){if(!disabled){doF(e,me);}});};assigned_events=true;}}} function destroy(){disabled=true;if(de=w.removeEventListener){de('focus',doF,true);de('blur',doB,true);}else if(de=d.removeEvent){de('blur',doB);}} function dom_onready(onready_handler){if(typeof onready_handler=='undefined'){return false;} if(document.readyState==='complete'){onready_handler();}else{if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener('DOMContentLoaded',DOMContentLoaded,false);onready_handler();}}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==='complete'){document.detachEvent('onreadystatechange',DOMContentLoaded);onready_handler();}}};if(document.addEventListener){document.addEventListener('DOMContentLoaded',onready_handler,false);}else if(document.attachEvent){document.attachEvent('onreadystatechange',onready_handler);}}} if(ae=w.addEventListener){ae('focus',doF,true);ae('blur',doB,true);}else if(ae=d.attachEvent){dom_onready(instrumentInputs);ae('onfocusout',doB);} F.focus_tracker={get:get,isInput:isInput,destroy:destroy};}(F)); /*jslint white: false, undef: false, browser: true, eqeqeq: true, regexp: false, newcap: true, immed: true, onevar: false, plusplus: false */ /*global F: false, YUI: false, window: false */ (function(F) { var listeners = [], old_func, enabled = false; var okB = [ /AppleWebKit\/([^\s]*)/, /MSIE\s(8[^;]*)/, /Gecko\/([^\s]*)/ ]; //hideous browser sniffing function sniff(){ var nav = window.navigator, ua = nav && nav.userAgent, len = okB.length; if(ua.match(/Mobile/)){ return false; //disable for all browsers that claim to be mobile; } for (var i=0; i < len; i++) { if(ua.match(okB[i])){ return true; } }; return false; } enabled = sniff(); // -------------------------------------------------------------------------------- // Capture all keydown events. // -------------------------------------------------------------------------------- if (typeof document.onkeydown === 'function') { old_func = document.onkeydown; document.onkeydown = combine_funcs(old_func, handle_keydown); } else { document.onkeydown = handle_keydown; } // -------------------------------------------------------------------------------- // Connect the keyCode with the function. // -------------------------------------------------------------------------------- function handle_keydown(e) { if(enabled && !F.focus_tracker.isInput()){ var evt = (e) ? e : window.event; if (listeners[evt.keyCode]) { listeners[evt.keyCode](evt); evt.returnValue = false; return false; } } } function combine_funcs(old_func, new_func) { return function(e) { old_func(e); new_func(e); }; } // -------------------------------------------------------------------------------- // Attach the public methods to the F object. // -------------------------------------------------------------------------------- F.keyListener = { // -------------------------------------------------------------------------------- // Put the listener in an array we can check later. // -------------------------------------------------------------------------------- on: function(key_code_string, func) { if(enabled){ var key_codes = key_code_string.split(','); for (var n = 0, len = key_codes.length; n < len; n++) { if (typeof listeners[key_codes[n]] === 'function') { func = combine_funcs(listeners[key_codes[n]], func); } listeners[key_codes[n]] = func; } } }, // -------------------------------------------------------------------------------- // Remove the handler entirely, so that YUI3 key listeners can be used instead. // -------------------------------------------------------------------------------- detach_all: function() { enabled = false; }, enabled:enabled }; }(F)); F.keyListener.on('37,39,74,75', function(e) { if (F.focus_tracker.isInput() || e.altKey || e.ctrlKey || e.metaKey || e.shiftKey) return; if (e.keyCode === 39 || e.keyCode === 75) window.location = '/photos/markjaquith/4721297842/in/photostream/'; }); (function(){var w,d,c,smarty_timestamp,decode,nameEq,i,len,cookies,cookie,dv_cookie,subs,sub,c_time,photo_id,dv_id;w=window;d=document;c=d.cookie;smarty_timestamp='1281814129';photo_id='4720647769';dv_id='8c9y7M';nameEq='dvz=';decode=decodeURIComponent;if(!smarty_timestamp||!dv_id||c.indexOf(nameEq)===-1){return false;} cookies=c.split(';');for(i=0,len=cookies.length;i<len;i+=1){cookie=cookies[i];while(cookie.charAt(0)===' '){cookie=cookie.substring(1,cookie.length);} if(cookie.indexOf(nameEq)===0){dv_cookie=decode(cookie.substring(nameEq.length,cookie.length));break;}} if(dv_cookie){nameEq=decode(dv_id)+'=';if(dv_cookie.indexOf(nameEq)===-1){return false;} subs=dv_cookie.split('&');for(i=0,len=subs.length;i<len;i+=1){sub=subs[i];if(sub.indexOf(nameEq)===0){c_time=decode(sub.substring(nameEq.length,sub.length));break;}} if(c_time&&c_time>=smarty_timestamp){if(photo_id){document.cookie='flignoreview='+photo_id+'; expires='+(new Date((new Date()).getTime()+1000*60*5)).toUTCString()+'; path=/; domain=.flickr.com';} w.setTimeout(function(){d.body.style.visibility='hidden';w.location.reload();},0);}}}());(function(){var l,hash_pos,photo_page_regex,path_parts,hash_path_parts,old_id,new_id,url_values,hash_values,new_location,i,len,states,state;l=window.location;hash_pos=l.href.indexOf('#');if(hash_pos===-1){return;} photo_page_regex=/^\/photos\/([^\/]+)\/(\d+)(?:\/in\/([^\/]+))?(?:(?:\/page(\d+))|(?:\/(lightbox))|(?:\/(tour)))?/;path_parts=photo_page_regex.exec(l.pathname);if(!path_parts||!path_parts instanceof Array||!path_parts[1]||!path_parts[2]){return;} old_id=path_parts[2];new_location={hash:l.href.substr(hash_pos),host:l.host,pathname:l.pathname,protocol:l.protocol,search:l.search};if(new_location.hash.substr(1,1)==='/'){new_location.pathname=new_location.hash.substr(1);new_location.search='';new_location.hash='';hash_path_parts=photo_page_regex.exec(new_location.pathname);if(!hash_path_parts||!hash_path_parts instanceof Array||!hash_path_parts[1]||!hash_path_parts[2]){return;} new_id=hash_path_parts[2];} new_location.href=new_location.protocol+'//'+new_location.host+new_location.pathname+new_location.search+new_location.hash;if(new_location.pathname!==l.pathname){if(old_id===new_id){document.cookie='flignoreview='+new_id+'; expires='+(new Date((new Date()).getTime()+1000*60*5)).toUTCString()+'; path=/; domain=.flickr.com';}else{} if(typeof l.replace==='function'){l.replace(new_location.href);}else{l.href=new_location.href;}}}()); (function(F){var w,d,top_location,self_location,referrer,flickr_regex;w=window;d=document;top_location=top.location;self_location=self.location;referrer=d.referrer;flickr_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*flickr\.(?:(?:com)|(?:net))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i;function set_cookie(name,value,days,domain){var expires,date,str;expires='';if(days){date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));expires='; expires='+date.toUTCString();} domain=domain||'.flickr.com';str=name+'='+w.escape(value)+expires+'; path=/; domain='+domain;d.cookie=str;} function get_cookie(name){var nameEQ,ca,i,c;nameEQ=name+'=';ca=d.cookie.split(';');for(i=0;i<ca.length;i+=1){c=ca[i];while(c.charAt(0)===' '){c=c.substring(1,c.length);} if(c.indexOf(nameEQ)===0){return w.unescape(c.substring(nameEQ.length,c.length));}} return null;} function delete_cookie(name){set_cookie(name,'',-1);} F.f_bust=function(){var whitelist_regex,referrer_is_flickr,referrer_is_whitelisted,cookie_name,cookie_value,frame_depth,win,we_should_bust,we_should_wipe;cookie_name='flfbn';cookie_value=get_cookie(cookie_name);if(self_location===top_location){if(cookie_value){delete_cookie(cookie_name);} return;} function redirect(){var url=self_location.href;w.onerror=function(){return true;};if(typeof top_location.replace==='function'){top_location.replace(url);}else{top_location.href=url;}} function wipe(){var url,img_width_attr,font_size,interval,win_width,html,msg;url=self_location.href;img_width_attr='';font_size='12px';interval=w.setInterval(function(){if(d&&d.body){try{if(w.stop){w.stop();}else if(d.execCommand){d.execCommand('Stop');} w.clearInterval(interval);}catch(ex){} msg='Désolés, Flickr <a href="/help/blogging/#1392237" target="_top">ne permet pas l\'incorporation dans les cadres</a>.<br><br><a href="{url}" target="_top">Cliquez ici</a> si vous souhaitez afficher ce contenu.'.replace('{url}',url);if(d.body.innerHTML.indexOf(msg)===-1){if(typeof w.innerWidth==='number'){win_width=w.innerWidth;}else if(d.body.clientWidth){win_width=d.body.clientWidth;} if(win_width&&win_width<162){img_width_attr=' width="'+win_width+'"';font_size='10px';} html='<div style="font-size:'+font_size+';text-align:left;"><div style="margin-bottom:3px;"><img alt="Flickr" '+img_width_attr+'src="https://web.archive.org/web/20100814192849/http://l.yimg.com/g/images/logo_home.png"></div><div style="padding-left:5px;line-height:1.2em;">'+msg+'</div></div>';d.body.style.margin='0';d.body.innerHTML=html;}}},100);} whitelist_regex=/^[A-Za-z]+:\/{2,3}(?:[0-9\-A-Za-z]+\.)*(?:(?:flickr\.(?:com)|(?:net))|(?:yahoo\.(?:com)|(?:net)|(?:co\.[A-Za-z]{2}))|(?:creativecommons\.org)|(?:delicious\.com)|(?:eyewonderlabs\.com)|(?:bing\.com)|(?:google\.(?:com)|(?:(?:com?\.)?[A-Za-z]{2})))(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i;referrer_is_flickr=flickr_regex.test(referrer);referrer_is_whitelisted=whitelist_regex.test(referrer);frame_depth=0;win=self;while(win!==win.parent){frame_depth+=1;win=win.parent;} if(cookie_value&&cookie_value===referrer){we_should_bust=true;}else if(referrer&&!referrer_is_whitelisted){we_should_wipe=true;}else if(frame_depth>1&&!referrer_is_flickr){we_should_wipe=true;} if(we_should_bust){w.setTimeout(function(){w.onbeforeunload=w.onunload=null;redirect();},1000);w.setTimeout(wipe,2000);redirect();}else if(we_should_wipe){wipe();}else if(referrer_is_whitelisted&&!referrer_is_flickr){cookie_value=self_location.href;set_cookie(cookie_name,cookie_value);}};F.f_sample=function(sampling_url){var framing_url;if(self_location===top_location){return;} framing_url=referrer;if(framing_url&&framing_url.search(flickr_regex)===-1){(new Image()).src=sampling_url+'?url='+encodeURIComponent(framing_url);return true;} return false;};}(F));F.f_bust(); (function(F){var registered_ids={},id_to_module_map={},interim_actions={},cleanup_actions={},clicked_ids={},queueing=true;function register_id(id,callbacks,required_module){id=id.replace('*','.*');registered_ids[id]=true;id_to_module_map[id]=required_module;interim_actions[id]=callbacks.interim;cleanup_actions[id]=callbacks.cleanup;} function rectify_id(actual_id){for(var key_id in registered_ids){if(registered_ids.hasOwnProperty(key_id)&&actual_id.search(key_id)!==-1){return key_id;}} return actual_id;} F.actionQueue={register:function(id,callbacks,required_module){if(id instanceof Array){for(var n=0,len=id.length;n<len;n++){register_id(id[n],callbacks,required_module);}} else{register_id(id,callbacks,required_module);}},queue_click:function(id){var id_key=rectify_id(id);if(queueing&&id&&id_key&®istered_ids[id_key]){clicked_ids[id_key]=true;if(typeof interim_actions[id_key]==='function'){interim_actions[id_key](id);} return false;} else if(queueing){return false;} return true;},module_loaded:function(module_name,id_to_restrict_to){queueing=false;for(var id in id_to_module_map){if(id_to_module_map.hasOwnProperty(id)&&clicked_ids[id]&&id_to_module_map[id]===module_name){cleanup_actions[id](id_to_restrict_to?id_to_restrict_to:id);}}}};}(F));(function(F){var overlay,last_context_clicked;F.actionQueue.register('photo-lightbox',{interim:function(id){var viewport_dimensions=get_viewport_dimensions();overlay=document.createElement('div');overlay.className='interim-overlay';overlay.style.width=viewport_dimensions.width+'px';overlay.style.height=viewport_dimensions.height+'px';overlay.innerHTML='<img src="/images/progress/balls-24x12-black.gif" class="interim-spinner">';document.body.appendChild(overlay);},cleanup:function(id){if(F.actionQueue['photo-lightbox']&&typeof F.actionQueue['photo-lightbox'].open==='function'){F.actionQueue['photo-lightbox'].open();} overlay.parentNode.removeChild(overlay);}},'photo-lightbox');F.actionQueue.register('button-bar-options',{interim:function(id){var button=document.getElementById(id);button.className=button.className+' ActiveButt';},cleanup:function(id){F.actionQueue['photo-button-bar'].display_action();}},'photo-button-bar');F.actionQueue.register('button-bar-share',{interim:function(id){var button=document.getElementById(id);button.className=button.className+' ActiveButt';},cleanup:function(id){F.actionQueue['share-menu'].display_share();}},'share-menu');F.actionQueue.register('button-bar-fave',{interim:function(id){var fave_button=document.getElementById(id);if(fave_button.className.search(/fave/)===-1){fave_button.className='Butt ywa-track fave-button fave';} else{fave_button.className='Butt ywa-track fave-button';}},cleanup:function(id){F.actionQueue['photo-button-bar'].toggle_fave();}},'photo-button-bar');F.actionQueue.register('context-link-*',{interim:function(id){last_context_clicked=id;},cleanup:function(id){if(last_context_clicked===id){F.actionQueue['photo-filmstrip'][last_context_clicked].display();}}},'photo-filmstrip');F.actionQueue.register('add-a-tag',{interim:function(id){},cleanup:function(id){}},'flickr-tagrs');F.actionQueue.register('add-a-person',{interim:function(id){},cleanup:function(id){}},'photo-people');F.actionQueue.register('photoGeolocationEdit-addbutton',{interim:function(id){},cleanup:function(id){}},'mapr');F.actionQueue.register(['edit-privacy','edit-viewgeo','edit-comment-perm','edit-addmeta','edit-nipsa','edit-safety-level','edit-content-type'],{interim:function(id){},cleanup:function(id){}},'photo-sidebar-owner');function get_viewport_dimensions(){var doc=window.document,win=doc.defaultView||doc.parentWindow,mode=doc['compatMode'],h=win.innerHeight,w=win.innerWidth,root=doc['documentElement'];if(mode&&navigator.userAgent.search(/Opera[\s\/]([^\s]*)/)===-1){if(mode!='CSS1Compat'){root=doc.body;} h=root.clientHeight;w=root.clientWidth;} return{height:h,width:w};} F.actionQueue.register('photoGeolocation-*',{interim:function(id){var viewport_dimensions=get_viewport_dimensions();overlay=document.createElement('div');overlay.className="interim-spinner-transparent";document.body.appendChild(overlay);},cleanup:function(id){if(F.actionQueue.photoGeolocation&&typeof F.actionQueue.photoGeolocation.display==='function'){F.actionQueue.photoGeolocation.display();} overlay.parentNode.removeChild(overlay);}},'photoGeolocation');F.actionQueue.register('photoGeolocationEdit-*',{interim:function(id){var viewport_dimensions=get_viewport_dimensions();overlay=document.createElement('div');overlay.className="interim-spinner-transparent";document.body.appendChild(overlay);},cleanup:function(id){if(F.actionQueue.photoGeolocationEdit&&typeof F.actionQueue.photoGeolocationEdit.display==='function'){F.actionQueue.photoGeolocationEdit.display();} overlay.parentNode.removeChild(overlay);}},'photoGeolocationEdit');}(F));</script> <link rel="stylesheet" href="https://web.archive.org/web/20100814192849cs_/http://l.yimg.com/g/combo.gne?c/c_flickr_nav.css.vPM3W&c/c_flickr_zeus.css.vPmYo&c/c_flickr_nav.css.vPM3W&c/c_photo_zeus.css.vPM3W&c/c_photo-zeus-fr-fr.css.vPmcy&c/c_photo-filmstrip.css.vPM3W&c/c_fave-star.css.vPM3W&c/c_photo-notes-zeus.css.vMLYb&c/c_photos-people-zeus.css.vPM3W&c/c_photo-comments.css.vPM3W&c/c_tagrs_zeus.css.vPDpQ&c/c_sharing-zeus.css.vPHbN&c/c_guestpass_zeus.css.vMFo3&c/c_input-hint.css.vMrRy&c/c_pagination-zeus.css.vL1tm&c/c_foot_zeus.css.vPKYS&c/c_photo-tour-zeus.css.vP2Af" type="text/css"> <link rel="shortcut icon" type="image/ico" href="/web/20100814192849im_/http://www.flickr.com/favicon.ico"> <link rel="search" type="application/opensearchdescription+xml" href="/web/20100814192849/http://www.flickr.com/opensearch.xml" title="Flickr"> </head> <body class="signed-out "> <script>document.body.className = [document.body.className, 'js'].join(' ');</script> <div id="beacon"><img src="https://web.archive.org/web/20100814192849im_/http://geo.yahoo.com/f?s=792600146&t=cdee0ef748b1b4e9c133d702e670d597&fl_ev=0&lang=fr&intl=us" width="0" height="0" alt=""/></div> <a name="top"></a> <div id="head"> <div id="head-top"> <div id="head-logo"> <a href="/web/20100814192849/http://www.flickr.com/"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/fr-fr/flickr-yahoo-logo-2.png" width="180" height="30" alt="Logo Flickr. Si vous cliquez dessus, vous reviendrez à la page d'accueil"></a> </div> <div id="head-status"> Vous n'êtes pas connecté <a href="/web/20100814192849/http://www.flickr.com/signin/" class="ywa-track" data-ywa-name="Sign in (top)">Connexion</a> <a href="/web/20100814192849/http://www.flickr.com/help/">Aide</a> </div> </div> <div id="head-nav-bar"> <div id="search_header_container"> <form action="/web/20100814192849/http://www.flickr.com/search/" method="get" id="headersearchform"> <input name="q" id="header_search_q" type="text" tabindex="5" class="Box" value=""> <input name="w" id="searchform-w" type="hidden" value="all"> <input name="m" id="searchform-m" type="hidden" value=""> <input name="s" id="searchform-s" type="hidden" value="int"> <input name="mt" id="searchform-mt" type="hidden" value=""> <input name="referer_searched" id="referer_searched" type="hidden" value=""> <span id="headersearchbutton1"><input value="Rechercher" type="button" class="SmallButt"></span> </form> <div id="search_header_button_td" style="float:left;display:inline"> <div id="candy_search_button_bar" class="flickr_nav no_js candy_button_bar"> <ul class="site_nav_menu_buttons" style="padding-left:2px"> <li class="menu_li ywa-track" data-ywa-name="Search box" id="candy_nav_button_search"><span><a href="/web/20100814192849/http://www.flickr.com/search/">Rechercher</a> <img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" class="nav_button_caret" width="18" height="15" alt="Plus d'options"></span> <ul class="candy_menu" id="candy_nav_menu_search"> <li> <a title="Toutes Les Publications " href="/web/20100814192849/http://www.flickr.com/search/?w=all&s=int&mt="><b>·</b> Toutes Les Publications </a> </li> <li> <a title="Groups" href="/web/20100814192849/http://www.flickr.com/search/groups/">Groupes</a> </li> <li> <a title="Des membres Flickr" href="/web/20100814192849/http://www.flickr.com/search/people/?m=names">Des membres Flickr</a> </li> <li> <a id="search-location-search" title="Un lieu" href="/web/20100814192849/http://www.flickr.com/map/">Un lieu</a> </li> <li> <a title="Applications" href="/web/20100814192849/http://www.flickr.com/services/apps/search/">Applications</a> </li> <li> <hr/> <a title="Galerie de Mark Jaquith" href="/web/20100814192849/http://www.flickr.com/search/?w=24093998@N00">Galerie de Mark Jaquith</a> </li> </ul> </li> </ul> </div> </div> </div> <div id="candy_nav_button_bar" class="flickr_nav no_js candy_button_bar"> <ul class="site_nav_menu_buttons"> <li class="no_menu_li"><span><a href="/web/20100814192849/http://www.flickr.com/">Accueil</a></span></li> <li class="no_menu_li"> <span><a href="/web/20100814192849/http://www.flickr.com/tour/" alt="Visiter Flickr" class="ywa-track" data-ywa-name="Tour">La visite</a></span> </li> <li class="no_menu_li"> <span><a href="/web/20100814192849/http://www.flickr.com/signup/" alt="Ouvrir un compte gratuit" class="ywa-track" data-ywa-name="Sign up (top)">Inscription</a></span> </li> <li class="menu_li ywa-track" data-ywa-name="Explore" id="candy_nav_button_explore"><span><a href="/web/20100814192849/http://www.flickr.com/explore/" alt="Explorer Flickr">Explorer</a> <img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" class="nav_button_caret" width="18" height="15" alt="Plus d'options"></span> <ul class="candy_menu" id="candy_nav_menu_explore"> <li> <a href="/web/20100814192849/http://www.flickr.com/explore/">Page Explorer</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/explore/interesting/7days/">Le meilleur des 7 derniers jours</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/photos/tags/">Tags populaires</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/explore/interesting/2010/08/">Calendrier</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/photos/">Chargements les plus récents</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/explore/video/">La vidéo sur Flickr</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/galleries/">Expos</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/analog/">Explorez Analog</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/explore/clock/" title="Flickr Horloge">Flickr Horloge</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/gettyimages" title="Getty Images">Getty Images</a> </li> <li> <hr/> <a href="/web/20100814192849/http://www.flickr.com/map/" title="Photos et vidéos sur la carte">Carte du monde</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/places/">Lieux</a> </li> <li> <hr/> <a href="/web/20100814192849/http://www.flickr.com/commons/">The Commons</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/creativecommons/">Creative Commons</a> </li> <li> <hr/> <a href="https://web.archive.org/web/20100814192849/http://blog.flickr.com/">FlickrBlog</a> </li> <li> <a href="https://web.archive.org/web/20100814192849/http://code.flickr.com/">code.flickr</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/services/">App Garden</a> </li> <li> <a href="/web/20100814192849/http://www.flickr.com/cameras/">La recherche par appareil photo</a> </li> </ul> </li> </ul> </div> </div> </div> <div id="main" class="clearfix"> <noscript> <div class="info"><p>Pour profiter de tous les avantages de Flickr, utilisez un navigateur avec le Javascript activé et <a href="https://web.archive.org/web/20100814192849/http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">installez la dernière version du lecteur Flash Macromedia</a>.</p> </div> </noscript> <div id="tour-header"> <h2>La nouvelle page de photos Flickr. Plus grande. Plus rapide. Plus Flickr.</h2> <h3>Vous voulez faire une visite rapide ?</h3> <ol> <li id="step-1" class="first" data-step="1"> <span class="step-circle"><span></span></span> <span class="step-num">1</span> <span class="step-desc">Naviguer et visualiser</span> <span class="step-progress"></span> </li> <li id="step-2" data-step="2"> <span class="step-circle"><span></span></span> <span class="step-num">2</span> <span class="step-desc">Qui, quoi, où</span> <span class="step-progress"></span> </li> <li id="step-3" data-step="3"> <span class="step-circle"><span></span></span> <span class="step-num">3</span> <span class="step-desc">Commenter et partager</span> <span class="step-progress"></span> </li> <li id="step-4" data-step="4"> <span class="step-circle"><span></span></span> <span class="step-num">4</span> <span class="step-desc">Personnes et lieu</span> <span class="step-progress"></span> </li> <li id="step-5" class="last" data-step="5"> <span class="step-circle"><span></span></span> <span class="step-num">5</span> </li> </ol> <a href="/web/20100814192849/http://www.flickr.com/dismiss_photo_tour.gne" class="close-x ywa-track" data-ywa-name="Tour Dismiss"></a> </div> <div id="primary-column"> <div id="nav"> <ul id="button-bar" class="button-list"><li class="first"><a href="#" class="Butt ywa-track" id="button-bar-options" data-ywa-name="Actions" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4"><span>Actions</span><span class="caret">▾</span></a></li><li class="divider"><span> <span></span></span></li><li class="last"><a href="#" class="DisabledButt" id="button-bar-share" data-ywa-name="Share"><span>Partager</span><span class="caret">▾</span></a></li></ul> <ul id="nav-bar" class="button-list"><li class="first"><a id="nav-bar-prev" class="DisabledButt" href=""><span class="arrow"></span><span class="text">Plus récent</span></a></li><li class="divider"><span> <span></span></span></li><li><a id="nav-bar-lightbox" class="Butt ywa-track" data-ywa-name="Lightbox Icon" href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/sizes/l/" title="Afficher sur un fond noir" onclick="return F.actionQueue.queue_click(this.id);" tabindex="4"><span></span></a></li><li class="divider"><span> <span></span></span></li><li class="last"><a id="nav-bar-next" class="Butt ywa-track" data-ywa-name="Next, previous" href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4721297842/in/photostream/" tabindex="4"><span class="text">Plus ancien</span><span class="arrow"></span></a></li> </ul> <div class="tour-overlay-wrapper" style="clear:both;left:0.5em;top:3em;"> <div class="tour-overlay-item step-3 point-top point-farleft"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Favoris et partager</h3> <p>Enregistrez vos photos préférées, partagez-les avec un ami, ajoutez un tag et bien d’autres encore.</p> </div> </div> </div> </div> </div> <div id="photo"> <div id="photo-drag-proxy" class="zoom-trigger" style="width:640px; height:426px;"><ul id="notes" class="boxes"></ul> </div><div class="photo-div"> <img src="https://web.archive.org/web/20100814192849im_/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_z.jpg" alt="photo" width="640" height="426"></div> <div class="tour-overlay-item step-2 point-bottom point-farleft" style="bottom:20px;left:0px;"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Quel est le sujet de cette photo ?</h3> <p>Un titre et une description peuvent fournir des informations essentielles sur cette photo.</p> </div> </div> </div> </div> <div id="meta"> <h1 id="title_div4720647769" property="dc:title" class="photo-title">DSC_4202</h1> </div> <div id="invites" class="collapsed"> </div> <div id="comments"> <div class="login-to-add-comment"> <h3>Vous souhaitez ajouter un commentaire sur cette photo ?</h3> <p><a href="/web/20100814192849/http://www.flickr.com/signup/?redir=%2Fphotos%2Fmarkjaquith%2F4720647769%2F&from_photos=1&friend=24093998@N00" class="ywa-track" data-ywa-name="Sign up (comment form)">Créez votre compte gratuit</a> ou <a href="/web/20100814192849/http://www.flickr.com/signin/?cf=%2Fphotos%2Fmarkjaquith%2F4720647769%2F" title="Connexion à Flickr" class="ywa-track" data-ywa-name="Sign in (comment form)">connectez-vous</a> (si vous êtes déjà membre).</p> </div> </div> </div> <div id="sidebar"> <div class="tour-overlay-item step-1 point-left" style="margin-top:-68px;margin-left:6px"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Là où vous êtes</h3> <p>Aller rapidement à la photo suivante.</p> </div> </div> </div> <div class="tour-overlay-item step-1 point-top" style="width:21em;margin-left:-237px;margin-top:21px"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Zoom</h3> <p>Afficher en plus grand cette photo sur un fond noir.</p> </div> </div> </div> <div id="photo-story"> <div id="photo-story-attribution" class="clearfix"> <p class="flickr-user" nsid="24093998@N00"> <span class="name"> <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/"><img src="https://web.archive.org/web/20100814192849im_/http://farm1.static.flickr.com/23/buddyicons/24093998@N00.jpg?1253178353#24093998@N00" width="24" height="24" align="absmiddle" class="buddyicon personmenu-trigger"></a> <strong class="username">Par <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/">Mark Jaquith</a></strong> <span class="realname"><a href="/web/20100814192849/http://www.flickr.com/people/markjaquith/">Mark Jaquith</a></span> </span> </p> </div> <p id="photo-story-story"> Cette photo a été prise le <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/archives/date-taken/2010/01/01/" title="Importée le 21 juin 2010. " class="ywa-track" data-ywa-name="Date, Taken on">1 janvier 2010</a> avec une <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/meta/" class="ywa-track" data-ywa-name="Camera, Taken with">Nikon D700</a>. </p> <div id="photo-story-addtomap" class="story-divider"></div> <div id="photo-story-stats"> <span id="view-count" class="stat-item"> <span class="stat-icon"></span> 98 <span class="full-text">vues</span> </span> <a href="#comments" id="comment-count" class="stat-item zero"> <span class="stat-icon"></span> 0 <span class="full-text">commentaires</span> </a> <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/favorites/" class="ywa-track stat-item zero" data-ywa-name="Favorites count" id="fave-count"> <span class="stat-icon"></span> 0 <span class="full-text">favoris</span> </a> <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/galleries/" class="ywa-track stat-item zero" data-ywa-name="Gallery count" id="gallery-count"> <span class="stat-icon"></span> 0 <span class="full-text">expos</span> </a> </div> </div> <div class="tour-overlay-item step-2 point-top" style="left:20px"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>L’histoire de cette photo</h3> <p>Les principales informations sont disponibles ici : qui à pris la photo, quand, où, etc.</p> </div> </div> </div> <div id="sidebar-contexts"> <div class="tour-overlay-item step-1 point-bottom" style="margin-left:20px;margin-top:-9em"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Prévisualiser</h3> <p>Derouler la pellicule pour voir les photos qui y sont liées.</p> </div> </div> </div> <h4 class="primary-context-label">Cette photo fait partie de</h4> <ul id="primary-context"> <li id="context-stream-" data-context-id="photostream" data-context-type="stream" class="sidebar-context sidebar-context-open sidebar-context-first sidebar-context-first-only"> <div id="contextDiv_stream" class="ugly-temporary-hack" style="display:block;"></div> <div class="context-header"> <a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/with/4720647769/" class="context-link context-stream chunk ywa-track" data-ywa-name="Context Title" id="context-link-stream-" onclick="return F.actionQueue.queue_click(this.id);"> <span class="context-wrapper"> <span class="context-icon"></span> <span class="caret"></span> <span class="context-title" title="Galerie de Mark Jaquith">Galerie de Mark Jaquith</span> <small class="context-num" id="context-num-stream-"> (4 090) </small> </span> </a> </div> <div id="context-photos-stream" class="context-photos"> <ul id="context-photos-list-stream-" class="context-photos-list"> <li style="left:-122px" data-context-position="-2" class="loaded"> <span class="context-thumb-link context-thumb-placeholder"> </span> </li> <li style="left:-61px" data-context-position="-1" class="loaded"> <span class="context-thumb-link context-thumb-placeholder"> <span class="bound-msg"> <span class="newest">Photo la plus récente →</span> </span> </span> </li> <li style="left:0px" data-context-position="0" class="loaded"> <a class="context-thumb-link" href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/in/photostream/"> <img id="nextprev_thumb_stream4720647769" class="nextprev_thumb" src="https://web.archive.org/web/20100814192849im_/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_s.jpg" width="58" height="58" alt=""> </a> <span class="current-overlay"><span></span></span> </li> <li style="left:61px" data-context-position="1" class="loaded"> <a class="context-thumb-link ywa-track" href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4721297842/in/photostream/" title="DSC_4199" data-ywa-name="Context Widget (any photo)"> <img id="nextprev_thumb_stream4721297842" class="nextprev_thumb" src="https://web.archive.org/web/20100814192849im_/http://farm2.static.flickr.com/1177/4721297842_b43938483c_s.jpg" width="56" height="56" alt=""> </a> </li> <li style="left:122px" data-context-position="2" class="loaded"> <a class="context-thumb-link ywa-track" href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4721296288/in/photostream/" title="DSC_4176" data-ywa-name="Context Widget (any photo)"> <img id="nextprev_thumb_stream4721296288" class="nextprev_thumb" src="https://web.archive.org/web/20100814192849im_/http://farm2.static.flickr.com/1007/4721296288_13c25a2705_s.jpg" width="56" height="56" alt=""> </a> </li> </ul> </div> </li> </ul> </div> <div id="sidecar"> <div id="photo-sidebar-tags" class="tag-list"> <h4>Tags</h4> <div id="thetags-wrapper"> <ul id="thetags" class="sidecar-list"><li id="tagdiv144391-4720647769-290" class="first tag-element"><span class="tag-wrapper"><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/tags/people/" data-tag="people" data-photo-owner-screenname="Mark Jaquith" class="tag-item ywa-track" data-ywa-name="Tag(s)">People</a></span></li><li id="tagdiv144391-4720647769-17800368" class="tag-element"><span class="tag-wrapper"><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/tags/lukedalton/" data-tag="lukedalton" data-photo-owner-screenname="Mark Jaquith" class="tag-item ywa-track" data-ywa-name="Tag(s)">Luke Dalton</a></span></li><li id="tagdiv144391-4720647769-315419" class="tag-element"><span class="tag-wrapper"><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/tags/individuals/" data-tag="individuals" data-photo-owner-screenname="Mark Jaquith" class="tag-item ywa-track" data-ywa-name="Tag(s)">Individuals</a></span></li><li id="tagdiv144391-4720647769-23825" class="last tag-element"><span class="tag-wrapper"><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/tags/dalton/" data-tag="dalton" data-photo-owner-screenname="Mark Jaquith" class="tag-item ywa-track" data-ywa-name="Tag(s)">Dalton</a></span></li></ul><div class="clearfix"></div> </div> <div id="tag-global-search-template"> <!-- <div class="tag-global-search"> <div class="bd"> <div class="global-search-message"> <div class="added-by"></div> <div class="from-this-member">Afficher les photos <a href="%s" title="Afficher les photos comportant le tag %s de %s" class="user_tag_search">de cet utilisateur</a> ou <a href="%s" title="Afficher les photos comportant le tag %s de tout le monde" class="global_tag_search ywa-track" data-ywa-name="Tag(s), Global">de tout le monde</a></div> </div> <div class="wedge"></div> </div> </div> --> </div> <div id="machine_tag_toggle" class="empty"> <a href="#" id="machine_tag_toggle_show"><span class="caret"></span> Afficher les tags de programmation (<span id="span_machine_tags_show_count">0</span>)</a> <a href="#" id="machine_tag_toggle_hide"><span class="caret caret-down"></span> Masquer les tags de programmation (<span id="span_machine_tags_hide_count">0</span>)</a> </div> <ul id="themachinetags" class="icon-left sidecar-list"> </ul> </div> <div style="clear:both"></div> <div id="photo-sidebar-additional-info"> <h4>Informations supplémentaires</h4> <ul class="sidecar-list"> <li><span class="list-dot"></span>Ajoutée via <a href="/web/20100814192849/http://www.flickr.com/services/apps/72157603256314752/">FlickrExport 3 for Aperture</a></li> </ul> <ul class="icon-left machinetags-extras-list sidecar-list"> </ul> <ul class="icon-left machinetags-extras-list sidecar-list"> </ul> </div> <div id="photo-sidebar-can-use" class="sidecar"> <h4>Licence</h4> <ul class="icon-inline sidecar-list"> <li class="Stats license"> <span class="ccIcn ccIcnSmall force-left"><a href="/web/20100814192849/http://www.flickr.com/help/general/#147"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" height="15" width="15" class="f-sprite fs-icon_all_rights"></a></span> <span class="license-highlight"><a href="/web/20100814192849/http://www.flickr.com/help/general/#147">Tous droits réservés</a></span> </li> </ul> </div> <div id="photo-sidebar-privacy" class="sidecar"> <h4>Confidentialité</h4> <div class="tour-overlay-item step-3 point-top point-farleft" style="margin-left:-75px"> <div class="dialog"> <div class="point"><span></span></div> <div class="wedge"></div> <div class="bd"> <h3>Simplicité des contrôles de confidentialité</h3> <p>Définissez la confidentialité et les autorisations d’accès à vos photos comme vous le voulez. Un jeu d’enfant !</p> </div> </div> </div> <ul class="icon-left sidecar-list"> <li> <img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" width="15" height="15" align="left" class="f-sprite fs-icon_public force-left"> Tout le monde peut voir cette photo </li> </ul> </div> </div> <div id="share-menu" class="yui-skin-sam share-menu-bs" style="display:none"> <div id="share-menu-arrow">◢◣</div> <div id="share-menu-arrow-mask"></div> <ul id="share-menu-options"> <li id="share-menu-options-embed" class="share-menu-options"> <div class="share-menu-options-header"><span class="caret"></span> Copier le code HTML</div> <div class="share-menu-options-inner"> <p class="sharing_faded_text">Copier et coller le code ci-dessous :</p> <p class="sharing_embed_cont"> <textarea name="SharingEmbedMarkup" id="share-menu-options-embed-textarea" onfocus="this.select();" rows="4" wrap="virtual" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e.jpg" width="500" height="333" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupT" id="share-menu-options-embed-textarea-t" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e_t.jpg" width="100" height="67" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupTBBCode" id="share-menu-options-embed-textarea-t-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e_t.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupSQ" id="share-menu-options-embed-textarea-sq" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e_s.jpg" width="75" height="75" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupSQBBCode" id="share-menu-options-embed-textarea-sq-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e_s.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupS" id="share-menu-options-embed-textarea-s" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e_m.jpg" width="240" height="160" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupSBBCode" id="share-menu-options-embed-textarea-s-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e_m.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupM" id="share-menu-options-embed-textarea-m" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e.jpg" width="500" height="333" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupMBBCode" id="share-menu-options-embed-textarea-m-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupZ" id="share-menu-options-embed-textarea-z" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e_z.jpg" width="640" height="426" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupZBBCode" id="share-menu-options-embed-textarea-z-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e_z.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupL" id="share-menu-options-embed-textarea-l" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_cc538a119e_b.jpg" width="1024" height="681" alt="DSC_4202" /></a></textarea> <textarea name="SharingEmbedMarkupLBBCode" id="share-menu-options-embed-textarea-l-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_cc538a119e_b.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupOBBCode" id="share-menu-options-embed-textarea-o-bbcode" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup">[url=http://www.flickr.com/photos/markjaquith/4720647769/][img]http://farm2.static.flickr.com/1318/4720647769_dd8053d581_o.jpg[/img][/url] [url=http://www.flickr.com/photos/markjaquith/4720647769/]DSC_4202 de Mark Jaquith, sur Flickr[/url]</textarea> <textarea name="SharingEmbedMarkupO" id="share-menu-options-embed-textarea-o" onfocus="this.select();" rows="4" wrap="virtual" style="display:none" class="embed-markup"><a href="http://www.flickr.com/photos/markjaquith/4720647769/" title="DSC_4202 de Mark Jaquith, sur Flickr"><img src="http://farm2.static.flickr.com/1318/4720647769_dd8053d581_o.jpg" width="4256" height="2832" alt="DSC_4202" /></a></textarea> </p> <form id="sharing-get-html-form" action="#"> <select id="sharing_size" name="sharing_size"> Taille : <option value="Square">Carré (75 x 75)</option>Taille : <option value="Thumbnail">Miniature (100 x 67)</option>Taille : <option value="Small">Petit (240 x 160)</option>Taille : <option value="Medium" selected="selected">Moyen 500 (500 x 333)</option>Taille : <option value="Medium 640">Moyen 640 (640 x 426)</option>Taille : <option value="Large">Large (1024 x 681)</option>Taille : <option value="Original">Originale (4256 x 2832)</option> </select> <div id="code-types"> <input name="code-type" id="code-type-html" type="radio" value="html" checked="checked"/> <label for="code-type-html">HTML</label> <input name="code-type" id="code-type-bbcode" type="radio" value="BBCode"/> <label for="code-type-bbcode">BBCode</label> </div> <div class="clearfix"></div> </form> </div> </li> </ul> <p class="share-menu-license-info"> Licence de la photo : <span class="ccIcn ccIcnSmall force-left"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" height="15" width="15" class="f-sprite fs-icon_all_rights"></span> Tous droits réservés </p> </div> <div id="GPTooltip"> <span style="display: none;" id="tooltip_1281814129_0">Les Passes Invité vous permettent de partager vos photos qui ne sont pas publiques.<br/> <br/> Tout le monde peut voir vos photos publiques à tout moment, qu'il soit membre de Flickr ou non. Mais... Pour partager des photos amis, famille ou privé, utilisez un passe Invité.<br/> <br/> Pour partager des photos d'un album, vous pouvez créer un Passe Invité comprenant toutes vos photos marquées comme amis, famille ou privé. Pour partager toute votre galerie, vous pouvez créer un Passe Invité comprenant toutes vos photos marquées comme amis ou famille (mais pas vos photos privées).<br/> <br/> <a href="/web/20100814192849/http://www.flickr.com/help/sharing/#2184" target="_blank">En savoir plus sur les Passes Invité !</a></span><span class="Tip">[<a href="#" onclick="this.blur(); show_tooltip(this, 'tooltip_1281814129_0', 673); return false;">?</a>]</span> </div> <div id="options-menu"> <div id="options-menu-arrow">◢◣</div> <div id="options-menu-arrow-mask"></div> <ul> <li><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/sizes/" class="option-all-sizes ywa-track" data-ywa-name="All Sizes" tabindex="10"><span></span>Afficher toutes les tailles</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/show/with/4720647769/" class="option-slideshow ywa-track" data-ywa-name="Slideshow" tabindex="10"><span></span>Afficher le diaporama</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/photos/markjaquith/4720647769/meta/" class="option-meta ywa-track" data-ywa-name="Camera, More properties" tabindex="10"><span></span>Afficher les informations Exif</a></li> </ul> </div> </div> <div id="shortcuts"> raccourcis clavier : <kbd>←</kbd> photo précédente <kbd>→</kbd> photo suivante <kbd>L</kbd> afficher sur un fond noir <kbd><</kbd> faire défiler la pellicule vers la gauche <kbd>></kbd> vers la droite </div> </div> <div id="tour-final" class="tour-overlay-item step-5"> <div class="dialog"> <div class="bd"> <h1>Amusez vous maintenant !</h1> <p>Salut !</p> </div> </div> </div> <div id="tour-final-panda"> <div class="attribution">par <a href="/web/20100814192849/http://www.flickr.com/photos/ucumari/304626330/" alt="">ucumari</a></div> </div> <div id="tour-see-more" class="tour-overlay-item"> <div class="dialog"> <div class="bd"> Plus de détails... <img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/icon_blue_arrow_down.gif" alt=""/> </div> </div> </div> <div id="foot"> <div id="foot-wrap"> <div id="foot-share"> <a href="https://web.archive.org/web/20100814192849/http://delicious.com/save" onclick="window.open('https://web.archive.org/web/20100814192849/http://delicious.com/save?partner=flickr&v=5&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=550,height=550'); return false;"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" width="10" height="10" class="f-sprite fs-add_to_delicious"> Placer un signet sur Delicious</a> </div> <div id="foot-nav"> <ul> <li> <span>Vous</span> <ul> <li><a href="/web/20100814192849/http://www.flickr.com/signin/" class="ywa-track" data-ywa-name="Sign in (bottom)">Connexion</a></li> <li class="last"><a href="/web/20100814192849/http://www.flickr.com/signup/" class="ywa-track" data-ywa-name="Sign up (bottom)">Créez votre compte gratuit</a></li> </ul> </li> <li> <span><a href="/web/20100814192849/http://www.flickr.com/explore/">Explorer</a></span> <ul> <li><a href="/web/20100814192849/http://www.flickr.com/places/">Lieux</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/explore/interesting/7days/">Le meilleur des 7 derniers jours</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/explore/interesting/2010/08/">Photos du mois</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/photos/tags/">Tags populaires</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/commons/">The Commons</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/creativecommons/">Creative Commons</a></li> <li class="last"><a href="/web/20100814192849/http://www.flickr.com/search/">Rechercher</a></li> </ul> </li> <li> <span><a href="/web/20100814192849/http://www.flickr.com/help/">Aide</a></span> <ul> <li><a href="/web/20100814192849/http://www.flickr.com/guidelines.gne">Règles de la communauté</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/help/forum/">Le forum d'aide</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/help/faq/">FAQ</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/sitemap.gne">Plan du site</a></li> <li class="last"><a href="/web/20100814192849/http://www.flickr.com/help/">Obtenir de l'aide</a></li> </ul> </li> </ul> </div> <div id="foot-about"> <ul> <li><a href="https://web.archive.org/web/20100814192849/http://blog.flickr.net/fr">Blog Flickr</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/about/">À propos de Flickr</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/terms.gne">Conditions d'utilisation</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/privacy_policy.gne">Confidentialité</a></li> <li><a href="https://web.archive.org/web/20100814192849/http://docs.yahoo.com/info/copyright/copyright.html">Propriété intellectuelle</a></li> <li class="last"><a id="ft-report-abuse" href="/web/20100814192849/http://www.flickr.com/report_abuse.gne">Signaler un abus</a></li> </ul> </div> <div id="foot-lang"> <ul> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=zh-hk&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc" class="image_link" id="lang_zh-hk"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" width="45" height="13" id="langselect_zh-hk" alt="繁體中文"></a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=de-de&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc">Deutsch</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=en-us&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc">English</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=es-us&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc">Español</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=fr-fr&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc" class="selected">Français</a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=ko-kr&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc" class="image_link" id="lang_ko-kr"><img src="https://web.archive.org/web/20100814192849im_/http://l.yimg.com/g/images/spaceout.gif" width="23" height="13" id="langselect_ko-kr" alt="한글"></a></li> <li><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=it-it&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc">Italiano</a></li> <li class="last"><a href="/web/20100814192849/http://www.flickr.com/change_language.gne?lang=pt-br&magic_cookie=da7239f18f2c8f1d3aab83df7e95d2bc">Português</a></li> </ul> </div> <div id="foot-copy"> Copyright © 2010 Yahoo! Inc. Tous droits réservés. </div> </div> </div> <div id="global-dialog-background"></div> <div id="page-gen"><!-- page generated by www11 (in mud) at 12:28:49 08/14/10 in 255ms --></div> <script src="https://web.archive.org/web/20100814192849js_/http://l.yimg.com/g/combo.gne?j/yui/3.1.0/yui/yui-min.js.vLvSw&j/yui/3.1.0/loader/loader-min.js.vLvSw"></script> <script> (function() { F.intl = 'fr-fr'; var yconf = { loadOptional: false, flickr: { lang: 'fr-fr', photo_root: 'https://web.archive.org/web/20100814192849/http://farm.static.flickr.com/', site_root: 'https://web.archive.org/web/20100814192849/http://www.flickr.com', images_root: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/images', intl_images_root: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/images/fr-fr', is_touch_device: false, is_zeus: true, grease_enabled: 0, user: { nsid: '', ispro: 0, dbid: '', name: '', pathalias: '', expire: '', adultness: 0, photos_url: '/photos//', icon_url: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/images/buddyicon.jpg#', geo_last_location: '' ,useragent_fully_supported: 1 }, dejaview: { id: '8c9y7M' }, search: { search_default: '', search_alias: 'markjaquith', textsearch_enabled: true, search_referrer: null, search_scope: 'all', search_profile_nsid: '24093998@N00' }, enable_context_changer_keyboard_shortcut: true, enable_fave_keyboard_shortcut: true, printing: { use_printcart: true, country_user: '', country_snapfish: '', snapfish_cart_url: 'https://web.archive.org/web/20100814192849/http://www.snapfish.com/flickrentry/' }, sharing: { sending_guest_pass: 0, share_close_butt: '<br><br><input type="button" value="OK" class="Butt quick_share_ok" name="quick_share_ok" id="quick_share_ok">' }, photos: [], contact_limit: 3000, server_timestamp: 1281814129, magic_cookie: 'da7239f18f2c8f1d3aab83df7e95d2bc', notes: { can_add_note: false, can_add_person: false, photo_id: '4720647769', ratio: '1.28' }, photo: { id: '4720647769' }, video_player_version: '71377', lightbox: { enable: true, enable_faves: true , node_prune_threshold: 50, node_prune_amount: 10, position_preload_limit: 5, hd_default: false, video_autoplay: true } }, flickrAPI: { flickr_api_uri: '/services/rest/', api_key: '52c9b93ee41992e9e272391702fdf30b', auth_hash: 'da7239f18f2c8f1d3aab83df7e95d2bc', auth_token: '', secret: '5a991796c9b775a3' }, people: { skip: { }, api_url: '/people//contacts/cache/dump/da7239f18f2c8f1d3aab83df7e95d2bc.sa', canOnlyAddSelf: false, enableClickAndDrag: false }, yui2: '2.5.2', combine: true, root: '', base: '', comboBase: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/combo.gne?', loaderPath: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/javascript/yui/3.1.0/loader/loader-min.js', modules: {"add-to-dialog-css":{"type":"css","path":"c\/c_add-to-dialog-zeus.css.vPM3W","ext":false},"autocomplete-2-5-1":{"path":"j\/yahoo\/autocomplete_2.5.1-zeus.js.vPzuf","requires":["yui2-yahoo","yui2-dom","yui2-event","yui2-datasource"],"ext":false},"better-throttle":{"path":"j\/better-throttle.js.vPdo7","ext":false},"bitmap-text":{"path":"j\/bitmap-text-zeus.js.vLQEb","ext":false},"bitmap-type-silkscreen":{"path":"j\/bitmap-type-silkscreen.js.vLQEb","ext":false},"box-host":{"path":"j\/box-host.js.vMLJo","requires":["node","event-mousedrag","math","box-host-css"],"ext":false},"box-host-css":{"type":"css","path":"c\/c_box-host.css.vPHXC","ext":false},"bo-selecta":{"path":"j\/bo-selecta-zeus.js.vP5RU","requires":["anim","autocomplete-2-5-1","bo-selecta-css","bo-selecta-transjax","event","event-custom","event-target","gallery-flickr-api","io-base","node"],"ext":false},"bo-selecta-css":{"type":"css","path":"c\/c_bo-selecta-zeus.css.vMdXh","ext":false},"bo-selecta-transjax":{"path":"j\/bo-selecta-transjax-fr-fr.js.vNwWb","requires":["transjax-base"],"ext":false},"contact-changer":{"path":"j\/contact-changer-zeus.js.vPhUb","requires":["event-custom","event-delegate","io-base","global-dialog","gallery-flickr-api","contact-changer-css","contact-changer-transjax"],"ext":false},"contact-changer-css":{"type":"css","path":"c\/c_contact-changer-zeus.css.vMChJ","ext":false},"contact-changer-transjax":{"path":"j\/contact-changer-transjax-fr-fr.js.vLptQ","requires":["transjax-base"],"ext":false},"context-data":{"path":"j\/context-data.js.vPrph","requires":["event-target","gallery-flickr-api","history-manager","photo-data"],"ext":false},"context-manager":{"path":"j\/context-manager.js.vNKE7","ext":false},"defer-images":{"path":"j\/defer-images.js.vP2jJ","requires":["node-visibility"],"ext":false},"dejaview":{"path":"j\/dejaview-zeus.js.vNsty","requires":["cookie"],"ext":false},"escape":{"path":"j\/escape.js.vKNWo","ext":false},"event-annotations":{"path":"j\/event-annotations.js.vNHSE","ext":false},"event-mousedrag":{"path":"j\/event-mousedrag.js.vNwR1","requires":["node","event-custom-complex","event-synthetic","event-annotations"],"ext":false},"excanvas":{"path":"j\/excanvas.js.vm3Uw","ext":false},"fave-star":{"path":"j\/fave-star.js.vP8NA","requires":["node","anim"],"ext":false},"flickr-location-search":{"path":"j\/flickr_location_search.js.vKYkd","requires":["event","node","query-string-args"],"ext":false},"flickr-map":{"path":"j\/flickr-map.js.vPMg1","requires":["flickr-map-transjax","base","slider","gallery-flickr-api","photo","dragdrop","ymap","dd-drag","yui2_5-yahoo","yui2_5-event","yui2_5-dom","yui2_5-animation","yui2_5-dragdrop","flickr-map-css","flickr-map-css-intl","excanvas","event-custom-complex","json","gallery-storage-lite","better-throttle"],"ext":false},"flickr-map-transjax":{"path":"j\/flickr-map-transjax-fr-fr.js.vPvTC","requires":["transjax-base"],"ext":false},"flickr-map-css":{"type":"css","path":"c\/c_flickr-map.css.vPxt1","ext":false},"flickr-map-css-intl":{"type":"css","path":"c\/c_flickr-map-fr-fr.css.vPfWo","ext":false},"flickr-nav":{"path":"j\/flickr_nav.js.vPpBQ","requires":["event","node","context-manager","flickr-location-search","flickr-nav-css"],"ext":false},"flickr-nav-css":{"type":"css","path":"c\/c_flickr_nav.css.vPM3W","ext":false},"flickr-page-timing":{"path":"j\/flickr_page_timing.js.vPLXL","requires":["event","node"],"ext":false},"flickr-printing":{"path":"j\/flickr_printing.js.vPnQo","requires":["node","event","io","gallery-flickr-api","event-delegate","global-dialog","sprintf","flickr-printing-css","flickr-printing-transjax","flickr-tooltips"],"ext":false},"flickr-printing-css":{"type":"css","path":"c\/c_flickr_printing_zeus.css.vMaX9","ext":false},"flickr-printing-transjax":{"path":"j\/flickr_printing-transjax-fr-fr.js.vNwWb","requires":["transjax-base"],"ext":false},"flickr-tagrs":{"path":"j\/tagrs_zeus.js.vPGYJ","requires":["event","event-delegate","node","photo","query-string-args","flickr-tagrs-transjax"],"ext":false},"flickr-tagrs-transjax":{"path":"j\/tagrs_zeus-transjax-fr-fr.js.vPGYJ","requires":["transjax-base"],"ext":false},"flickr-tooltips":{"path":"j\/flickr-tooltips.js.vLhYf","requires":["event","event-delegate"],"ext":false},"focus-tracker":{"path":"j\/focus-tracker.js.vPFSW","ext":false},"formatting-tips-css":{"type":"css","path":"c\/c_formatting_tips_zeus.css.vKrAs","ext":false},"gallery-flickr-api":{"path":"j\/flickr_api.js.vPFJj","requires":["event","dump","io-xdr","substitute","json-parse"],"ext":false},"gallery-history-lite":{"path":"j\/gallery-history-lite.js.vL4i9","requires":["event-custom","event-custom-complex","node"],"ext":false},"gallery-storage-lite":{"path":"j\/gallery-storage-lite.js.vP3Xy","requires":["event-base","event-custom","event-custom-complex","json"],"ext":false},"getty":{"path":"j\/getty_new.js.vNj6m","requires":["event","dom","anim","node","gallery-flickr-api"],"ext":false},"global-dialog":{"path":"j\/global-dialog-zeus.js.vPzvY","requires":["node","event","event-delegate","event-key","global-dialog-transjax","global-dialog-css","context-manager"],"ext":false},"global-dialog-css":{"type":"css","path":"c\/c_global-dialog-zeus.css.vP5Ns","ext":false},"global-dialog-transjax":{"path":"j\/global-dialog-transjax-fr-fr.js.vKPQ7","requires":["transjax-base"],"ext":false},"guestpass-hide":{"path":"j\/guestpass-hide.js.vMFo3","requires":["anim","cookie","node"],"ext":false},"history-manager":{"path":"j\/history-manager.js.vNy2Y","requires":["event"],"ext":false},"image-fader":{"path":"j\/image-fader.js.vKFrU","requires":["node","anim"],"ext":false},"input-hint":{"path":"j\/input-hint.js.vLjHY","requires":["node","event-focus","focus-tracker"],"ext":false},"insitu":{"path":"j\/insitu-zeus.js.vP3G3","requires":["node","event-custom","json-stringify","dejaview","gallery-flickr-api","insitu-transjax","string-filters","insitu-css"],"ext":false},"insitu-css":{"type":"css","path":"c\/c_insitu-zeus.css.vP3G3","ext":false},"insitu-transjax":{"path":"j\/insitu-transjax-fr-fr.js.vNwWb","requires":["transjax-base"],"ext":false},"keyboard-shortcut-manager":{"path":"j\/keyboard-shortcut-manager.js.vPvAo","requires":["node","event-key","event-focus","event-custom","focus-tracker","context-manager"],"optional":["photo-people-list"],"ext":false},"timing-average":{"path":"j\/timing-average.js.vPLXL","requires":["event","cookie"],"ext":false},"math":{"path":"j\/math.js.vLPjA","ext":false},"nav-selecta":{"path":"j\/nav-selecta.js.vLVyE","requires":["bo-selecta","nav-selecta-css","nav-selecta-transjax","node"],"ext":false},"nav-selecta-css":{"type":"css","path":"c\/c_nav-selecta.css.vN17f","ext":false},"nav-selecta-transjax":{"path":"j\/nav-selecta-transjax-fr-fr.js.vNx2m","requires":["transjax-base"],"ext":false},"node-visibility":{"path":"j\/node-visibility.js.vPdDC","requires":["node","node-pluginhost","better-throttle","cache"],"optional":["anim","anim-scroll"],"ext":false},"number":{"path":"j\/number.js.vLKiQ","requires":["number-transjax"],"ext":false},"number-transjax":{"path":"j\/number-transjax-fr-fr.js.vNqG7","requires":["transjax-base"],"ext":false},"occult":{"path":"j\/occult.js.vNC21","requires":["node"],"ext":false},"personmenu":{"path":"j\/personmenu-zeus.js.vPyvm","requires":["node","anim","anim-scroll","node-visibility","event-custom","cache","io-base","personmenu-transjax","personmenu-css"],"optional":["contact-changer"],"ext":false},"personmenu-css":{"type":"css","path":"c\/c_personmenu-zeus.css.vNaH9","ext":false},"personmenu-transjax":{"path":"j\/personmenu-transjax-fr-fr.js.vNwWb","requires":["transjax-base"],"ext":false},"photo":{"path":"j\/photo-zeus.js.vPGbb","requires":["event-delegate","event-mouseenter","event-mousedrag","event-key","math","photo-button-bar","photo-comments","photo-keyboard-shortcuts","keyboard-shortcut-manager","photo-notes","photo-sidebar","photo-context-menu","event-annotations","context-manager","focus-tracker","photo-data","photo-lightbox","photo-ywa-tracking","occult","yahoo-ult"],"ext":false},"photo-button-bar":{"path":"j\/photo-button-bar.js.vPKDU","requires":["add-to-dialog-css","context-manager","event","event-delegate","event-key","fave-star","gallery-flickr-api","global-dialog","keyboard-shortcut-manager","node","node-event-simulate","photo-button-bar-transjax","context-data","photo-filmstrip","photo-permalink","photo-people-list"],"optional":["flickr-printing","photo-replace","photo-rotate","picnik","photo-notes"],"ext":false},"photo-button-bar-transjax":{"path":"j\/photo-button-bar-transjax-fr-fr.js.vPJPC","requires":["transjax-base"],"ext":false},"photo-comments":{"path":"j\/photo-comments.js.vPHa5","requires":["node","event-delegate","event-custom","anim","anim-scroll","node-visibility","io-form","dejaview","gallery-flickr-api","input-hint","photo-comments-transjax","formatting-tips-css","global-dialog","context-manager","history-manager","swfobject"],"optional":["insitu"],"ext":false},"photo-comments-transjax":{"path":"j\/photo-comments-transjax-fr-fr.js.vPpcG","requires":["transjax-base"],"ext":false},"photo-context-menu":{"path":"j\/photo-context-menu.js.vPvQb","requires":["event","node","photo","photo-context-menu-css","photo-context-menu-transjax","photo-data","photo-permalink"],"ext":false},"photo-context-menu-css":{"type":"css","path":"c\/c_photo-context-menu.css.vNzus","ext":false},"photo-context-menu-transjax":{"path":"j\/photo-context-menu-transjax-fr-fr.js.vNwXU","requires":["transjax-base"],"ext":false},"photo-data":{"path":"j\/photo-data.js.vPADu","requires":["base","node","event","gallery-flickr-api","anim","grease"],"ext":false},"photo-filmstrip":{"path":"j\/photo-filmstrip.js.vPKTG","requires":["anim","base","better-throttle","context-data","context-manager","event","event-delegate","event-key","event-simulate","focus-tracker","image-fader","io","node","number","photo-button-bar-transjax","photo-filmstrip-transjax"],"ext":false},"photo-filmstrip-transjax":{"path":"j\/photo-filmstrip-transjax-fr-fr.js.vPKTG","requires":["transjax-base"],"ext":false},"photo-geolocation":{"path":"j\/photo-geolocation.js.vPBqj","requires":["photo-geolocation-transjax","photo","context-manager"],"ext":false},"photo-geolocation-transjax":{"path":"j\/photo-geolocation-transjax-fr-fr.js.vPfwf","requires":["transjax-base"],"ext":false},"photo-geolocation-css":{"type":"css","path":"c\/c_photo-geolocation.css.vPfwf","ext":false},"photo-geosuggest":{"path":"j\/photo-geosuggest.js.vPAYs","requires":["photo-geosuggest-transjax","global-dialog"],"ext":false},"photo-geosuggest-transjax":{"path":"j\/photo-geosuggest-transjax-fr-fr.js.vNwXU","requires":["transjax-base"],"ext":false},"photo-group-invites":{"path":"j\/photo-group-invites.js.vNDHh","requires":["gallery-flickr-api","global-dialog","node","photo","photo-filmstrip","photo-group-invites-transjax"],"ext":false},"photo-group-invites-transjax":{"path":"j\/photo-group-invites-transjax-fr-fr.js.vNwXU","requires":["transjax-base"],"ext":false},"photo-insitu":{"path":"j\/photo-insitu.js.vNJ9b","requires":["insitu","photo","photo-data"],"ext":false},"photo-keyboard-shortcuts":{"path":"j\/photo-keyboard-shortcuts.js.vPBmS","requires":["cookie","node","event-key","event-focus","event-simulate","context-manager","focus-tracker"],"ext":false},"photo-lightbox":{"path":"j\/photo-lightbox.js.vPGbb","requires":["anim","better-throttle","context-manager","cookie","node","event-annotations","event-delegate","event-key","fave-star","gallery-flickr-api","history-manager","json","keyboard-shortcut-manager","photo-context-menu","context-data","photo-lightbox-css","photo-lightbox-transjax","photo-permalink","photo-ywa-tracking","string-filters","swfobject"],"ext":false},"photo-lightbox-css":{"type":"css","path":"c\/c_photo-lightbox.css.vPM3W","ext":false},"photo-lightbox-transjax":{"path":"j\/photo-lightbox-transjax-fr-fr.js.vPADu","requires":["transjax-base"],"ext":false},"photo-notes":{"path":"j\/photo-notes-zeus.js.vPFSW","requires":["better-throttle","bo-selecta","bo-selecta-transjax","box-host","event","event-annotations","event-delegate","focus-tracker","gallery-flickr-api","global-dialog","node","node-visibility","photo-notes-transjax","photo-people-controller","photo-people-transjax","string-filters"],"ext":false},"photo-notes-transjax":{"path":"j\/photo-notes-transjax-fr-fr.js.vPHP1","requires":["transjax-base"],"ext":false},"photo-owner-dialogs-css":{"type":"css","path":"c\/c_photo-owner-dialogs-zeus.css.vP9qN","ext":false},"photo-people-controller":{"path":"j\/photo-people-controller.js.vMdVy","requires":["event","gallery-flickr-api","dejaview","photo-people-transjax"],"ext":false},"photo-people-list":{"path":"j\/photo-people-list.js.vPJpu","requires":["event-delegate","bo-selecta","photo","node-visibility","anim","photo-people-controller","global-dialog","photo-people-transjax"],"optional":["photo-notes"],"ext":false},"photo-people-transjax":{"path":"j\/photo-people-transjax-fr-fr.js.vNxPU","requires":["transjax-base"],"ext":false},"photo-permalink":{"path":"j\/photo-permalink.js.vNJaU","ext":false},"photo-preloader":{"path":"j\/photo-preloader.js.vPr1S","requires":["event","context-data"],"ext":false},"photo-replace":{"path":"j\/photo-replace.js.vPmg1","requires":["event","node","io","global-dialog"],"ext":false},"photo-rotate":{"path":"j\/photo-rotate.js.vPrUA","requires":["anim","event","gallery-flickr-api","node","photo","photo-data","photo-rotate-css","photo-rotate-transjax"],"ext":false},"photo-rotate-css":{"type":"css","path":"c\/c_photo-rotate.css.vNE3f","ext":false},"photo-rotate-transjax":{"path":"j\/photo-rotate-transjax-fr-fr.js.vPnbs","requires":["transjax-base"],"ext":false},"photo-sidebar":{"path":"j\/photo-sidebar.js.vPLW3","requires":["excanvas","node","anim","bitmap-text","bitmap-type-silkscreen","event-custom","event-delegate","gallery-flickr-api","node-visibility","photo-sidebar-transjax","stylesheet"],"ext":false},"photo-sidebar-transjax":{"path":"j\/photo-sidebar-transjax-fr-fr.js.vPKTG","requires":["transjax-base"],"ext":false},"photo-sidebar-not-owner":{"path":"j\/photo-sidebar-not-owner.js.vLWQN","requires":["photo-sidebar","gallery-flickr-api","global-dialog","photo-sidebar-not-owner-transjax","photo-owner-dialogs-css"],"ext":false},"photo-sidebar-not-owner-transjax":{"path":"j\/photo-sidebar-not-owner-transjax-fr-fr.js.vNwZC","requires":["transjax-base"],"ext":false},"photo-sidebar-owner":{"path":"j\/photo-sidebar-owner.js.vPApG","requires":["photo-sidebar","gallery-flickr-api","global-dialog","photo-sidebar-owner-transjax","photo-owner-dialogs-css","context-manager"],"ext":false},"photo-sidebar-owner-transjax":{"path":"j\/photo-sidebar-owner-transjax-fr-fr.js.vNXJ7","requires":["transjax-base"],"ext":false},"photo-tour":{"path":"j\/photo-tour.js.vNGDY","requires":["anim","cookie","dom","event","photo","photo-tour-transjax"],"ext":false},"photo-tour-transjax":{"path":"j\/photo-tour-transjax-fr-fr.js.vN3iQ","requires":["transjax-base"],"ext":false},"photo-ywa-tracking":{"path":"j\/photo-ywa-tracking.js.vPwku","requires":["event","yahoo-web-analytics"],"ext":false},"picnik":{"path":"j\/picnik-zeus.js.vPrY3","requires":["picnik-transjax","json","io-base","swfobject","global-dialog","picnik-css"],"ext":false},"picnik-css":{"type":"css","path":"c\/c_picnik-zeus.css.vPp2m","ext":false},"picnik-transjax":{"path":"j\/picnik-transjax-fr-fr.js.vLqsJ","requires":["transjax-base"],"ext":false},"query-string-args":{"path":"j\/query-string-args.js.vKEJw","ext":false},"rushmore-settings":{"path":"j\/rushmore-settings.js.vNcjf","requires":["node","event","event-delegate","io","global-dialog"],"ext":false},"search-refer":{"path":"j\/search-refer-zeus.js.vKRaG","requires":["node","anim","cookie"],"ext":false},"share-menu":{"path":"j\/share-menu-zeus.js.vPM5E","requires":["node","event","event-key","anim","share-menu-transjax","bo-selecta"],"ext":false},"share-menu-transjax":{"path":"j\/share-menu-zeus-transjax-fr-fr.js.vPs7E","requires":["transjax-base"],"ext":false},"sprintf":{"path":"j\/sprintf.js.vNiA3","ext":false},"string-filters":{"path":"j\/string-filters.js.vNFGN","ext":false},"swfobject":{"path":"j\/swfobject.js.vKPmw","ext":false},"tour-nav":{"path":"j\/tour-nav.js.vPLB5","requires":["anim","node","node-event-simulate","io","querystring","history","yahoo-ult"],"ext":false},"tour-carousel":{"path":"j\/tour-carousel.js.vN3Uj","requires":["node","anim"],"ext":false},"transjax-base":{"path":"j\/transjax-base.js.vPL3j","requires":["sprintf"],"ext":false},"video":{"path":"j\/video-zeus.js.vPq6q","requires":["node","escape","event-custom","cookie","gallery-flickr-api","query-string-args","swfobject","video-transjax"],"ext":false},"video-transjax":{"path":"j\/video-zeus-transjax-fr-fr.js.vKNWo","requires":["transjax-base"],"ext":false},"yahoo-ult":{"path":"j\/yahoo-ult.js.vPboA","ext":false},"yahoo-web-analytics":{"path":"j\/ywa.js.vN4N3","ext":false},"ymap":{"path":"j\/ymapapi.js.vN4N3","requires":["event-synthetic","yui2_5-animation","yui2_5-yahoo","yui2_5-event","yui2_5-dom","yui2_5-dragdrop"],"ext":false},"yui2_5-yahoo":{"path":"j\/yahoo\/yahoo_2.5.1.js.vr3b7","ext":false},"yui2_5-event":{"path":"j\/yahoo\/event_2.5.1.js.vr3b7","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dom":{"path":"j\/yahoo\/dom_2.5.1.js.vr3b7","requires":["yui2_5-yahoo"],"ext":false},"yui2_5-dragdrop":{"path":"j\/yahoo\/dragdrop_2.5.1.js.vr3b7","requires":["yui2_5-yahoo","yui2_5-event","yui2_5-dom"],"ext":false},"yui2_5-animation":{"path":"j\/yahoo\/animation_2.5.1.js.vr3b7","requires":["yui2_5-yahoo","yui2_5-event","yui2_5-dom"],"ext":false}} }; YUI(yconf).use('', function (Y) { Y.use('defer-images', function(Y) { Y.deferImages('#comments img.defer', { threshold: Y.DOM.winHeight() }); Y.deferImages('#sidebar-contexts img.defer', { threshold: Y.DOM.winHeight() }); }); Y.use('flickr-nav', 'photo', 'photo-tour', 'context-data', 'photo-filmstrip', 'flickr-tagrs', 'photo-sidebar-not-owner', 'photo-geolocation', function(Y) { Y.flickr_nav.init({ open_on_hover: false }); Y.photo({"id":"4720647769","title":"DSC_4202","license":"0","safety_level":"0","owner":"24093998@N00","ownername":"Mark Jaquith","pathalias":"markjaquith","url":"\/photos\/markjaquith\/4720647769\/","media":"photo","secret":"cc538a119e","sizes":{"sq":{"label":"Square","file":"_cc538a119e_s.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_s.jpg","width":75,"height":75},"t":{"label":"Thumbnail","file":"_cc538a119e_t.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_t.jpg","width":"100","height":"67"},"s":{"label":"Small","file":"_cc538a119e_m.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_m.jpg","width":"240","height":"160"},"m":{"label":"Medium","file":"_cc538a119e.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e.jpg","width":"500","height":"333"},"z":{"label":"Medium 640","file":"_cc538a119e_z.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_z.jpg","width":"640","height":"426"},"l":{"label":"Large","file":"_cc538a119e_b.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_b.jpg","width":"1024","height":"681"},"o":{"label":"Original","file":"_dd8053d581_o.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_dd8053d581_o.jpg","width":"4256","height":"2832"}}}, { width: '640', height: '426', printing: { country_name: '', country_code: '', provider: '' }, server: '1318', ownersUrl: '/photos/markjaquith/', zoomUrl: '/photos/markjaquith/4720647769/sizes/l/', license: 0, sizes: { sq: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_s.jpg', width: 75, height: 75 }, t: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_t.jpg', width: 100, height: 67 }, s: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_m.jpg', width: 240, height: 160 }, m: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e.jpg', width: 500, height: 333 }, z: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_z.jpg', width: 640, height: 426 }, l: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_b.jpg', width: 1024, height: 681 }, o: { url: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_dd8053d581_o.jpg', width: 4256, height: 2832 } }, tags: [], tags_raw: [], swfObjSrc: 'https://web.archive.org/web/20100814192849/http://l.yimg.com/g/javascript/swfobject.js.v85491.14', ownerNsid: '24093998@N00', print_order: [], user_can_create_sets: 0, current_url: '/photos/markjaquith/4720647769/', qoop_url: 'https://web.archive.org/web/20100814192849/http://www.qoop.com/photobooks/flickr_user/flickr_start.php?product=prints&b_id=photoID-4720647769', tinyprints_url: 'https://web.archive.org/web/20100814192849/http://www.tinyprints.com/flickr', in_groups: [ ], geo_map_url: '/photos/markjaquith/4720647769/map/', geo_possessed_username: 'Mark Jaquith', geo_thmb: 'https://web.archive.org/web/20100814192849/http://farm2.static.flickr.com/1318/4720647769_cc538a119e_s.jpg', has_geo: false, is_editing_geo: false, gallery_ids_for_user: [ ], fave_count: 0, isPublic: 1 }); Y.photoTour.init(); Y.ContextData.add({ id: 'photostream', type: 'stream', title: 'Mark Jaquith Photostream', url: '/photos/markjaquith/', total: '4090', open: true, prev_limit: 0, photos: { '1': {"id":"4721297842","title":"DSC_4199","license":"0","safety_level":"0","owner":"24093998@N00","ownername":"Mark Jaquith","pathalias":"markjaquith","url":"\/photos\/markjaquith\/4721297842\/in\/photostream","media":"photo","secret":"b43938483c","sizes":{"sq":{"label":"Square","file":"_b43938483c_s.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c_s.jpg","width":75,"height":75},"t":{"label":"Thumbnail","file":"_b43938483c_t.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c_t.jpg","width":"67","height":"100"},"s":{"label":"Small","file":"_b43938483c_m.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c_m.jpg","width":"160","height":"240"},"m":{"label":"Medium","file":"_b43938483c.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c.jpg","width":"333","height":"500"},"z":{"label":"Medium 640","file":"_b43938483c_z.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c_z.jpg","width":"426","height":"640"},"l":{"label":"Large","file":"_b43938483c_b.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_b43938483c_b.jpg","width":"682","height":"1024"},"o":{"label":"Original","file":"_4c8da0fe50_o.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1177\/4721297842_4c8da0fe50_o.jpg","width":"2508","height":"3763"}}}, '2': {"id":"4721296288","title":"DSC_4176","license":"0","safety_level":"0","owner":"24093998@N00","ownername":"Mark Jaquith","pathalias":"markjaquith","url":"\/photos\/markjaquith\/4721296288\/in\/photostream","media":"photo","secret":"13c25a2705","sizes":{"sq":{"label":"Square","file":"_13c25a2705_s.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705_s.jpg","width":75,"height":75},"t":{"label":"Thumbnail","file":"_13c25a2705_t.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705_t.jpg","width":"100","height":"67"},"s":{"label":"Small","file":"_13c25a2705_m.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705_m.jpg","width":"240","height":"160"},"m":{"label":"Medium","file":"_13c25a2705.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705.jpg","width":"500","height":"333"},"z":{"label":"Medium 640","file":"_13c25a2705_z.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705_z.jpg","width":"640","height":"426"},"l":{"label":"Large","file":"_13c25a2705_b.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_13c25a2705_b.jpg","width":"1024","height":"682"},"o":{"label":"Original","file":"_1acef58399_o.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1007\/4721296288_1acef58399_o.jpg","width":"2725","height":"1816"}}}, '0': {"id":"4720647769","title":"DSC_4202","license":"0","safety_level":"0","owner":"24093998@N00","ownername":"Mark Jaquith","pathalias":"markjaquith","url":"\/photos\/markjaquith\/4720647769\/in\/photostream","media":"photo","secret":"cc538a119e","sizes":{"sq":{"label":"Square","file":"_cc538a119e_s.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_s.jpg","width":75,"height":75},"t":{"label":"Thumbnail","file":"_cc538a119e_t.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_t.jpg","width":"100","height":"67"},"s":{"label":"Small","file":"_cc538a119e_m.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_m.jpg","width":"240","height":"160"},"m":{"label":"Medium","file":"_cc538a119e.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e.jpg","width":"500","height":"333"},"z":{"label":"Medium 640","file":"_cc538a119e_z.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_z.jpg","width":"640","height":"426"},"l":{"label":"Large","file":"_cc538a119e_b.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_cc538a119e_b.jpg","width":"1024","height":"681"},"o":{"label":"Original","file":"_dd8053d581_o.jpg","url":"https:\/\/web.archive.org\/web\/20100814192849\/http:\/\/farm2.static.flickr.com\/1318\/4720647769_dd8053d581_o.jpg","width":"4256","height":"2832"}}} } }); Y.photoFilmstrip.add('photostream', { node: 'li#context-stream-' }); Y.tagRS.addTag('people', 'People'); Y.tagRS.addTag('lukedalton', 'Luke Dalton'); Y.tagRS.addTag('individuals', 'Individuals'); Y.tagRS.addTag('dalton', 'Dalton'); Y.photoSidebarNotOwner(); Y.photoGeolocation.init('.photo-story-geopanel-trigger'); Y.tagRS.init({ old_machine_tags: 0, global_tag_limit: '75' }); }); Y.use('photo-preloader', function(Y) { Y.photoPreloader.init({ preload_limits: { low: -1, high: 1 } }); }); }); })(); </script> </body> </html><!-- FILE ARCHIVED ON 19:28:49 Aug 14, 2010 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 15:03:35 Dec 11, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.675 exclusion.robots: 0.034 exclusion.robots.policy: 0.021 esindex: 0.012 cdx.remote: 8.214 LoadShardBlock: 872.799 (3) PetaboxLoader3.datanode: 786.948 (4) PetaboxLoader3.resolve: 1540.55 (2) load_resource: 1487.352 -->