onebox 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/.rubocop.yml +476 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +92 -0
- data/Rakefile +22 -0
- data/lib/onebox.rb +33 -0
- data/lib/onebox/engine.rb +93 -0
- data/lib/onebox/engine/amazon_onebox.rb +25 -0
- data/lib/onebox/engine/bliptv_onebox.rb +26 -0
- data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
- data/lib/onebox/engine/college_humor_onebox.rb +26 -0
- data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
- data/lib/onebox/engine/dotsub_onebox.rb +25 -0
- data/lib/onebox/engine/example_onebox.rb +25 -0
- data/lib/onebox/engine/flickr_onebox.rb +25 -0
- data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
- data/lib/onebox/engine/html.rb +11 -0
- data/lib/onebox/engine/hulu_onebox.rb +26 -0
- data/lib/onebox/engine/nfb_onebox.rb +25 -0
- data/lib/onebox/engine/open_graph.rb +11 -0
- data/lib/onebox/engine/qik_onebox.rb +23 -0
- data/lib/onebox/engine/revision3_onebox.rb +26 -0
- data/lib/onebox/engine/slideshare_onebox.rb +25 -0
- data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
- data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
- data/lib/onebox/engine/ted_onebox.rb +25 -0
- data/lib/onebox/engine/viddler_onebox.rb +26 -0
- data/lib/onebox/engine/vimeo_onebox.rb +26 -0
- data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
- data/lib/onebox/engine/yfrog_onebox.rb +25 -0
- data/lib/onebox/matcher.rb +13 -0
- data/lib/onebox/preview.rb +31 -0
- data/lib/onebox/version.rb +3 -0
- data/onebox.gemspec +36 -0
- data/spec/fixtures/amazon.response +3098 -0
- data/spec/fixtures/android.response +138 -0
- data/spec/fixtures/apple.response +391 -0
- data/spec/fixtures/bliptv.response +724 -0
- data/spec/fixtures/clickthrough.response +1472 -0
- data/spec/fixtures/clikthrough.response +1472 -0
- data/spec/fixtures/collegehumor.response +1272 -0
- data/spec/fixtures/dailymotion.response +575 -0
- data/spec/fixtures/dotsub.response +1257 -0
- data/spec/fixtures/example.response +50 -0
- data/spec/fixtures/flickr.response +1292 -0
- data/spec/fixtures/funnyordie.response +2010 -0
- data/spec/fixtures/gist.response +282 -0
- data/spec/fixtures/github_blob.response +706 -0
- data/spec/fixtures/github_commit.response +881 -0
- data/spec/fixtures/github_pullrequest.response +1619 -0
- data/spec/fixtures/hulu.response +339 -0
- data/spec/fixtures/image.response +0 -0
- data/spec/fixtures/imgur.response +892 -0
- data/spec/fixtures/kinomap.response +299 -0
- data/spec/fixtures/nfb.response +810 -0
- data/spec/fixtures/opengraph.response +27 -0
- data/spec/fixtures/qik.response +371 -0
- data/spec/fixtures/revision3.response +985 -0
- data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
- data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
- data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
- data/spec/fixtures/slideshare.response +1745 -0
- data/spec/fixtures/soundcloud.response +1409 -0
- data/spec/fixtures/stackexchange.response +1889 -0
- data/spec/fixtures/ted.response +1341 -0
- data/spec/fixtures/twitter.response +1712 -0
- data/spec/fixtures/viddler.response +442 -0
- data/spec/fixtures/video.response +0 -0
- data/spec/fixtures/vimeo.response +571 -0
- data/spec/fixtures/wikipedia.response +1236 -0
- data/spec/fixtures/wikipedia_redirected.response +899 -0
- data/spec/fixtures/yfrog.response +464 -0
- data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
- data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
- data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
- data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
- data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
- data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
- data/spec/lib/onebox/engine/example_spec.rb +18 -0
- data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
- data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
- data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
- data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
- data/spec/lib/onebox/engine/qik_spec.rb +35 -0
- data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
- data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
- data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
- data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
- data/spec/lib/onebox/engine/ted_spec.rb +30 -0
- data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
- data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
- data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
- data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
- data/spec/lib/onebox/engine_spec.rb +78 -0
- data/spec/lib/onebox/matcher_spec.rb +20 -0
- data/spec/lib/onebox/preview_spec.rb +21 -0
- data/spec/lib/onebox_spec.rb +49 -0
- data/spec/spec_helper.rb +26 -0
- data/spec/support/html_spec_helper.rb +17 -0
- data/templates/amazon.handlebars +9 -0
- data/templates/bliptv.handlebars +10 -0
- data/templates/clickthrough.handlebars +8 -0
- data/templates/clikthrough.handlebars +8 -0
- data/templates/collegehumor.handlebars +9 -0
- data/templates/dailymotion.handlebars +9 -0
- data/templates/dotsub.handlebars +9 -0
- data/templates/flickr.handlebars +8 -0
- data/templates/funnyordie.handlebars +9 -0
- data/templates/hulu.handlebars +9 -0
- data/templates/nfb.handlebars +8 -0
- data/templates/qik.handlebars +7 -0
- data/templates/revision3.handlebars +9 -0
- data/templates/slideshare.handlebars +8 -0
- data/templates/soundcloud.handlebars +9 -0
- data/templates/stackexchange.handlebars +7 -0
- data/templates/ted.handlebars +8 -0
- data/templates/viddler.handlebars +9 -0
- data/templates/vimeo.handlebars +9 -0
- data/templates/wikipedia.handlebars +8 -0
- data/templates/yfrog.handlebars +8 -0
- metadata +447 -0
|
@@ -0,0 +1,1745 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# slideshare: http://ogp.me/ns/fb/slideshare#">
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<!--
|
|
6
|
+
__________.__SlideShare_______ __
|
|
7
|
+
\______ \__| ____ \______ \ ____ _____/ |_
|
|
8
|
+
| | _/ |/ ___\ | | _// _ \ / _ \ __\
|
|
9
|
+
| | \ / /_/ >| | ( <_> | <_> ) |
|
|
10
|
+
|______ /__\___ / |______ /\____/ \____/|__|
|
|
11
|
+
\/ /_____/ \/
|
|
12
|
+
-->
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
16
|
+
<!-- SL:start:notranslate -->
|
|
17
|
+
<title>12 Local Traditions That Will Make You Go hmm.... when you travel a...</title>
|
|
18
|
+
<!-- SL:end:notranslate -->
|
|
19
|
+
<meta name="viewport" content="width=1024">
|
|
20
|
+
<!-- SL:start:notranslate -->
|
|
21
|
+
<meta name="description" content="12 Local traditions that will make you go hmm... Things to keep in mind on your international travels, before you wander off. We've researched a couple interest" />
|
|
22
|
+
<meta name="thumbnail" content="http://cdn.slidesharecdn.com/ss_thumbnails/12localtraditions-130729070157-phpapp01-thumbnail-2.jpg?1375360820" />
|
|
23
|
+
<!-- SL:end:notranslate -->
|
|
24
|
+
|
|
25
|
+
<!--[if !IE]>-->
|
|
26
|
+
<link rel="dns-prefetch" href="//www.slideshare.net">
|
|
27
|
+
<link rel="dns-prefetch" href="//public.slidesharecdn.com">
|
|
28
|
+
<link rel="dns-prefetch" href="//image.slidesharecdn.com">
|
|
29
|
+
<link rel="dns-prefetch" href="//cdn.slidesharecdn.com">
|
|
30
|
+
<link rel="dns-prefetch" href="//cdn01.smartling.com">
|
|
31
|
+
<!--<![endif]-->
|
|
32
|
+
|
|
33
|
+
<!--[if IE 9]>
|
|
34
|
+
<link rel="prefetch" href="//www.slideshare.net">
|
|
35
|
+
<link rel="prefetch" href="//public.slidesharecdn.com">
|
|
36
|
+
<link rel="prefetch" href="//image.slidesharecdn.com">
|
|
37
|
+
<link rel="prefetch" href="//cdn.slidesharecdn.com">
|
|
38
|
+
<link rel="prefetch" href="//cdn01.smartling.com">
|
|
39
|
+
<![endif]-->
|
|
40
|
+
|
|
41
|
+
<div></div>
|
|
42
|
+
<link href="http://public.slidesharecdn.com/bigboot/css/sv-core.css?d35bc6cb1e" media="screen" rel="stylesheet" type="text/css" />
|
|
43
|
+
<meta name="robots" content="index" /><link rel='stylesheet' type='text/css' media='all' href='http://public.slidesharecdn.com/slideview/styles/combined.css?9806c9fd' />
|
|
44
|
+
<div></div>
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
<!--<link rel="stylesheet" media="all and (min-width: 748px) and (max-width: 977px)" href="grid-748.css">
|
|
48
|
+
<link rel="stylesheet" media="all and (min-width: 0px) and (max-width: 747px)" href="grid-300.css">-->
|
|
49
|
+
<link href="http://public.slidesharecdn.com/stylesheets/ssplayer/combined_presentation.css?0bacc47e12" media="screen" rel="stylesheet" type="text/css" />
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
<script type="text/javascript" id="page-load">
|
|
53
|
+
// <![CDATA[
|
|
54
|
+
var timer = (new Date()).getTime();
|
|
55
|
+
var _jspl = {}
|
|
56
|
+
_jspl.pageInitTime = timer;
|
|
57
|
+
var _ssPageMetrics = {};
|
|
58
|
+
// ]]>
|
|
59
|
+
</script>
|
|
60
|
+
|
|
61
|
+
<script type="text/javascript">
|
|
62
|
+
var jQl={q:[],dq:[],ready:function(a){typeof a=="function"&&jQl.q.push(a);return jQl},unq:function(){for(var a=0;a<jQl.q.length;a++)jQl.q[a]();jQl.q=[]},bId:null,boot:function(a){if(typeof window.jQuery.fn=="undefined"){if(!jQl.bId)jQl.bId=setInterval(function(){jQl.boot(a)},25)}else{jQl.bId&&clearInterval(jQl.bId);jQl.bId=0;jQl.unqjQdep();$(jQl.unq());typeof a=="function"&&a()}},booted:function(){return jQl.bId===0},loadjQ:function(a,c){setTimeout(function(){var b=document.createElement("script"); b.src=a;document.getElementsByTagName("head")[0].appendChild(b)},1);jQl.boot(c)},loadjQdep:function(a){jQl.loadxhr(a,jQl.qdep)},qdep:function(a){if(a)typeof window.jQuery.fn!=="undefined"&&!jQl.dq.length?jQl.rs(a):jQl.dq.push(a)},unqjQdep:function(){if(typeof window.jQuery.fn=="undefined")setTimeout(jQl.unqjQdep,50);else{for(var a=0;a<jQl.dq.length;a++)jQl.rs(jQl.dq[a]);jQl.dq=[]}},rs:function(a){var c=document.createElement("script");document.getElementsByTagName("head")[0].appendChild(c);c.text= a},loadxhr:function(a,c){var b;b=jQl.getxo();b.onreadystatechange=function(){b.readyState!=4||200!=b.status||c(b.responseText,a)};try{b.open("GET",a,true);b.send("")}catch(d){}},getxo:function(){var a=false;try{a=new XMLHttpRequest}catch(c){for(var b=["MSXML2.XMLHTTP.5.0","MSXML2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],d=0;d<b.length;++d){try{a=new ActiveXObject(b[d])}catch(e){continue}break}}finally{return a}}}; if(typeof window.jQuery=="undefined")var $=jQl.ready,jQuery=$;
|
|
63
|
+
</script>
|
|
64
|
+
|
|
65
|
+
<script id="page-json" type="text/javascript"><!--
|
|
66
|
+
var slideshare_object = {"downloads":{"sp_isdwnl":true,"allow":true},"totalSlides":16,"is_free_author":false,"version_no":"1375360820","dev":false,"stats":{"url":"http://www.slideshare.net/~/slideshow/stats/24725301.json"},"slideshow_placeholder":"//public.slidesharecdn.com/images/thumbnail.png","userimage_placeholder":"//public.slidesharecdn.com/images/user-48x48.png","beacon_url":"stats.slideshare.net/1.gif","jsplayer":{"disable_eagerload":false,"start_slide":1,"meta_error_template":"\u003Cstyle type=\"text/css\"\u003E\n .jsplayer-slide-error {\n background-color: #000;\n padding: 20% 0 13% !important;\n }\n .jsplayer-slide-error div {\n text-align: center;\n }\n .jsplayer-slide-error img {\n height: 79px !important;\n margin: 0 0 10px;\n width: 80px !important;\n }\n .jsplayer-slide-error .slide-error-body {\n color: #eee;\n font-family: 'Lucida Grande',Verdana, Arial, Helvetica, sans-serif;\n padding: 0 !important;\n }\n .jsplayer-slide-error .slide-error-body p {\n font-size: 0.8em;\n line-height: 1.1em;\n margin: 8px 0;\n } \n .jsplayer-slide-error .slide-error-body input[type=button] {\n margin: 7px 0 0;\n padding: 7px 14px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\"jsplayer-slide-error\"\u003E\n \u003Cdiv style=\"position:relative;\"\u003E\n \u003Cimg src='//public.slidesharecdn.com/images/ssplayer/error_dudes-80x79.png' height=\"79\" width=\"80\" /\u003E\n \u003Cdiv class=\"slide-error-body\"\u003E\n \u003Cp\u003EWe have encountered an error.\u003C/p\u003E\n \u003Cp\u003EPlease refresh the page.\u003C/p\u003E\n \u003C/div\u003E\n \u003C/div\u003E\n\u003C/div\u003E\n","player_type":"presentation","shareoptions":{"twitter_share":"http://www.slideshare.net/share/tweet/24725301/12%20Local%20Traditions%20That%20Will%20Make%20You%20Go%20hmm....%20when%20you%20travel%20abroad%20by%20@travelworldpass%20on%20@slideshare","linkedin_share":"http://www.slideshare.net/share/linkedin/24725301/SlideShare:%2012%20Local%20Traditions%20That%20Will%20Make%20You%20Go%20hm...","html":"\u003Cdiv id=\"fb-root\"\u003E\u003C/div\u003E\n\u003Cscript\u003E\n(function(d, s, id) {\n var js, fjs = d.getElementsByTagName(s)[0];\n if (d.getElementById(id)) {return;}\n js = d.createElement(s); js.id = id;\n js.src = \"//connect.facebook.net/en_US/all.js\";\n fjs.parentNode.insertBefore(js, fjs);\n }(document, 'script', 'facebook-jssdk'));\n(function(){ var FBInitParams = {\n appId : '2490221586',\n status : true, // check login status\n cookie : true, // enable cookies to allow the server to access the session\n xfbml : true, // parse XFBML\n oauth : true, // to enable OAuth 2.0\n channelUrl : '//public.slidesharecdn.com/channel.html'\n };\n if(typeof(FB) === \"object\"){\n window.setTimeout(function(){\n FB.XFBML.parse();\n FB.Event.subscribe('edge.create',fbLike);\n },50);\n }else{\n window.fbAsyncInit = function() {\n FB.init(FBInitParams);\n FB.Event.subscribe('edge.create',fbLike);\n }\n }\n function fbLike(response,widget){\n if(widget.dom \u0026\u0026 widget.dom.id === \"proLastScreenFB\"){\n _gaq.push(['_trackEvent', 'bigfoot_slideview', 'proLastscreenFBLike']);\n }\n }\n})();\n\u003C/script\u003E\n\u003Cdiv class=\"shareoptions\"\u003E\n \u003Cul class=\"thirdPartyShare\"\u003E\n\t\u003Cli\u003E\u003Ca href=\"#\" class=\"shareSprite Twitter\"\u003E\u0026nbsp; \u003C/a\u003E\u003C/li\u003E\n \u003Cli\u003E\u003Ca href=\"#\" class=\"shareSprite Linkedin\"\u003E\u0026nbsp; \u003C/a\u003E\u003C/li\u003E\n \u003Cli style=\"overflow:hidden;width:50px !important;\"\u003E\n \u003Cdiv class=\"fb-like\" data-send=\"false\" data-layout=\"button_count\" data-width=\"50\" data-show-faces=\"false\"\u003E\u003C/div\n \u003C/li\u003E\n \u003C/ul\u003E\n\u003C/div\u003E","facebook_share":"http://www.slideshare.net/share/facebook/24725301/Check%20out%20this%20SlideShare%20presentation%20:%2012%20Local%20Traditions%20That%20Will%20Make%20You%20Go%20hm..."},"inpage_full_screen":true,"has_video":false,"preload_after_pageload":true,"toolbar_html":"\u003C!--[if IE 7]\u003E\n \u003Cstyle\u003E\n .toolbar .navActions { position: relative; top: -28px; }\n div.toolbar .nav {margin-left : 37%; }\n \u003C/style\u003E\n\u003C![endif]--\u003E\n \u003Ca href=\"#\" class=\"sprite btnViewOnSS\" title=\"View on SlideShare\"\u003E\u0026nbsp;\u003C/a\u003E\u003C!-- view on SS --\u003E\n \u003Cdiv class=\"nav\"\u003E\n \u003Ca href=\"#btnFirst\" class=\"btnFirst\" title=\"First Slide\" rel=\"nofollow\"\u003E\u0026laquo;\u003C/a\u003E\n \u003Ca href=\"#btnPrevious\" class=\"btnPrevious\" title=\"Previous Slide\" rel=\"nofollow\"\u003E\u0026lsaquo;\u003C/a\u003E\n \u003Ca href=\"#btnNext\" class=\"btnNext\" title=\"Next Slide\" rel=\"nofollow\"\u003E\u0026rsaquo;\u003C/a\u003E\n \u003Ca href=\"#btnLast\" class=\"btnLast\" title=\"Last Slide\" rel=\"nofollow\"\u003E\u0026raquo;\u003C/a\u003E\n \u003C/div\u003E\n \u003Cdiv class=\"navActions\"\u003E\n \u003Ca href=\"#\" class=\"btnFullScreen\" title=\"View Fullscreen\" rel=\"nofollow\"\u003E\u0026nbsp;\u003C/a\u003E\n \u003Ca href=\"#\" class=\"btnLeaveFullScreen\" title=\"Exit Fullscreen\" rel=\"nofollow\"\u003E\u0026nbsp;\u003C/a\u003E\n \u003Clabel class=\"goToSlideLabel\"\u003E\u003Cinput type=\"text\" name=\"goToSlide\" value=\"1\" /\u003E\u003Cspan\u003E/123\u003C/span\u003E\u003C/label\u003E\n \n \u003Ca href=\"#\" class=\"btnShare\" title=\"Share\" rel=\"nofollow\"\u003E\u003C/a\u003E\n \n \u003C/div\u003E\n","fullscreen_bgcolor":"jsplBgColorWhite","beacon_url":"stats.slideshare.net/1.gif","video_slides_count":0,"page":1,"fullscreen_url":"/fullscreen/TravelWorldPassport/12-local-traditions","show_image_player":true,"hosted_in":"slideview","is_only_private":false,"slide_count":16,"ppt_location":"12localtraditions-130729070157-phpapp01","player_bgcolor":"jsplBgColorBigfoot","is_private":false,"image_bucket_location":"//image.slidesharecdn.com/12localtraditions-130729070157-phpapp01","slideview_url":"/TravelWorldPassport/12-local-traditions","replayscreen":{"html":"\u003Ca href=\"#\" class=\"replayScreenReplay\" \u003EView again\u003C/a\u003E"},"stripped_title":"12-local-traditions","image_ready":true,"bucket_location":"//html.slidesharecdn.com/12localtraditions-130729070157-phpapp01/","spinner_url":"//public.slidesharecdn.com/images/ssplayer/loading_bigfoot.gif?7bb6a01864","author_id":55337030,"disable_share":true,"html_ttffont_url_suffix":".js","lastscreen":{"related":[{"url":"/TravelWorldPassport/movie-inspired-travel-destinations","views":1284,"title":"Movie Inspired Travel Destinations","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/movieinspiredtraveldestinations-130730234928-phpapp02-thumbnail-2.jpg?1375320724","author_login":"TravelWorldPassport","author":"TravelWorldPassport"},{"url":"/JeremyWiz/wisniewski-jeremy-ignite-presentationpay-me","views":188,"title":"Wisniewski jeremy ignite presentati...","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/wisniewskijeremyignitepresentationpayme-130518192600-phpapp02-thumbnail-2.jpg?1368923258","author_login":"JeremyWiz","author":"JeremyWiz"},{"url":"/TravelWorldPassport/how-to-use-travel-world-passport","views":517,"title":"How to use travel world passport","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/howtousetravelworldpassport-130716101727-phpapp02-thumbnail-2.jpg?1374079508","author_login":"TravelWorldPassport","author":"TravelWorldPassport"},{"url":"/TravelWorldPassport/12-memorable-quotes-for-travellers-24523876","views":1009,"title":"12 memorable quotes for travellers","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/12memorablequotesfortravellers-130723000223-phpapp02-thumbnail-2.jpg?1374556006","author_login":"TravelWorldPassport","author":"TravelWorldPassport"},{"url":"/quintonstoneking/q-stoneking-d41","views":138,"title":"Q stoneking d4-1","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/qstonekingd4-1-130721202458-phpapp01-thumbnail-2.jpg?1374456385","author_login":"quintonstoneking","author":"Quinton Stoneking"},{"url":"/BlairSmith87/b-smith-ignitepresentationslideshow-pdf","views":142,"title":"B smith ignite_presentation_slidesh...","thumbnail":"//cdn.slidesharecdn.com/ss_thumbnails/bsmithignitepresentationslideshowpdf-130421214618-phpapp01-thumbnail-2.jpg?1366598856","author_login":"BlairSmith87","author":"BlairSmith87"}],"url":"http://www.slideshare.net/TravelWorldPassport/12-local-traditions","html":"\u003C!--[if IE 7]\u003E\n \u003Cstyle\u003E\n .small.lastScreen{\n margin-top:23%;\n }\n .normal.lastScreen{\n margin-top:8%;\n }\n .lastScreen{\n margin-top:13%;\n }\n \u003C/style\u003E\n\u003C![endif]--\u003E\n\n\u003Cdiv class=\"lastScreen\"\u003E\n \u003Cdiv class=\"pro-overlay\"\u003E\n\t\u003Cspan class=\"close-btn\"\u003E\u003Ca href=\"#\"\u003E\u0026times;\u003C/a\u003E\u003C/span\u003E\n \u003Cdiv class=\"proSharingText\"\u003ELike this presentation? Why not share!\u003C/div\u003E\n \n \u003Cul class=\"lastActions\"\u003E\n \u003Cli class=\"email\"\u003E\u003Ca href=\"#\" class=\"lastScreen-sprite lastScreenEmailShare j-tooltip\" data-original-title=\"Email this to your contacts\" title=\"Email this to your contacts\" \u003Eemail\u003C/a\u003E\u003C/li\u003E\n \u003Cli class=\"embed\"\u003E\u003Clabel \u003Eembed\u003C/label\u003E\u003Cinput type='text' class=\"lastScreenEmbedCode j-tooltip\" data-original-title=\"Embed this on your website or blog\" title=\"Embed this on your website or blog\" /\u003E\u003C/li\u003E\n \u003Cli class=\"url\"\u003E\u003Clabel \u003Eurl\u003C/label\u003E\u003Cinput type='text' class=\"lastScreenSSUrl j-tooltip\" data-original-title=\"View on Slideshare\" title=\"View on Slideshare\" /\u003E\u003C/li\u003E\n \u003Cli class=\"replay last\"\u003E\u003Ca href=\"#\" class=\"lastScreen-sprite lastScreenReplay j-tooltip\" data-original-title=\"View again\" title=\"View again\" \u003E\u0026nbsp;\u003C/a\u003E\u003C/li\u003E\n \u003C/ul\u003E\n \u003Cdiv class=\"relatedPresentation\"\u003E\n \u003Ca href=\"#\" class=\"close\"\u003E\u0026times;\u003C/a\u003E\n \u003Cul\u003E\n \u003Cli class='relatedContent'\u003E\n \u003Ca class=\"relatedThumb\" href=\"#\"\u003E\u003Cimg src=\"//public.slidesharecdn.com/images/thumbnail.png\"\u003E\u003C/a\u003E\n \u003Cdiv class=\"presentationMeta\"\u003E\n \u003Ca href=\"#\" class=\"relatedTitle\"\u003Etitle comes here\u003C/a\u003E\n \u003Cp\u003EFrom: \u003Ca class=\"relatedAuthor\" href=\"#\"\u003EName comes here\u003C/a\u003E\u003C/p\u003E\n \u003Cp\u003EViews: \u003Cspan class=\"relatedViews\"\u003EViews comes here\u003C/span\u003E\u003C/p\u003E\n \u003C/div\u003E\n \u003C/li\u003E\n\n \u003Cli class='relatedContent'\u003E\n \u003Ca class=\"relatedThumb\" href=\"#\"\u003E\u003Cimg src=\"//public.slidesharecdn.com/images/thumbnail.png\"\u003E\u003C/a\u003E\n \u003Cdiv class=\"presentationMeta\"\u003E\n \u003Ca href=\"#\" class=\"relatedTitle\"\u003Etitle comes here\u003C/a\u003E\n \u003Cp\u003EFrom: \u003Ca class=\"relatedAuthor\" href=\"#\"\u003EName comes here\u003C/a\u003E\u003C/p\u003E\n \u003Cp\u003EViews: \u003Cspan class=\"relatedViews\"\u003EViews comes here\u003C/span\u003E\u003C/p\u003E\n \u003C/div\u003E\n \u003C/li\u003E\n \u003C/ul\u003E\n \u003Cdiv class=\"relatedNav\"\u003E\n \u003Ca href=\"#\" class=\"lastScreen-sprite lastScreenNext\"\u003E\u0026nbsp;\u003C/a\u003E\n \u003Ca href=\"#\" class=\"lastScreen-sprite lastScreenPrev\"\u003E\u0026nbsp;\u003C/a\u003E\n \u003C/div\u003E\n \u003C/div\u003E\n \n \u003C/div\u003E \u003C!-- end of div class pro-overlay --\u003E\n\u003C/div\u003E\u003C!-- last screen ends here --\u003E\n"},"has_audio":false,"spinner_url_fullscreen":"//public.slidesharecdn.com/images/ssplayer/loading_white.gif?c5889cf60d","container":"svPlayerId","slide_error_template":"\u003Cstyle type=\"text/css\"\u003E\n .jsplayer-slide-error {\n background-color: #000;\n padding: 20% 0 13% !important;\n }\n .jsplayer-slide-error div {\n text-align: center;\n }\n .jsplayer-slide-error img {\n height: 79px !important;\n margin: 0 0 10px;\n width: 80px !important;\n }\n .jsplayer-slide-error .slide-error-body {\n color: #eee;\n font-family: 'Lucida Grande',Verdana, Arial, Helvetica, sans-serif;\n padding: 0 !important;\n }\n .jsplayer-slide-error .slide-error-body p {\n font-size: 0.8em;\n line-height: 1.1em;\n margin: 7px 0 11px;\n }\n .jsplayer-slide-error .slide-error-body input[type=button] {\n margin: 7px 0 0;\n padding: 7px 14px;\n }\n\u003C/style\u003E\n\u003Cdiv class=\"jsplayer-slide-error\"\u003E\n \u003Cdiv style=\"position:relative;\"\u003E\n \u003Cimg src='//public.slidesharecdn.com/images/ssplayer/error_dudes-80x79.png' height=\"79\" width=\"80\" /\u003E\n \u003Cdiv class=\"slide-error-body\"\u003E\n \u003Cp\u003EWe were unable to load the slide.\u003C/p\u003E\n \u003Cinput class=\"btn btn-large\" type=\"button\" value=\"Reload slide\" /\u003E\n \u003C/div\u003E\n \u003C/div\u003E\n\u003C/div\u003E\n","id":24725301,"timestamp":1375360820,"html_eotfont_url_suffix":"-eot.js","mode":"html","sharescreen":{"url":"http://www.slideshare.net/TravelWorldPassport/12-local-traditions","title":"12 Local Traditions That Will...","slideshow_id":24725301,"html":"\u003Cdiv class=\"shareScreen\"\u003E\n \u003Ca href=\"#\" class=\"close\"\u003E\u0026times;\u003C/a\u003E\n \u003Cul class=\"shareMethods\"\u003E\n \u003Cli class=\"embed\"\u003E\n \u003Clabel for=\"embed-code\"\u003EEmbed\u003C/label\u003E\n \u003Cinput type='text' class=\"shareScreenEmbedCode\" value=\"code\" name=\"embed-code\" /\u003E\n \u003C/li\u003E\n \u003Cli class=\"url last\"\u003E\n \u003Clabel for=\"embed-url\"\u003EURL\u003C/label\u003E\n \u003Cinput type='text' class=\"shareScreenSSUrl\" value=\"code\" name=\"embed-url\" /\u003E\n\t\u003C/li\u003E\n \u003C/ul\u003E\n \u003Cform class=\"emailShare\"\u003E\n \u003Cfieldset\u003E\n \u003Clegend\u003EEmail this\u003C/legend\u003E\n \u003Cinput type=\"hidden\" class=\"shareDefaultMessage\" value=\"I think you will find this useful.\" /\u003E\n \u003Cul\u003E\n \u003Cli\u003E\n \u003Clabel for=\"name\"\u003EYour name\u003C/label\u003E\n \u003Cinput class='shareScreenFromName' type=\"text\" value=\"\" /\u003E\n \u003C/li\u003E\n \u003Cli\u003E\n \u003Clabel for=\"mailID\"\u003EEmail to\u003C/label\u003E\n \u003Cinput class=\"shareScreenMailID\" type=\"text\" value=\"\" /\u003E\n \u003C/li\u003E\n \u003Cli class=\"submit\"\u003E\n \u003Clabel\u003E\u0026nbsp;\u003C/label\u003E\n \u003Cinput class=\"shareSprite\" type=\"submit\" value=\"\" /\u003E\n \u003C/li\u003E \n \u003C/ul\u003E\n \u003C/fieldset\u003E\n \u003C/form\u003E\n\u003C/div\u003E\u003C!-- shareScreen ends here --\u003E","user_name":""},"embed_code":"\u003Ciframe src=\"http://www.slideshare.net/slideshow/embed_code/24725301\" width=\"427\" height=\"356\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" style=\"border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px\" allowfullscreen webkitallowfullscreen mozallowfullscreen\u003E \u003C/iframe\u003E \u003Cdiv style=\"margin-bottom:5px\"\u003E \u003Cstrong\u003E \u003Ca href=\"http://www.slideshare.net/TravelWorldPassport/12-local-traditions\" title=\"12 Local Traditions That Will Make You Go hmm.... when you travel abroad\" target=\"_blank\"\u003E12 Local Traditions That Will Make You Go hmm.... when you travel abroad\u003C/a\u003E \u003C/strong\u003E from \u003Cstrong\u003E\u003Ca href=\"http://www.slideshare.net/TravelWorldPassport\" target=\"_blank\"\u003ETravelWorldPassport\u003C/a\u003E\u003C/strong\u003E \u003C/div\u003E","has_lead":false,"use_ssl":false,"track_slide_enable":1},"activities":{"favorites":{"url":"http://www.slideshare.net/~/slideshow/favorites_list/24725301.json","count":7,"total":7}},"user":{"member_type":"non-member"},"startSlide":1,"slideshow":{"pin_image_url":"http://cdn.slidesharecdn.com/ss_thumbnails/12localtraditions-130729070157-phpapp01-thumbnail-4.jpg","type":"presentation","zeroclipboard_url":"http://static.slidesharecdn.com/ZeroClipboard.swf","facade_slide_url":"http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-1-638.jpg?1375360820","show_related_content":"1","is_audio":false,"form_is_blocking":false,"iframe_url":"http://www.slideshare.net/slideshow/embed_code/24725301","wp_code":"[slideshare id=24725301\u0026doc=12localtraditions-130729070157-phpapp01]","user_login":"TravelWorldPassport","title":"12 Local Traditions That Will Make You Go hmm.... when you travel abroad","fullscreen_bg_color":"White","ss_url":"http://www.slideshare.net/TravelWorldPassport/12-local-traditions","embed_sizes":{"presets":{"preset1":{"displaySize":{"height":30,"width":40},"size":{"height":290,"width":340}},"preset2":{"displaySize":{"height":38,"width":50},"size":{"height":355,"width":425}},"preset3":{"displaySize":{"height":45,"width":60},"size":{"height":420,"width":510}},"preset4":{"displaySize":{"height":53,"width":70},"size":{"height":485,"width":595}}},"config":{"defaultPreset":"preset2"}},"total_slides":16,"iframe_code":"\u003Ciframe src=\"{iframe_url}\" width=\"{width}\" height=\"{height}\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" style=\"border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px\" allowfullscreen webkitallowfullscreen mozallowfullscreen\u003E \u003C/iframe\u003E \u003Cdiv style=\"margin-bottom:5px\"\u003E \u003Cstrong\u003E \u003Ca href=\"http://www.slideshare.net/TravelWorldPassport/12-local-traditions\" title=\"12 Local Traditions That Will Make You Go hmm.... when you travel abroad\" target=\"_blank\"\u003E12 Local Traditions That Will Make You Go hmm.... when you travel abroad\u003C/a\u003E \u003C/strong\u003E from \u003Cstrong\u003E\u003Ca href=\"http://www.slideshare.net/TravelWorldPassport\" target=\"_blank\"\u003ETravelWorldPassport\u003C/a\u003E\u003C/strong\u003E \u003C/div\u003E","view_action_state":"unpublished","allow_embeds":true,"id":"24725301","form_after_slide_number":null,"is_author_premium":false,"user_name":"TravelWorldPassport"},"cached_template_url":"//public.slidesharecdn.com/get_cacheable_template","comments":{"slideview_template":"\u003Cli\u003E\n \u003Ca href=\"#\" title=\"Commenter Title\" class=\"notranslate commenter h-commenter j-author-photo\" rel=\"nofollow\"\u003E\n \u003Cimg class=\"nickname\" src=\"/images/user-48x48.png\" height=\"48\" alt=\"Full Name\" original=\"/images/user-48x48.png\" width=\"48\" /\u003E\n \u003Cstrong class=\"h-username j-username notranslate\"\u003EFull Name\u003C/strong\u003E\u003Cspan class=\"bioStub notranslate\"\u003E\u003Cspan class=\"h-commenter-role\"\u003E\u003C/span\u003E\u003Cspan class=\"h-commenter-org\"\u003E\u003C/span\u003E\u003C/span\u003E\n \u003C/a\u003E\n \u003Cspan class=\"commentText h-comment-text notranslate\"\u003E\n Comment goes here. \n \u003C/span\u003E\n \u003Cspan class=\"commentMeta h-comment-meta\"\u003E\n \u003Cspan class=\"commentTimestamp h-timestamp\"\u003E12 hours ago\u003C/span\u003E\n \u003Cspan class=\"commentActions h-comment-actions hide\"\u003E\n \u003Cbutton class=\"j-reply btn btn-mini\"\u003EReply\u003C/button\u003E\n \u003Cbutton class=\"action-edit btn btn-mini\"\u003EEdit\u003C/button\u003E\n \u003Cbutton class=\"action-delete btn btn-mini\"\u003EDelete\u003C/button\u003E\n \u003Cbutton class=\"action-spam btn btn-mini\"\u003ESpam\u003C/button\u003E\n \u003Cbutton class=\"action-block btn btn-mini\"\u003EBlock\u003C/button\u003E\n \u003C/span\u003E\n \u003C/span\u003E\n \u003Cdiv class=\"alertMessage blockMessage warning\" id=\"confirmDialog\"\u003E\n \u003Cspan class=\"title\"\u003EAre you sure you want to\u003C/span\u003E\n \u003Cbutton class=\"btn btn-mini\" id=\"yes\"\u003EYes\u003C/button\u003E\n \u003Cbutton class=\"btn btn-mini\" id=\"no\"\u003ENo\u003C/button\u003E\n \u003C/div\u003E\n \u003Cdiv class=\"alertMessage blockMessage warning\" id=\"messageDialog\"\u003E\n Your message goes here\n \u003C/div\u003E\n\n \u003Cspan class=\"j-loading hide\"\u003E \u003Cimg src=\"\u003C%= $slideshare_conf['static-origin-server'] %\u003Eimages/indicator.gif\" height=\"5\" alt=\"Processing\u0026hellip;\" width=\"21\" /\u003E \u003C/span\u003E\n\n \u003C/li\u003E","ajaxurl":"http://www.slideshare.net/~/slideshow/comments/24725301.json","total_count":0,"captcha_url":"http://s3.amazonaws.com/ss-captchas/","template":null},"flagging":{"flagged_value":null},"doc":"12localtraditions-130729070157-phpapp01","li_bar":{"get_url":"/li_bar"},"show_ads":{},"stripped_title":"12-local-traditions","presentationId":24725301,"default_tab":".svMoreAuthor","gam_cat_name":"travel","relative_static_origin_server":"//public.slidesharecdn.com/","asset_id":"45645","sharing_more":{"url":"http://www.slideshare.net/~/slideshow/sharing_more/24725301.html"},"preview":"no","key":false,"pvt":0,"embeds_count":7,"top_nav":{"get_url":"/top_nav"},"fb_app_name":"slideshare","facebook_app_id":2490221586,"category":{"featured":8},"show_branding":1,"useHttp":1}; var user_info = {"name":null,"su":false,"is_pro":"false","userGroup":"non-member","fb_access_token":null,"is_opengraph_user":false,"id":null,"has_uploads":null,"is_fbuser":null,"fb_userid":null,"opengraph_permissions":{},"loggedin":false,"login":"guest"} ; var upload_config = null ;
|
|
67
|
+
//--></script>
|
|
68
|
+
<script id="adQueue" type="text/javascript"><!--
|
|
69
|
+
if(!slideshare_object.delayedLIAd){ slideshare_object._adQueue = []; }
|
|
70
|
+
//--></script>
|
|
71
|
+
<script type="text/javascript">
|
|
72
|
+
//<![CDATA[
|
|
73
|
+
jQl.loadjQ("//public.slidesharecdn.com/slideview/scripts/combined_presentation_init.js?45645");
|
|
74
|
+
//]]>
|
|
75
|
+
</script>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<script type="text/javascript" id="ga-init">
|
|
79
|
+
// <![CDATA[
|
|
80
|
+
window._gaq = [];
|
|
81
|
+
window._gaq.push(['_trackEvent', 'bigfoot_slideview', 'pageload', slideshare_object.gam_cat_name, undefined, true]);
|
|
82
|
+
|
|
83
|
+
// ]]>
|
|
84
|
+
</script>
|
|
85
|
+
|
|
86
|
+
<script id="rails_environment" type="text/javascript"><!--
|
|
87
|
+
slideshare_object.deploy_environment = 'production';
|
|
88
|
+
//--></script>
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<!--[if lt IE 9]><script src="//public.slidesharecdn.com/javascripts/plugins/html5.js"></script><![endif]-->
|
|
94
|
+
|
|
95
|
+
<script type="text/javascript">
|
|
96
|
+
//<![CDATA[
|
|
97
|
+
var smtId = "ab5bb963d";
|
|
98
|
+
var smtDefaultStyles = false;
|
|
99
|
+
var smtRedirect = true;
|
|
100
|
+
var smtProt = (("https:" == document.location.protocol) ? "https://" : "http://");
|
|
101
|
+
|
|
102
|
+
var smtPreRender = function(data) {
|
|
103
|
+
for (i in data) {
|
|
104
|
+
if (data[i].code === "en-us") {
|
|
105
|
+
data[i].name = "English";
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
var smtRedirectMapper = function(locale, sites) {
|
|
111
|
+
if (/^es/i.test(locale)){ //disable redirect to spanish site
|
|
112
|
+
return null;
|
|
113
|
+
}
|
|
114
|
+
if (locale in sites) {
|
|
115
|
+
return sites[locale];
|
|
116
|
+
}
|
|
117
|
+
if (/^fr/i.test(locale)) {
|
|
118
|
+
return sites['fr-fr'] || null;
|
|
119
|
+
}
|
|
120
|
+
if (/^de/i.test(locale)) {
|
|
121
|
+
return sites['de-de'] || null;
|
|
122
|
+
}
|
|
123
|
+
return null;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
document.write(unescape("%3Cscript src='" + smtProt + "cdn01.smartling.com/ls/"+ smtId +".js' type='text/javascript'%3E%3C/script%3E"));
|
|
127
|
+
|
|
128
|
+
//]]>
|
|
129
|
+
</script>
|
|
130
|
+
|
|
131
|
+
<link rel="Shortcut Icon" href="//public.slidesharecdn.com/images/favicon.ico">
|
|
132
|
+
<link href="http://www.slideshare.net/TravelWorldPassport/12-local-traditions" rel="canonical" />
|
|
133
|
+
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss/latest">
|
|
134
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/search/opensearch.xml" title="SlideShare Search">
|
|
135
|
+
<link href="http://www.slideshare.net/api/oembed/2?format=json&url=http://www.slideshare.net/TravelWorldPassport/12-local-traditions" title="Slideshow oEmbed Profile" rel="alternate" type="application/json+oembed" />
|
|
136
|
+
<link href="http://www.slideshare.net/api/oembed/2?format=xml&url=http://www.slideshare.net/TravelWorldPassport/12-local-traditions" title="Slideshow oEmbed Profile" rel="alternate" type="text/xml+oembed" />
|
|
137
|
+
<link href="http://www.slideshare.net/mobile/TravelWorldPassport/12-local-traditions" rel="alternate" media="handheld" />
|
|
138
|
+
|
|
139
|
+
<!-- fb open graph meta tags -->
|
|
140
|
+
<meta name="fb_app_id" property="fb:app_id" class="fb_og_meta" content="2490221586" />
|
|
141
|
+
<meta name="og_type" property="og:type" class="fb_og_meta" content="slideshare:presentation" />
|
|
142
|
+
<meta name="og_url" property="og:url" class="fb_og_meta" content="http://www.slideshare.net/TravelWorldPassport/12-local-traditions" />
|
|
143
|
+
<meta name="og_image" property="og:image" class="fb_og_meta" content="http://cdn.slidesharecdn.com/ss_thumbnails/12localtraditions-130729070157-phpapp01-thumbnail-4.jpg" />
|
|
144
|
+
<!-- SL:start:notranslate -->
|
|
145
|
+
<meta name="og_title" property="og:title" class="fb_og_meta" content="12 Local Traditions That Will Make You Go hmm.... when you travel a..." />
|
|
146
|
+
<meta name="og_description" property="og:description" class="fb_og_meta" content="12 Local traditions that will make you go hmm... Things to keep in mind on your international travels, before you wander off. We've researched a couple interest" />
|
|
147
|
+
<!-- SL:end:notranslate -->
|
|
148
|
+
<meta name="slideshow_published_time" property="slideshare:published" class="fb_og_meta" content="2013-07-29T07:01:57-05:00" />
|
|
149
|
+
<meta name="slideshow_author" property="slideshare:author" class="fb_og_meta" content="http://www.slideshare.net/TravelWorldPassport" />
|
|
150
|
+
<meta name="slideshow_view_count" property="slideshare:view_count" class="fb_og_meta" content="13809" />
|
|
151
|
+
<meta name="slideshow_embed_count" property="slideshare:embed_count" class="fb_og_meta" content="7" />
|
|
152
|
+
<meta name="slideshow_comment_count" property="slideshare:comment_count" class="fb_og_meta" content="0" />
|
|
153
|
+
<meta name="slideshow_download_count" property="slideshare:download_count" class="fb_og_meta" content="7" />
|
|
154
|
+
<meta name="slideshow_created_at" property="slideshare:created_at" class="fb_og_meta" content="Mon Jul 29 07:01:57 -0500 2013" />
|
|
155
|
+
<meta name="slideshow_updated_at" property="slideshare:updated_at" class="fb_og_meta" content="Thu Aug 01 07:40:20 -0500 2013" />
|
|
156
|
+
<meta name="slideshow_featured_on" property="slideshare:featured_on" class="fb_og_meta" content="Thu Aug 01 07:40:20 -0500 2013" />
|
|
157
|
+
<meta name="slideshow_favorites_count" property="slideshare:favorites_count" class="fb_og_meta" content="7" />
|
|
158
|
+
<meta name="slideshow_category" property="slideshare:category" class="fb_og_meta" content="Travel" />
|
|
159
|
+
|
|
160
|
+
<!-- SL:start:notranslate -->
|
|
161
|
+
<meta name="twitter:card" value="player" />
|
|
162
|
+
<meta name="twitter:site" value="@slideshare" />
|
|
163
|
+
<meta name="twitter:player" class="twitter_player" value="https://www.slideshare.net/slideshow/embed_code/24725301" />
|
|
164
|
+
<meta name="twitter:player:width" value="342" />
|
|
165
|
+
<meta name="twitter:player:height" value="291" />
|
|
166
|
+
<meta name="twitter:image" class="twitter_image" value="http://cdn.slidesharecdn.com/ss_thumbnails/12localtraditions-130729070157-phpapp01-thumbnail-2.jpg" />
|
|
167
|
+
<!-- SL:end:notranslate -->
|
|
168
|
+
|
|
169
|
+
</head>
|
|
170
|
+
|
|
171
|
+
<body >
|
|
172
|
+
|
|
173
|
+
<div class="li-global-msg-container hide"></div>
|
|
174
|
+
<div class="navbar">
|
|
175
|
+
<div class="navbar-inner">
|
|
176
|
+
<div class="container">
|
|
177
|
+
<div class="logo-wrapper" itemscope itemtype="http://schema.org/Organization">
|
|
178
|
+
<a class="sprite-brand" href="/?ss" itemprop="url" title="Homepage" id="j-slideshare-logo" rel="tooltip">
|
|
179
|
+
<img itemprop="logo" src="//public.slidesharecdn.com/images/logo.png" width="185" height="38" alt="SlideShare" />
|
|
180
|
+
</a>
|
|
181
|
+
</div>
|
|
182
|
+
<form class="navbar-search pull-left" method="get" action="/search/slideshow">
|
|
183
|
+
<input type="submit" class="iconTemp-search hide-text">
|
|
184
|
+
<input name="searchfrom" type="hidden" value="header">
|
|
185
|
+
<input class="search-query" name="q" id="search_query_top" type="text" placeholder="Search…" autocomplete="off">
|
|
186
|
+
<div class="suggestionContainer"></div>
|
|
187
|
+
</form>
|
|
188
|
+
|
|
189
|
+
<ul class="nav">
|
|
190
|
+
<li>
|
|
191
|
+
<span>
|
|
192
|
+
<a href="/upload?from_source=loggedout_slideview_navbar" class="btn btn-primary h-upload-navbar" rel="nofollow">Upload</a>
|
|
193
|
+
|
|
194
|
+
</span></li>
|
|
195
|
+
<li class="dropdown" id="browse">
|
|
196
|
+
<a href="#browse" class="dropdown-toggle-caret" data-toggle="dropdown">Browse <span class="divider"> </span><b class="caret"></b></a>
|
|
197
|
+
<ul class="dropdown-menu">
|
|
198
|
+
<li>
|
|
199
|
+
<a href="/popular">Popular</a>
|
|
200
|
+
</li>
|
|
201
|
+
<li>
|
|
202
|
+
<a href="/most-downloaded">Downloaded</a>
|
|
203
|
+
</li>
|
|
204
|
+
<li>
|
|
205
|
+
<a href="/most-favorited">Liked</a>
|
|
206
|
+
</li>
|
|
207
|
+
<li>
|
|
208
|
+
<a href="/pro_accounts">Channels</a>
|
|
209
|
+
</li>
|
|
210
|
+
<li>
|
|
211
|
+
<a href="/popular/media/videos">Videos</a>
|
|
212
|
+
</li>
|
|
213
|
+
<li>
|
|
214
|
+
<a href="/featured">Featured</a>
|
|
215
|
+
</li>
|
|
216
|
+
</ul>
|
|
217
|
+
</li>
|
|
218
|
+
</ul>
|
|
219
|
+
<div class="pull-right" id="topNavLinks-11">
|
|
220
|
+
<ul class="nav pull-right" id="login_link">
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<li>
|
|
224
|
+
<a href="/business/premium/plans?cmp_src=general&cmp_src_from=main_nav" title="Upgrade to SlideShare PRO" class="goPro j-tooltip" onclick="window._gaq = _gaq || []; _gaq.push(['_trackEvent', 'top_nav','topnav','business-index']);">
|
|
225
|
+
Go <span class="goProLabel">Pro</span>
|
|
226
|
+
</a>
|
|
227
|
+
</li>
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<li>
|
|
234
|
+
<a href="https://www.slideshare.net/login" class="void_fancybox void_redirect_link">Login</a>
|
|
235
|
+
</li>
|
|
236
|
+
<li>
|
|
237
|
+
<a href="https://www.slideshare.net/signup" class="void_fancybox void_redirect_link" title="Signup now for a SlideShare account">Signup</a>
|
|
238
|
+
</li>
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
</ul>
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
</div>
|
|
250
|
+
</div>
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<div id="fb-root"></div>
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
<section>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
<div class="sectionElements container">
|
|
265
|
+
<div class="banner h-top-ad">
|
|
266
|
+
<div class="leaderboard1" id="leaderboardAd" style="height:36px"><script type="text/javascript"> slideshare_object._adQueue.push({ tile : 1, zone : 'slideview', dart_code: '%3Bkw%3DRecreation%3Bkw%3DAsia%3Bkw%3DTibet%3Bkw%3DIndonesia%3Bkw%3DTravel%3Bkw%3DThailand%3Bkw%3DSweden%3Bkw%3DCompfight%3Bcat%3Dtravel%3Bcat%3Dtravel%3Bcat%3Dentertainment', width: 1, height: 1, appendTo: 'leaderboardAd'}); </script></div>
|
|
267
|
+
|
|
268
|
+
</div>
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
<div id="h-modal-flash"></div>
|
|
272
|
+
<div class="playerWrapper" style="width: 728px;">
|
|
273
|
+
<div class="actions">
|
|
274
|
+
<ul class="ssActions h-tools">
|
|
275
|
+
<li class="action-share public-only"><a href="#" title="Email this presentation to your contacts" class="sprite iconEmail j-tooltip" rel="nofollow">Email</a></li>
|
|
276
|
+
<li class="action-addfav public-only" ><a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" title="Like this" class="sprite iconFav j-tooltip" rel="nofollow">Like</a></li>
|
|
277
|
+
|
|
278
|
+
<li class="action-fav public-only" style="display:none">
|
|
279
|
+
<a href="#" class="sprite removeFav delete iconFavOn j-tooltip" title="You have liked this" rel="nofollow">Liked <strong>×</strong></a>
|
|
280
|
+
<span class="j-favPulse fav-pulse"></span>
|
|
281
|
+
</li>
|
|
282
|
+
|
|
283
|
+
<li class="action-download" style=""><a href="/signup?from=download&from_source=%2Fsavedfiles%3Fs_title%3D12-local-traditions%26user_login%3DTravelWorldPassport&download_id=24725301-b3434bc893e12f93917c6aa998ce3a0798b4a7ba-slideshow" title="Save this presentation" class="sprite iconDownload j-tooltip" rel="nofollow">Save</a></li>
|
|
284
|
+
|
|
285
|
+
<li class="hide h-private-notice last"><span class="iconPrivate" title="Private Content">Private Content</span></li>
|
|
286
|
+
<li class="action-embed h-action-embed"><a href="#" title="Embed this presentation" class="sprite iconEmbed j-tooltip" rel="nofollow">Embed</a></li>
|
|
287
|
+
<li class="expandedOverlay action-embed-code embedPanel h-embed-allow" style="display:none">Loading embed code…</li>
|
|
288
|
+
<li class="expandedOverlay action-addfav-new public-only" style="display:none">
|
|
289
|
+
<a class="close cancel">×</a>
|
|
290
|
+
<i class="linkedin-picture"></i>
|
|
291
|
+
<p class="linkedin-shared">This activity has also been shared with your LinkedIn network</p>
|
|
292
|
+
<span rel="tooltip" data-original-title="You can undo LinkedIn share from the activity feed on your LinkedIn profile."><a class="iconTemp-question-sign" href="#"></a></span> <a class="muted text-info" href="http://www.linkedin.com" target="_blank">Undo LinkedIn share</a> <a href="#" class="fav-settings"><i class="iconTemp-cog"></i>Settings</a>
|
|
293
|
+
</li>
|
|
294
|
+
|
|
295
|
+
<li class="expandedOverlay action-unverified-download public-only" style="display:none">
|
|
296
|
+
<p>
|
|
297
|
+
We have emailed the verification/download link to <strong>"<span class="user-email"></span>"</strong>.
|
|
298
|
+
<br/>
|
|
299
|
+
Login to your email and click the link to download the file directly.
|
|
300
|
+
</p>
|
|
301
|
+
<form class='changeEmail change-unverified-email'>
|
|
302
|
+
<fieldset>
|
|
303
|
+
<legend>To request the link at a different email address, update it here.</legend>
|
|
304
|
+
<input name="unverified-email" class="text unverified-email" value="" />
|
|
305
|
+
<input type='submit' class="submit btn" value="Update" />
|
|
306
|
+
<a class="ilink cancel" href="#" rel="nofollow">Close</a><br/>
|
|
307
|
+
<span class='change-unverified-email-validate' style='display:none'>Validation messages.</span>
|
|
308
|
+
<span class='change-unverified-email-win' style='display:none;color:#0A0'>Success message.</span>
|
|
309
|
+
<span class='change-unverified-email-fail' style='display:none;color:#A00'>Fail message.</span>
|
|
310
|
+
</fieldset>
|
|
311
|
+
</form>
|
|
312
|
+
<p style="margin:0"><span class="hint">Check your bulk/spam folders if you can't find our mail.</span></p>
|
|
313
|
+
</li>
|
|
314
|
+
|
|
315
|
+
<li class="expandedOverlay action-leads-contact" style="display:none">
|
|
316
|
+
|
|
317
|
+
</li>
|
|
318
|
+
<li class="expandedOverlay j-menu-loading" style="display:none">
|
|
319
|
+
<div class="svLightBox"><span class="h-loading">Loading <img alt="Loading…" src="//public.slidesharecdn.com/images/indicator.gif" height="5" width="21" style="margin:0;float:none;vertical-align:middle" /></span>
|
|
320
|
+
</div>
|
|
321
|
+
</li>
|
|
322
|
+
</ul>
|
|
323
|
+
|
|
324
|
+
</div>
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
<div class="h-js-player"><!-- For slideview page , combined js for player is now combined with slideview javascripts for logged out users-->
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
<div class="player lightPlayer fluidImage presentation_player" id="svPlayerId">
|
|
333
|
+
<div class="stage">
|
|
334
|
+
<a class="exit-fullscreen j-exit-fullscreen"></a>
|
|
335
|
+
<div class="slide_container">
|
|
336
|
+
|
|
337
|
+
<div data-index="1" class="slide show">
|
|
338
|
+
<img class="slide_image" src="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-1-638.jpg?1375360820" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-1-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-1-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-1-320.jpg?1375360820" />
|
|
339
|
+
</div>
|
|
340
|
+
|
|
341
|
+
<div data-index="2" class="slide">
|
|
342
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-2-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-2-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-2-320.jpg?1375360820" />
|
|
343
|
+
</div>
|
|
344
|
+
|
|
345
|
+
<div data-index="3" class="slide">
|
|
346
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-3-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-3-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-3-320.jpg?1375360820" />
|
|
347
|
+
</div>
|
|
348
|
+
|
|
349
|
+
<div data-index="4" class="slide">
|
|
350
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-4-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-4-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-4-320.jpg?1375360820" />
|
|
351
|
+
</div>
|
|
352
|
+
|
|
353
|
+
<div data-index="5" class="slide">
|
|
354
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-5-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-5-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-5-320.jpg?1375360820" />
|
|
355
|
+
</div>
|
|
356
|
+
|
|
357
|
+
<div data-index="6" class="slide">
|
|
358
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-6-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-6-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-6-320.jpg?1375360820" />
|
|
359
|
+
</div>
|
|
360
|
+
|
|
361
|
+
<div data-index="7" class="slide">
|
|
362
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-7-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-7-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-7-320.jpg?1375360820" />
|
|
363
|
+
</div>
|
|
364
|
+
|
|
365
|
+
<div data-index="8" class="slide">
|
|
366
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-8-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-8-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-8-320.jpg?1375360820" />
|
|
367
|
+
</div>
|
|
368
|
+
|
|
369
|
+
<div data-index="9" class="slide">
|
|
370
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-9-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-9-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-9-320.jpg?1375360820" />
|
|
371
|
+
</div>
|
|
372
|
+
|
|
373
|
+
<div data-index="10" class="slide">
|
|
374
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-10-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-10-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-10-320.jpg?1375360820" />
|
|
375
|
+
</div>
|
|
376
|
+
|
|
377
|
+
<div data-index="11" class="slide">
|
|
378
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-11-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-11-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-11-320.jpg?1375360820" />
|
|
379
|
+
</div>
|
|
380
|
+
|
|
381
|
+
<div data-index="12" class="slide">
|
|
382
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-12-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-12-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-12-320.jpg?1375360820" />
|
|
383
|
+
</div>
|
|
384
|
+
|
|
385
|
+
<div data-index="13" class="slide">
|
|
386
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-13-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-13-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-13-320.jpg?1375360820" />
|
|
387
|
+
</div>
|
|
388
|
+
|
|
389
|
+
<div data-index="14" class="slide">
|
|
390
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-14-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-14-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-14-320.jpg?1375360820" />
|
|
391
|
+
</div>
|
|
392
|
+
|
|
393
|
+
<div data-index="15" class="slide">
|
|
394
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-15-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-15-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-15-320.jpg?1375360820" />
|
|
395
|
+
</div>
|
|
396
|
+
|
|
397
|
+
<div data-index="16" class="slide">
|
|
398
|
+
<img class="slide_image" src="" data-normal="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-16-638.jpg?1375360820" data-full="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/95/slide-16-1024.jpg?1375360820" data-small="http://image.slidesharecdn.com/12localtraditions-130729070157-phpapp01/85/slide-16-320.jpg?1375360820" />
|
|
399
|
+
</div>
|
|
400
|
+
|
|
401
|
+
</div>
|
|
402
|
+
</div> <!-- end stage -->
|
|
403
|
+
<div class="toolbar_wrapper">
|
|
404
|
+
<div class="toolbar normal">
|
|
405
|
+
<!--[if IE 7]>
|
|
406
|
+
<style>
|
|
407
|
+
.toolbar .navActions { position: relative; top: -28px; }
|
|
408
|
+
div.toolbar .nav {margin-left : 37%; }
|
|
409
|
+
</style>
|
|
410
|
+
<![endif]-->
|
|
411
|
+
<a href="#" class="sprite btnViewOnSS" title="View on SlideShare"> </a><!-- view on SS -->
|
|
412
|
+
<div class="nav">
|
|
413
|
+
<a href="#btnFirst" class="btnFirst" title="First Slide" rel="nofollow">«</a>
|
|
414
|
+
<a href="#btnPrevious" class="btnPrevious" title="Previous Slide" rel="nofollow">‹</a>
|
|
415
|
+
<a href="#btnNext" class="btnNext" title="Next Slide" rel="nofollow">›</a>
|
|
416
|
+
<a href="#btnLast" class="btnLast" title="Last Slide" rel="nofollow">»</a>
|
|
417
|
+
</div>
|
|
418
|
+
<div class="navActions">
|
|
419
|
+
<a href="#" class="btnFullScreen" title="View Fullscreen" rel="nofollow"> </a>
|
|
420
|
+
<a href="#" class="btnLeaveFullScreen" title="Exit Fullscreen" rel="nofollow"> </a>
|
|
421
|
+
<label class="goToSlideLabel"><input type="text" name="goToSlide" value="1" /><span>/16</span></label>
|
|
422
|
+
|
|
423
|
+
</div>
|
|
424
|
+
|
|
425
|
+
</div>
|
|
426
|
+
</div>
|
|
427
|
+
<div class="image_maps"></div>
|
|
428
|
+
</div>
|
|
429
|
+
|
|
430
|
+
<script type="text/javascript">
|
|
431
|
+
|
|
432
|
+
$(document).ready(function() {
|
|
433
|
+
var ele = $('#svPlayerId');
|
|
434
|
+
|
|
435
|
+
player = new SSPlayer(slideshare_object.jsplayer);
|
|
436
|
+
$(player).bind('slidechanged', function(e){
|
|
437
|
+
if(typeof(loadDataForSlide) === 'function'){
|
|
438
|
+
loadDataForSlide(e.ssData.index);
|
|
439
|
+
}
|
|
440
|
+
});
|
|
441
|
+
|
|
442
|
+
/* Infographics experiment */
|
|
443
|
+
|
|
444
|
+
setupInfographicPlayer = function() {
|
|
445
|
+
// Add proper class to the player
|
|
446
|
+
$(".player").addClass("infographic_player");
|
|
447
|
+
|
|
448
|
+
var $toolBar = $(".toolbar_wrapper");
|
|
449
|
+
var $topToolBar = $(".playerWrapper .actions");
|
|
450
|
+
var $toolBarClone = $toolBar.clone(true);
|
|
451
|
+
|
|
452
|
+
// Tweak bottom toolbar
|
|
453
|
+
$toolBar.children(".toolbar").empty().height(10).css({
|
|
454
|
+
"border-radius" : "0 0 3px 3px",
|
|
455
|
+
"border-bottom" : "none"
|
|
456
|
+
});
|
|
457
|
+
|
|
458
|
+
// Tweak new toolbar
|
|
459
|
+
$toolBarClone.find(".toolbar").css({
|
|
460
|
+
"background" : "none",
|
|
461
|
+
"border-top" : "none"
|
|
462
|
+
});
|
|
463
|
+
$toolBarClone.find(".nav").remove();
|
|
464
|
+
$toolBarClone.find(".goToSlideLabel").remove();
|
|
465
|
+
|
|
466
|
+
// Tweak top toolbar
|
|
467
|
+
$topToolBar.height(34);
|
|
468
|
+
$topToolBar.children(".ssActions").css({
|
|
469
|
+
"float" : "left",
|
|
470
|
+
"margin-top" : "8px"
|
|
471
|
+
});
|
|
472
|
+
|
|
473
|
+
// Add new toolbar
|
|
474
|
+
$topToolBar.append($toolBarClone);
|
|
475
|
+
|
|
476
|
+
// Add exit fullscreen button, show it on mousemove, hide it after 2 seconds
|
|
477
|
+
var exitFullscreenOverlay = $("<div><div></div></div>").addClass("exit_fullscreen_overlay").appendTo($(".stage"));
|
|
478
|
+
|
|
479
|
+
exitFullscreenOverlay.on("click", function() {
|
|
480
|
+
$(".btnLeaveFullScreen").trigger("click");
|
|
481
|
+
});
|
|
482
|
+
|
|
483
|
+
var countdown;
|
|
484
|
+
var startCountDown = function() {
|
|
485
|
+
countdown = setTimeout(function() {
|
|
486
|
+
exitFullscreenOverlay.removeClass("show");
|
|
487
|
+
}, 2000);
|
|
488
|
+
}
|
|
489
|
+
$(".player").mousemove(function() {
|
|
490
|
+
exitFullscreenOverlay.addClass("show");
|
|
491
|
+
clearTimeout(countdown);
|
|
492
|
+
startCountDown();
|
|
493
|
+
})
|
|
494
|
+
|
|
495
|
+
// Set max height to prevent zooming from growing the player viewport
|
|
496
|
+
$(window).load(function() {
|
|
497
|
+
$(".stage").css({
|
|
498
|
+
"max-height" : $(".slide").first().height() + "px"
|
|
499
|
+
});
|
|
500
|
+
});
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
if (false && player.config.show_image_player && player.config.player_type === "document" && slideshare_object.totalSlides === 1) {
|
|
504
|
+
setupInfographicPlayer();
|
|
505
|
+
}
|
|
506
|
+
});
|
|
507
|
+
</script>
|
|
508
|
+
|
|
509
|
+
</div>
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
</div>
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
<aside class="h-related-more-tab j-related-more-tab" >
|
|
521
|
+
<div class="mediumRectangleAd h-medium-rectangle-ad" style="margin:0 0 10px">
|
|
522
|
+
<div class="h-top-right-div j-top-right-div" id="topRightAd"><script type="text/javascript"> slideshare_object._adQueue.push({ tile : 5, zone : 'slideview', dart_code: '%3Bkw%3DRecreation%3Bkw%3DAsia%3Bkw%3DTibet%3Bkw%3DIndonesia%3Bkw%3DTravel%3Bkw%3DThailand%3Bkw%3DSweden%3Bkw%3DCompfight%3Bcat%3Dtravel%3Bcat%3Dtravel%3Bcat%3Dentertainment', width: 300, height: 250, appendTo: 'topRightAd'}); </script></div>
|
|
523
|
+
|
|
524
|
+
</div>
|
|
525
|
+
|
|
526
|
+
<ul class="tabs">
|
|
527
|
+
<li class="active j-related-slideshows h-related-tab"><a href="#">Related</a></li>
|
|
528
|
+
<li class="h-more-tab j-more-slideshows"><a href="#" data-original-title="More by TravelWorldPassport" class="j-tooltip" rel="nofollow">More</a></li>
|
|
529
|
+
</ul>
|
|
530
|
+
|
|
531
|
+
<ul class="notranslate relatedContent thumbnailGrid h-related-slideshows j-tab-content activeContent" id="relatedList">
|
|
532
|
+
<li>
|
|
533
|
+
<a href="/TravelWorldPassport/movie-inspired-travel-destinations" title="Movie Inspired Travel Destinations">
|
|
534
|
+
<span class="thumbWrapper">
|
|
535
|
+
<span>
|
|
536
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Movie Inspired Travel Destinations" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/movieinspiredtraveldestinations-130730234928-phpapp02-thumbnail-2.jpg?1375320724" />
|
|
537
|
+
</span>
|
|
538
|
+
</span>
|
|
539
|
+
<span class="h-related-title">Movie Inspired Travel Destinations</span>
|
|
540
|
+
<span class="h-related-views view-count">1284 views</span>
|
|
541
|
+
</a>
|
|
542
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24788592" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
543
|
+
<a href="javascript:void();" data-ssid="24788592" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
544
|
+
</li>
|
|
545
|
+
|
|
546
|
+
<li>
|
|
547
|
+
<a href="/JeremyWiz/wisniewski-jeremy-ignite-presentationpay-me" title="Wisniewski jeremy ignite presentation_pay me">
|
|
548
|
+
<span class="thumbWrapper">
|
|
549
|
+
<span>
|
|
550
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Wisniewski jeremy ignite presentation_pay me" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/wisniewskijeremyignitepresentationpayme-130518192600-phpapp02-thumbnail-2.jpg?1368923258" />
|
|
551
|
+
</span>
|
|
552
|
+
</span>
|
|
553
|
+
<span class="h-related-title">Wisniewski jeremy ignite presentation_pay me</span>
|
|
554
|
+
<span class="h-related-views view-count">188 views</span>
|
|
555
|
+
</a>
|
|
556
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="21421426" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
557
|
+
<a href="javascript:void();" data-ssid="21421426" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
558
|
+
</li>
|
|
559
|
+
|
|
560
|
+
<li>
|
|
561
|
+
<a href="/TravelWorldPassport/how-to-use-travel-world-passport" title="How to use travel world passport">
|
|
562
|
+
<span class="thumbWrapper">
|
|
563
|
+
<span>
|
|
564
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="How to use travel world passport" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/howtousetravelworldpassport-130716101727-phpapp02-thumbnail-2.jpg?1374079508" />
|
|
565
|
+
</span>
|
|
566
|
+
</span>
|
|
567
|
+
<span class="h-related-title">How to use travel world passport</span>
|
|
568
|
+
<span class="h-related-views view-count">517 views</span>
|
|
569
|
+
</a>
|
|
570
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24299950" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
571
|
+
<a href="javascript:void();" data-ssid="24299950" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
572
|
+
</li>
|
|
573
|
+
|
|
574
|
+
<li>
|
|
575
|
+
<a href="/TravelWorldPassport/12-memorable-quotes-for-travellers-24523876" title="12 memorable quotes for travellers">
|
|
576
|
+
<span class="thumbWrapper">
|
|
577
|
+
<span>
|
|
578
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="12 memorable quotes for travellers" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/12memorablequotesfortravellers-130723000223-phpapp02-thumbnail-2.jpg?1374556006" />
|
|
579
|
+
</span>
|
|
580
|
+
</span>
|
|
581
|
+
<span class="h-related-title">12 memorable quotes for travellers</span>
|
|
582
|
+
<span class="h-related-views view-count">1009 views</span>
|
|
583
|
+
</a>
|
|
584
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24523876" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
585
|
+
<a href="javascript:void();" data-ssid="24523876" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
586
|
+
</li>
|
|
587
|
+
|
|
588
|
+
<li>
|
|
589
|
+
<a href="/quintonstoneking/q-stoneking-d41" title="Q stoneking d4-1">
|
|
590
|
+
<span class="thumbWrapper">
|
|
591
|
+
<span>
|
|
592
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Q stoneking d4-1" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/qstonekingd4-1-130721202458-phpapp01-thumbnail-2.jpg?1374456385" />
|
|
593
|
+
</span>
|
|
594
|
+
</span>
|
|
595
|
+
<span class="h-related-title">Q stoneking d4-1</span>
|
|
596
|
+
<span class="h-related-views view-count">138 views</span>
|
|
597
|
+
</a>
|
|
598
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480378" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
599
|
+
<a href="javascript:void();" data-ssid="24480378" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
600
|
+
</li>
|
|
601
|
+
|
|
602
|
+
<li>
|
|
603
|
+
<a href="/BlairSmith87/b-smith-ignitepresentationslideshow-pdf" title="B smith ignite_presentation_slideshow pdf">
|
|
604
|
+
<span class="thumbWrapper">
|
|
605
|
+
<span>
|
|
606
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="B smith ignite_presentation_slideshow pdf" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/bsmithignitepresentationslideshowpdf-130421214618-phpapp01-thumbnail-2.jpg?1366598856" />
|
|
607
|
+
</span>
|
|
608
|
+
</span>
|
|
609
|
+
<span class="h-related-title">B smith ignite_presentation_slideshow pdf</span>
|
|
610
|
+
<span class="h-related-views view-count">142 views</span>
|
|
611
|
+
</a>
|
|
612
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="19480685" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
613
|
+
<a href="javascript:void();" data-ssid="19480685" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
614
|
+
</li>
|
|
615
|
+
|
|
616
|
+
<li>
|
|
617
|
+
<a href="/charles898/ignite-presentation-24479370" title="Ignite presentation">
|
|
618
|
+
<span class="thumbWrapper">
|
|
619
|
+
<span>
|
|
620
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Ignite presentation" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/ignitepresentation-130721191550-phpapp01-thumbnail-2.jpg?1374452167" />
|
|
621
|
+
</span>
|
|
622
|
+
</span>
|
|
623
|
+
<span class="h-related-title">Ignite presentation</span>
|
|
624
|
+
<span class="h-related-views view-count">91 views</span>
|
|
625
|
+
</a>
|
|
626
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24479370" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
627
|
+
<a href="javascript:void();" data-ssid="24479370" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
628
|
+
</li>
|
|
629
|
+
|
|
630
|
+
<li>
|
|
631
|
+
<a href="/sheilabraye/ignite-slideshow-pdf" title="Ignite slideshow pdf">
|
|
632
|
+
<span class="thumbWrapper">
|
|
633
|
+
<span>
|
|
634
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Ignite slideshow pdf" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/igniteslideshowpdf-130721201352-phpapp01-thumbnail-2.jpg?1374455700" />
|
|
635
|
+
</span>
|
|
636
|
+
</span>
|
|
637
|
+
<span class="h-related-title">Ignite slideshow pdf</span>
|
|
638
|
+
<span class="h-related-views view-count">74 views</span>
|
|
639
|
+
</a>
|
|
640
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480208" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
641
|
+
<a href="javascript:void();" data-ssid="24480208" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
642
|
+
</li>
|
|
643
|
+
|
|
644
|
+
<li>
|
|
645
|
+
<a href="/bethanyrosecubbage/bethany-cubbage-ignite-slideshow" title="Bethany Cubbage ignite slideshow">
|
|
646
|
+
<span class="thumbWrapper">
|
|
647
|
+
<span>
|
|
648
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Bethany Cubbage ignite slideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/cubbagebethanyslideshow-130719233218-phpapp02-thumbnail-2.jpg?1374294758" />
|
|
649
|
+
</span>
|
|
650
|
+
</span>
|
|
651
|
+
<span class="h-related-title">Bethany Cubbage ignite slideshow</span>
|
|
652
|
+
<span class="h-related-views view-count">62 views</span>
|
|
653
|
+
</a>
|
|
654
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24442865" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
655
|
+
<a href="javascript:void();" data-ssid="24442865" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
656
|
+
</li>
|
|
657
|
+
|
|
658
|
+
<li>
|
|
659
|
+
<a href="/chrisdimarzio/di-marziochris-igniteslideshow" title="Di marziochris igniteslideshow">
|
|
660
|
+
<span class="thumbWrapper">
|
|
661
|
+
<span>
|
|
662
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Di marziochris igniteslideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/dimarziochrisigniteslideshow-130721202543-phpapp01-thumbnail-2.jpg?1374456431" />
|
|
663
|
+
</span>
|
|
664
|
+
</span>
|
|
665
|
+
<span class="h-related-title">Di marziochris igniteslideshow</span>
|
|
666
|
+
<span class="h-related-views view-count">89 views</span>
|
|
667
|
+
</a>
|
|
668
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480389" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
669
|
+
<a href="javascript:void();" data-ssid="24480389" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
670
|
+
</li>
|
|
671
|
+
|
|
672
|
+
<li>
|
|
673
|
+
<a href="/gairymuir/g-muir-a4virtualresume-16221677" title="G muir a4virtualresume">
|
|
674
|
+
<span class="thumbWrapper">
|
|
675
|
+
<span>
|
|
676
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="G muir a4virtualresume" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/gmuira4virtualresume-130128112544-phpapp01-thumbnail-2.jpg?1359394101" />
|
|
677
|
+
</span>
|
|
678
|
+
</span>
|
|
679
|
+
<span class="h-related-title">G muir a4virtualresume</span>
|
|
680
|
+
<span class="h-related-views view-count">41 views</span>
|
|
681
|
+
</a>
|
|
682
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16221677" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
683
|
+
<a href="javascript:void();" data-ssid="16221677" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
684
|
+
</li>
|
|
685
|
+
|
|
686
|
+
<li>
|
|
687
|
+
<a href="/jennifergammon50/ignitepresentation-23246258" title="Ignitepresentation">
|
|
688
|
+
<span class="thumbWrapper">
|
|
689
|
+
<span>
|
|
690
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Ignitepresentation" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/ignitepresentation-130620095039-phpapp01-thumbnail-2.jpg?1371739896" />
|
|
691
|
+
</span>
|
|
692
|
+
</span>
|
|
693
|
+
<span class="h-related-title">Ignitepresentation</span>
|
|
694
|
+
<span class="h-related-views view-count">21 views</span>
|
|
695
|
+
</a>
|
|
696
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="23246258" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
697
|
+
<a href="javascript:void();" data-ssid="23246258" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
698
|
+
</li>
|
|
699
|
+
|
|
700
|
+
<li>
|
|
701
|
+
<a href="/klhelm/kody-helmigniteslideshow" title="Kody helmigniteslideshow">
|
|
702
|
+
<span class="thumbWrapper">
|
|
703
|
+
<span>
|
|
704
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Kody helmigniteslideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/kodyhelmigniteslideshow-130721164552-phpapp02-thumbnail-2.jpg?1374443240" />
|
|
705
|
+
</span>
|
|
706
|
+
</span>
|
|
707
|
+
<span class="h-related-title">Kody helmigniteslideshow</span>
|
|
708
|
+
<span class="h-related-views view-count">85 views</span>
|
|
709
|
+
</a>
|
|
710
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24477533" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
711
|
+
<a href="javascript:void();" data-ssid="24477533" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
712
|
+
</li>
|
|
713
|
+
|
|
714
|
+
<li>
|
|
715
|
+
<a href="/RyanNaone/eat-more-veggies-to-heal-yourself-and-the-world" title="Eat more veggies to heal yourself and the world">
|
|
716
|
+
<span class="thumbWrapper">
|
|
717
|
+
<span>
|
|
718
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Eat more veggies to heal yourself and the world" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/eatmoreveggiestohealyourselfandtheworld-130721220030-phpapp02-thumbnail-2.jpg?1374462094" />
|
|
719
|
+
</span>
|
|
720
|
+
</span>
|
|
721
|
+
<span class="h-related-title">Eat more veggies to heal yourself and the world</span>
|
|
722
|
+
<span class="h-related-views view-count">14 views</span>
|
|
723
|
+
</a>
|
|
724
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24481801" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
725
|
+
<a href="javascript:void();" data-ssid="24481801" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
726
|
+
</li>
|
|
727
|
+
|
|
728
|
+
<li>
|
|
729
|
+
<a href="/tiffanyterichellgatling/tiffany-gatling-ignite-presentationslideshow" title="Tiffany gatling ignite presentationslideshow">
|
|
730
|
+
<span class="thumbWrapper">
|
|
731
|
+
<span>
|
|
732
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Tiffany gatling ignite presentationslideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/tiffanygatlingignitepresentationslideshow-130721182400-phpapp01-thumbnail-2.jpg?1374449088" />
|
|
733
|
+
</span>
|
|
734
|
+
</span>
|
|
735
|
+
<span class="h-related-title">Tiffany gatling ignite presentationslideshow</span>
|
|
736
|
+
<span class="h-related-views view-count">72 views</span>
|
|
737
|
+
</a>
|
|
738
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24478652" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
739
|
+
<a href="javascript:void();" data-ssid="24478652" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
740
|
+
</li>
|
|
741
|
+
|
|
742
|
+
<li>
|
|
743
|
+
<a href="/Raelyce/multitasking-a-struggle-to-juggle-17285841" title="Multitasking A Struggle to Juggle">
|
|
744
|
+
<span class="thumbWrapper">
|
|
745
|
+
<span>
|
|
746
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Multitasking A Struggle to Juggle" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/multitaskingastruggletojuggle-130317115549-phpapp01-thumbnail-2.jpg?1363539803" />
|
|
747
|
+
</span>
|
|
748
|
+
</span>
|
|
749
|
+
<span class="h-related-title">Multitasking A Struggle to Juggle</span>
|
|
750
|
+
<span class="h-related-views view-count">63 views</span>
|
|
751
|
+
</a>
|
|
752
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="17285841" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
753
|
+
<a href="javascript:void();" data-ssid="17285841" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
754
|
+
</li>
|
|
755
|
+
|
|
756
|
+
<li>
|
|
757
|
+
<a href="/EmmaWatts/pd-tod-2013-web-version-16266729" title="PD TOD 2013 web version">
|
|
758
|
+
<span class="thumbWrapper">
|
|
759
|
+
<span>
|
|
760
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="PD TOD 2013 web version" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/pdtod2013webversion-130130214029-phpapp01-thumbnail-2.jpg?1359603749" />
|
|
761
|
+
</span>
|
|
762
|
+
</span>
|
|
763
|
+
<span class="h-related-title">PD TOD 2013 web version</span>
|
|
764
|
+
<span class="h-related-views view-count">184 views</span>
|
|
765
|
+
</a>
|
|
766
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16266729" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
767
|
+
<a href="javascript:void();" data-ssid="16266729" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
768
|
+
</li>
|
|
769
|
+
|
|
770
|
+
<li>
|
|
771
|
+
<a href="/bigidy/ben-burroughs-pcpignite" title="Ben burroughs pcp_ignite">
|
|
772
|
+
<span class="thumbWrapper">
|
|
773
|
+
<span>
|
|
774
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Ben burroughs pcp_ignite" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/benburroughspcpignite-130317231737-phpapp02-thumbnail-2.jpg?1363580340" />
|
|
775
|
+
</span>
|
|
776
|
+
</span>
|
|
777
|
+
<span class="h-related-title">Ben burroughs pcp_ignite</span>
|
|
778
|
+
<span class="h-related-views view-count">108 views</span>
|
|
779
|
+
</a>
|
|
780
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="17302315" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
781
|
+
<a href="javascript:void();" data-ssid="17302315" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
782
|
+
</li>
|
|
783
|
+
|
|
784
|
+
<li>
|
|
785
|
+
<a href="/jrsdean10/dean-jennifer-pcpignite-slideshow" title="Dean jennifer pcp_ignite slideshow">
|
|
786
|
+
<span class="thumbWrapper">
|
|
787
|
+
<span>
|
|
788
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Dean jennifer pcp_ignite slideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/deanjenniferpcpigniteslideshow-130317204330-phpapp01-thumbnail-2.jpg?1363739148" />
|
|
789
|
+
</span>
|
|
790
|
+
</span>
|
|
791
|
+
<span class="h-related-title">Dean jennifer pcp_ignite slideshow</span>
|
|
792
|
+
<span class="h-related-views view-count">25 views</span>
|
|
793
|
+
</a>
|
|
794
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="17298167" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
795
|
+
<a href="javascript:void();" data-ssid="17298167" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
796
|
+
</li>
|
|
797
|
+
|
|
798
|
+
<li>
|
|
799
|
+
<a href="/rgrahamiam/graham-robert-pcpwk4igniteslideshow" title="Graham robert pcp_wk4_ignite_slideshow">
|
|
800
|
+
<span class="thumbWrapper">
|
|
801
|
+
<span>
|
|
802
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Graham robert pcp_wk4_ignite_slideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/grahamrobertpcpwk4igniteslideshow-130616191644-phpapp01-thumbnail-2.jpg?1371428278" />
|
|
803
|
+
</span>
|
|
804
|
+
</span>
|
|
805
|
+
<span class="h-related-title">Graham robert pcp_wk4_ignite_slideshow</span>
|
|
806
|
+
<span class="h-related-views view-count">79 views</span>
|
|
807
|
+
</a>
|
|
808
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="23078605" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
809
|
+
<a href="javascript:void();" data-ssid="23078605" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
810
|
+
</li>
|
|
811
|
+
|
|
812
|
+
<li>
|
|
813
|
+
<a href="/jrgregory7/dont-let-your-job-control-you-24482283" title="Don't Let Your Job Control You!">
|
|
814
|
+
<span class="thumbWrapper">
|
|
815
|
+
<span>
|
|
816
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Don't Let Your Job Control You!" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/igniteslidepresentation-130721223118-phpapp01-thumbnail-2.jpg?1374463959" />
|
|
817
|
+
</span>
|
|
818
|
+
</span>
|
|
819
|
+
<span class="h-related-title">Don't Let Your Job Control You!</span>
|
|
820
|
+
<span class="h-related-views view-count">115 views</span>
|
|
821
|
+
</a>
|
|
822
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24482283" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
823
|
+
<a href="javascript:void();" data-ssid="24482283" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
824
|
+
</li>
|
|
825
|
+
|
|
826
|
+
<li>
|
|
827
|
+
<a href="/defsouljer7/keenanmatthewsdiscussion" title="discussion4(ignitepresentation)">
|
|
828
|
+
<span class="thumbWrapper">
|
|
829
|
+
<span>
|
|
830
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="discussion4(ignitepresentation)" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/keenanmatthewsdiscussion-130616192925-phpapp02-thumbnail-2.jpg?1371429148" />
|
|
831
|
+
</span>
|
|
832
|
+
</span>
|
|
833
|
+
<span class="h-related-title">discussion4(ignitepresentation)</span>
|
|
834
|
+
<span class="h-related-views view-count">162 views</span>
|
|
835
|
+
</a>
|
|
836
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="23078972" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
837
|
+
<a href="javascript:void();" data-ssid="23078972" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
838
|
+
</li>
|
|
839
|
+
|
|
840
|
+
<li>
|
|
841
|
+
<a href="/crystalmathis/mathis-crystal-igniteslideshow1" title="Mathis crystal ignite_slideshow1">
|
|
842
|
+
<span class="thumbWrapper">
|
|
843
|
+
<span>
|
|
844
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Mathis crystal ignite_slideshow1" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/mathiscrystaligniteslideshow1-130721214238-phpapp02-thumbnail-2.jpg?1374639157" />
|
|
845
|
+
</span>
|
|
846
|
+
</span>
|
|
847
|
+
<span class="h-related-title">Mathis crystal ignite_slideshow1</span>
|
|
848
|
+
<span class="h-related-views view-count">50 views</span>
|
|
849
|
+
</a>
|
|
850
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24481492" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
851
|
+
<a href="javascript:void();" data-ssid="24481492" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
852
|
+
</li>
|
|
853
|
+
|
|
854
|
+
<li>
|
|
855
|
+
<a href="/PrestinApsley/ignite-presentation-slide-share" title="Prestin Apsley Ignite Slideshow">
|
|
856
|
+
<span class="thumbWrapper">
|
|
857
|
+
<span>
|
|
858
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Prestin Apsley Ignite Slideshow" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/ignitepresentationslideshare-130721201826-phpapp01-thumbnail-2.jpg?1374457730" />
|
|
859
|
+
</span>
|
|
860
|
+
</span>
|
|
861
|
+
<span class="h-related-title">Prestin Apsley Ignite Slideshow</span>
|
|
862
|
+
<span class="h-related-views view-count">50 views</span>
|
|
863
|
+
</a>
|
|
864
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480279" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
865
|
+
<a href="javascript:void();" data-ssid="24480279" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
866
|
+
</li>
|
|
867
|
+
|
|
868
|
+
<li>
|
|
869
|
+
<a href="/Dmeisenburg/give-me-feedback" title="Give me feedback!">
|
|
870
|
+
<span class="thumbWrapper">
|
|
871
|
+
<span>
|
|
872
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Give me feedback!" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/givemefeedback-130316010912-phpapp02-thumbnail-2.jpg?1363414249" />
|
|
873
|
+
</span>
|
|
874
|
+
</span>
|
|
875
|
+
<span class="h-related-title">Give me feedback!</span>
|
|
876
|
+
<span class="h-related-views view-count">35 views</span>
|
|
877
|
+
</a>
|
|
878
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="17250063" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
879
|
+
<a href="javascript:void();" data-ssid="17250063" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
880
|
+
</li>
|
|
881
|
+
|
|
882
|
+
<li>
|
|
883
|
+
<a href="/bedgarfullsail/ignite-keynote-william-eddgar" title="Ignite keynote William Edgar">
|
|
884
|
+
<span class="thumbWrapper">
|
|
885
|
+
<span>
|
|
886
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Ignite keynote William Edgar" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/ignitekeynote-130721221522-phpapp01-thumbnail-2.jpg?1374463000" />
|
|
887
|
+
</span>
|
|
888
|
+
</span>
|
|
889
|
+
<span class="h-related-title">Ignite keynote William Edgar</span>
|
|
890
|
+
<span class="h-related-views view-count">154 views</span>
|
|
891
|
+
</a>
|
|
892
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24482047" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
893
|
+
<a href="javascript:void();" data-ssid="24482047" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
894
|
+
</li>
|
|
895
|
+
|
|
896
|
+
<li>
|
|
897
|
+
<a href="/labreniajordan/being-a-prison-wife-were-not-so-different" title="Being A Prison Wife: We're not so Different">
|
|
898
|
+
<span class="thumbWrapper">
|
|
899
|
+
<span>
|
|
900
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Being A Prison Wife: We're not so Different" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/jordanlabreniadiscussion4-130721210244-phpapp02-thumbnail-2.jpg?1374458970" />
|
|
901
|
+
</span>
|
|
902
|
+
</span>
|
|
903
|
+
<span class="h-related-title">Being A Prison Wife: We're not so Different</span>
|
|
904
|
+
<span class="h-related-views view-count">31 views</span>
|
|
905
|
+
</a>
|
|
906
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480942" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
907
|
+
<a href="javascript:void();" data-ssid="24480942" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
908
|
+
</li>
|
|
909
|
+
|
|
910
|
+
<li>
|
|
911
|
+
<a href="/Derrick29/hip-24480564" title="HIP-HOP IDOL ">
|
|
912
|
+
<span class="thumbWrapper">
|
|
913
|
+
<span>
|
|
914
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="HIP-HOP IDOL " width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/hip-hipidol-130721203927-phpapp01-thumbnail-2.jpg?1374457298" />
|
|
915
|
+
</span>
|
|
916
|
+
</span>
|
|
917
|
+
<span class="h-related-title">HIP-HOP IDOL </span>
|
|
918
|
+
<span class="h-related-views view-count">135 views</span>
|
|
919
|
+
</a>
|
|
920
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480564" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
921
|
+
<a href="javascript:void();" data-ssid="24480564" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
922
|
+
</li>
|
|
923
|
+
|
|
924
|
+
<li>
|
|
925
|
+
<a href="/rachelcoles4/power-of-meditation" title="Power of Meditation">
|
|
926
|
+
<span class="thumbWrapper">
|
|
927
|
+
<span>
|
|
928
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Power of Meditation" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/rachelcolesa4-130615170833-phpapp02-thumbnail-2.jpg?1371334649" />
|
|
929
|
+
</span>
|
|
930
|
+
</span>
|
|
931
|
+
<span class="h-related-title">Power of Meditation</span>
|
|
932
|
+
<span class="h-related-views view-count">193 views</span>
|
|
933
|
+
</a>
|
|
934
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="23037607" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
935
|
+
<a href="javascript:void();" data-ssid="23037607" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
936
|
+
</li>
|
|
937
|
+
|
|
938
|
+
<li>
|
|
939
|
+
<a href="/JasonMiller13/classroom-or-online-education" title="Classroom or online education">
|
|
940
|
+
<span class="thumbWrapper">
|
|
941
|
+
<span>
|
|
942
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Classroom or online education" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/classroomoronlineeducation-130721202851-phpapp02-thumbnail-2.jpg?1374456591" />
|
|
943
|
+
</span>
|
|
944
|
+
</span>
|
|
945
|
+
<span class="h-related-title">Classroom or online education</span>
|
|
946
|
+
<span class="h-related-views view-count">139 views</span>
|
|
947
|
+
</a>
|
|
948
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24480427" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
949
|
+
<a href="javascript:void();" data-ssid="24480427" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
950
|
+
</li>
|
|
951
|
+
|
|
952
|
+
<li>
|
|
953
|
+
<a href="/Mrkee/wk-4-ignite" title="Wk 4 ignite">
|
|
954
|
+
<span class="thumbWrapper">
|
|
955
|
+
<span>
|
|
956
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Wk 4 ignite" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/wk4ignite-130721183434-phpapp02-thumbnail-2.jpg?1374449750" />
|
|
957
|
+
</span>
|
|
958
|
+
</span>
|
|
959
|
+
<span class="h-related-title">Wk 4 ignite</span>
|
|
960
|
+
<span class="h-related-views view-count">29 views</span>
|
|
961
|
+
</a>
|
|
962
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24478805" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
963
|
+
<a href="javascript:void();" data-ssid="24478805" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
964
|
+
</li>
|
|
965
|
+
|
|
966
|
+
<li>
|
|
967
|
+
<a href="/EmmaWatts/pd-teacher-only-day-2013" title="PD Teacher Only Day 2013">
|
|
968
|
+
<span class="thumbWrapper">
|
|
969
|
+
<span>
|
|
970
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="PD Teacher Only Day 2013" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/pdtod2013part1-130129211503-phpapp02-thumbnail-2.jpg?1359515794" />
|
|
971
|
+
</span>
|
|
972
|
+
</span>
|
|
973
|
+
<span class="h-related-title">PD Teacher Only Day 2013</span>
|
|
974
|
+
<span class="h-related-views view-count">112 views</span>
|
|
975
|
+
</a>
|
|
976
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16247360" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
977
|
+
<a href="javascript:void();" data-ssid="16247360" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
978
|
+
</li>
|
|
979
|
+
|
|
980
|
+
<li>
|
|
981
|
+
<a href="/juliasapho/sapho-julia-visualresumestoryboard-16612553" title="Sapho julia visual_resumestoryboard">
|
|
982
|
+
<span class="thumbWrapper">
|
|
983
|
+
<span>
|
|
984
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Sapho julia visual_resumestoryboard" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/saphojuliavisualresumestoryboard-130218193519-phpapp01-thumbnail-2.jpg?1361237767" />
|
|
985
|
+
</span>
|
|
986
|
+
</span>
|
|
987
|
+
<span class="h-related-title">Sapho julia visual_resumestoryboard</span>
|
|
988
|
+
<span class="h-related-views view-count">123 views</span>
|
|
989
|
+
</a>
|
|
990
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16612553" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
991
|
+
<a href="javascript:void();" data-ssid="16612553" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
992
|
+
</li>
|
|
993
|
+
|
|
994
|
+
<li>
|
|
995
|
+
<a href="/tiffanyleong/visualcoverletterforlululemon-tiffanyleong" title="Visual Cover Letter for lululemon: Tiffany Leong">
|
|
996
|
+
<span class="thumbWrapper">
|
|
997
|
+
<span>
|
|
998
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Visual Cover Letter for lululemon: Tiffany Leong" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/visualcoverletterforlululemontiffanyleong-130624001732-phpapp01-thumbnail-2.jpg?1372051118" />
|
|
999
|
+
</span>
|
|
1000
|
+
</span>
|
|
1001
|
+
<span class="h-related-title">Visual Cover Letter for lululemon: Tiffany Leong</span>
|
|
1002
|
+
<span class="h-related-views view-count">185 views</span>
|
|
1003
|
+
</a>
|
|
1004
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="23380529" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1005
|
+
<a href="javascript:void();" data-ssid="23380529" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1006
|
+
</li>
|
|
1007
|
+
|
|
1008
|
+
<li>
|
|
1009
|
+
<a href="/jheovanidc/courtnie-rich-visualresume" title="Courtnie rich visual_resume">
|
|
1010
|
+
<span class="thumbWrapper">
|
|
1011
|
+
<span>
|
|
1012
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Courtnie rich visual_resume" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/courtnierichvisualresume-130131120432-phpapp02-thumbnail-2.jpg?1359655524" />
|
|
1013
|
+
</span>
|
|
1014
|
+
</span>
|
|
1015
|
+
<span class="h-related-title">Courtnie rich visual_resume</span>
|
|
1016
|
+
<span class="h-related-views view-count">71 views</span>
|
|
1017
|
+
</a>
|
|
1018
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16279821" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1019
|
+
<a href="javascript:void();" data-ssid="16279821" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1020
|
+
</li>
|
|
1021
|
+
|
|
1022
|
+
<li>
|
|
1023
|
+
<a href="/mattsmith201/smith-matthew-discussion-4" title="Smith matthew discussion 4">
|
|
1024
|
+
<span class="thumbWrapper">
|
|
1025
|
+
<span>
|
|
1026
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Smith matthew discussion 4" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/smithmatthewdiscussion4-130721211130-phpapp01-thumbnail-2.jpg?1374459190" />
|
|
1027
|
+
</span>
|
|
1028
|
+
</span>
|
|
1029
|
+
<span class="h-related-title">Smith matthew discussion 4</span>
|
|
1030
|
+
<span class="h-related-views view-count">76 views</span>
|
|
1031
|
+
</a>
|
|
1032
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24481076" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1033
|
+
<a href="javascript:void();" data-ssid="24481076" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1034
|
+
</li>
|
|
1035
|
+
|
|
1036
|
+
<li>
|
|
1037
|
+
<a href="/LosoFly/discussion-4-19481360" title="Discussion 4">
|
|
1038
|
+
<span class="thumbWrapper">
|
|
1039
|
+
<span>
|
|
1040
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Discussion 4" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/discussion4-130421215058-phpapp02-thumbnail-2.jpg?1366599108" />
|
|
1041
|
+
</span>
|
|
1042
|
+
</span>
|
|
1043
|
+
<span class="h-related-title">Discussion 4</span>
|
|
1044
|
+
<span class="h-related-views view-count">35 views</span>
|
|
1045
|
+
</a>
|
|
1046
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="19481360" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1047
|
+
<a href="javascript:void();" data-ssid="19481360" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1048
|
+
</li>
|
|
1049
|
+
|
|
1050
|
+
<li>
|
|
1051
|
+
<a href="/EmmaWatts/icot-2013-16186149" title="ICOT 2013">
|
|
1052
|
+
<span class="thumbWrapper">
|
|
1053
|
+
<span>
|
|
1054
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="ICOT 2013" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/icot2013v-2-130125234843-phpapp02-thumbnail-2.jpg?1359179562" />
|
|
1055
|
+
</span>
|
|
1056
|
+
</span>
|
|
1057
|
+
<span class="h-related-title">ICOT 2013</span>
|
|
1058
|
+
<span class="h-related-views view-count">431 views</span>
|
|
1059
|
+
</a>
|
|
1060
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="16186149" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1061
|
+
<a href="javascript:void();" data-ssid="16186149" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1062
|
+
</li>
|
|
1063
|
+
|
|
1064
|
+
<li>
|
|
1065
|
+
<a href="/spimxz/age-of-exploration-tutorial" title="Age of Exploration Tutorial">
|
|
1066
|
+
<span class="thumbWrapper">
|
|
1067
|
+
<span>
|
|
1068
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Age of Exploration Tutorial" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/1-100503072721-phpapp02-thumbnail-2.jpg?1272889708" />
|
|
1069
|
+
</span>
|
|
1070
|
+
</span>
|
|
1071
|
+
<span class="h-related-title">Age of Exploration Tutorial</span>
|
|
1072
|
+
<span class="h-related-views view-count">260 views</span>
|
|
1073
|
+
</a>
|
|
1074
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="3947634" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1075
|
+
<a href="javascript:void();" data-ssid="3947634" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1076
|
+
</li>
|
|
1077
|
+
</ul>
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
</noscript>
|
|
1082
|
+
<ul class="notranslate moreContent thumbnailGrid h-author-slideshows j-tab-content" id="moreList" style="display:none">
|
|
1083
|
+
<li>
|
|
1084
|
+
<a href="/TravelWorldPassport/movie-inspired-travel-destinations" title="Movie Inspired Travel Destinations">
|
|
1085
|
+
<span class="thumbWrapper">
|
|
1086
|
+
<span>
|
|
1087
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="Movie Inspired Travel Destinations" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/movieinspiredtraveldestinations-130730234928-phpapp02-thumbnail-2.jpg?1375320724" />
|
|
1088
|
+
</span>
|
|
1089
|
+
</span>
|
|
1090
|
+
<span class="h-more-title">Movie Inspired Travel Destinations</span>
|
|
1091
|
+
<span class="h-more-views view-count">1284 views</span>
|
|
1092
|
+
</a>
|
|
1093
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24788592" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1094
|
+
<a href="javascript:void();" data-ssid="24788592" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1095
|
+
</li>
|
|
1096
|
+
|
|
1097
|
+
<li>
|
|
1098
|
+
<a href="/TravelWorldPassport/12-memorable-quotes-for-travellers-24523876" title="12 memorable quotes for travellers">
|
|
1099
|
+
<span class="thumbWrapper">
|
|
1100
|
+
<span>
|
|
1101
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="12 memorable quotes for travellers" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/12memorablequotesfortravellers-130723000223-phpapp02-thumbnail-2.jpg?1374556006" />
|
|
1102
|
+
</span>
|
|
1103
|
+
</span>
|
|
1104
|
+
<span class="h-more-title">12 memorable quotes for travellers</span>
|
|
1105
|
+
<span class="h-more-views view-count">1009 views</span>
|
|
1106
|
+
</a>
|
|
1107
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24523876" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1108
|
+
<a href="javascript:void();" data-ssid="24523876" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1109
|
+
</li>
|
|
1110
|
+
|
|
1111
|
+
<li>
|
|
1112
|
+
<a href="/TravelWorldPassport/12-memorable-quotes-for-travellers" title="12 memorable quotes for travellers">
|
|
1113
|
+
<span class="thumbWrapper">
|
|
1114
|
+
<span>
|
|
1115
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="12 memorable quotes for travellers" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/12memorablequotesfortravellers-130723000152-phpapp02-thumbnail-2.jpg?1374556216" />
|
|
1116
|
+
</span>
|
|
1117
|
+
</span>
|
|
1118
|
+
<span class="h-more-title">12 memorable quotes for travellers</span>
|
|
1119
|
+
<span class="h-more-views view-count">37 views</span>
|
|
1120
|
+
</a>
|
|
1121
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24523837" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1122
|
+
<a href="javascript:void();" data-ssid="24523837" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1123
|
+
</li>
|
|
1124
|
+
|
|
1125
|
+
<li>
|
|
1126
|
+
<a href="/TravelWorldPassport/how-to-use-travel-world-passport" title="How to use travel world passport">
|
|
1127
|
+
<span class="thumbWrapper">
|
|
1128
|
+
<span>
|
|
1129
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="How to use travel world passport" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/howtousetravelworldpassport-130716101727-phpapp02-thumbnail-2.jpg?1374079508" />
|
|
1130
|
+
</span>
|
|
1131
|
+
</span>
|
|
1132
|
+
<span class="h-more-title">How to use travel world passport</span>
|
|
1133
|
+
<span class="h-more-views view-count">517 views</span>
|
|
1134
|
+
</a>
|
|
1135
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24299950" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1136
|
+
<a href="javascript:void();" data-ssid="24299950" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1137
|
+
</li>
|
|
1138
|
+
|
|
1139
|
+
<li>
|
|
1140
|
+
<a href="/TravelWorldPassport/travel-world-passport" title="How to get more traffic to your travel blog">
|
|
1141
|
+
<span class="thumbWrapper">
|
|
1142
|
+
<span>
|
|
1143
|
+
<img class="h-thumbnail" src="//public.slidesharecdn.com/images/thumbnail.png" alt="How to get more traffic to your travel blog" width="120" original="http://cdn.slidesharecdn.com/ss_thumbnails/travelworldpassport-130712102231-phpapp01-thumbnail-2.jpg?1374079550" />
|
|
1144
|
+
</span>
|
|
1145
|
+
</span>
|
|
1146
|
+
<span class="h-more-title">How to get more traffic to your travel blog</span>
|
|
1147
|
+
<span class="h-more-views view-count">224 views</span>
|
|
1148
|
+
</a>
|
|
1149
|
+
<a href="/signup?from=favorite&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" data-ssid="24179305" class="h-favorite j-favorite favorite-cta" style="">Like</a>
|
|
1150
|
+
<a href="javascript:void();" data-ssid="24179305" class="h-favorited j-favorited favorite-cta" style="display:none">Liked</a>
|
|
1151
|
+
</li>
|
|
1152
|
+
</ul>
|
|
1153
|
+
|
|
1154
|
+
<span class="follow-in-sidebar h-follow-in-sidebar author">
|
|
1155
|
+
<span class="h-author author-image"><img class="h-author-image" src="//cdn.slidesharecdn.com/profile-photo-TravelWorldPassport-48x48.jpg?1375402560" height="40" alt="TravelWorldPassport" width="40" /></span>
|
|
1156
|
+
<div class="follow-cta-container">
|
|
1157
|
+
<span class="title">
|
|
1158
|
+
<p class="h-author-name">TravelWorldPassport</p>
|
|
1159
|
+
</span>
|
|
1160
|
+
<span class="j-section-add-contact h-section-add-contact user-55337030"><a href="/signup?from=addcontact&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" class="btn btn-inverse h-follow" rel="nofollow">Follow</a></span>
|
|
1161
|
+
<span class="hide indicator j-follow-progress h-follow-sidebar-progress"><img alt="Processing..." height="14" src="http://public.slidesharecdn.com/images/ssplayer/video_buffer.gif?a51c5608d0" style="float:none;" width="14" /></span>
|
|
1162
|
+
</div>
|
|
1163
|
+
</span>
|
|
1164
|
+
|
|
1165
|
+
|
|
1166
|
+
</aside>
|
|
1167
|
+
<ul class="socialActions public-only j-socialActions">
|
|
1168
|
+
<li class="social-fb">
|
|
1169
|
+
<div data-send="false" class="fb-like" data-width="450" data-layout="box_count" data-href="http://www.slideshare.net/TravelWorldPassport/12-local-traditions" data-colorscheme="dark" data-show-faces="false">
|
|
1170
|
+
</div>
|
|
1171
|
+
</li>
|
|
1172
|
+
<li class="social-tw">
|
|
1173
|
+
<a href="https://twitter.com/share" data-url="http://www.slideshare.net/TravelWorldPassport/12-local-traditions" class="twitter-share-button" rel="nofollow" data-count="vertical" data-text="12 Local Traditions That Will Make You Go hmm.... when you travel abroad by @travelworldpass on @slideshare #culture #customs">Tweet</a>
|
|
1174
|
+
</li>
|
|
1175
|
+
<li class="social-li">
|
|
1176
|
+
<script data-url="http://www.slideshare.net/TravelWorldPassport/12-local-traditions" data-onsuccess="linkedInShareSuccess" data-counter="top" type="IN/Share"></script>
|
|
1177
|
+
</li>
|
|
1178
|
+
<li class="social-go">
|
|
1179
|
+
<div class="g-plusone" data-size="tall" data-annotation="none" data-callback="plusone_success"></div>
|
|
1180
|
+
</li>
|
|
1181
|
+
<li class="social-pi">
|
|
1182
|
+
<a href="#" class="sprite j-pinit pin-it-button" count-layout="none" target="_blank" title="Pin It">Pin It</a>
|
|
1183
|
+
</li>
|
|
1184
|
+
<li class="social-wp">
|
|
1185
|
+
<a href="#" title="Embed this on your Wordpress blog" class="sprite action-wpshare" rel="nofollow">Wordpress</a>
|
|
1186
|
+
</li>
|
|
1187
|
+
</ul>
|
|
1188
|
+
</div><!-- .sectionElements -->
|
|
1189
|
+
</section>
|
|
1190
|
+
|
|
1191
|
+
<article>
|
|
1192
|
+
<div class="articleElements container">
|
|
1193
|
+
<div class="articleCore">
|
|
1194
|
+
<div class="author">
|
|
1195
|
+
<a href="/TravelWorldPassport" title="TravelWorldPassport" class="notranslate h-author">
|
|
1196
|
+
<img class="h-author-image" src="//cdn.slidesharecdn.com/profile-photo-TravelWorldPassport-48x48.jpg?1375402560" height="50" alt="TravelWorldPassport" width="50" />
|
|
1197
|
+
</a>
|
|
1198
|
+
<span class="j-section-add-contact h-section-add-contact user-55337030"><a href="/signup?from=addcontact&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" class="button h-follow" rel="nofollow">+ Follow</a></span>
|
|
1199
|
+
<span class="hide indicator j-follow-progress h-follow-progress"><img alt="Processing..." height="5" src="http://public.slidesharecdn.com/images/indicator.gif?cca1cac641" style="float:none;" width="21" /></span>
|
|
1200
|
+
</div>
|
|
1201
|
+
|
|
1202
|
+
<div class="title">
|
|
1203
|
+
<h1 class="h-slideshow-title notranslate">12 Local Traditions That Will Make You Go hmm.... when you travel abroad</h1>
|
|
1204
|
+
<h2>by <a href="/TravelWorldPassport" class="j-tooltip h-author-name notranslate" title="TravelWorldPassport" rel="author">TravelWorldPassport</a><span class="h-date-container"> on <em class="h-slideshow-created-at">Jul 29, 2013</em></span>
|
|
1205
|
+
|
|
1206
|
+
</h2>
|
|
1207
|
+
</div>
|
|
1208
|
+
<ul class="basicStats">
|
|
1209
|
+
<li><strong class="j-tooltip h-view-count notranslate" title="13809 views">13,809</strong> views</li>
|
|
1210
|
+
</ul>
|
|
1211
|
+
|
|
1212
|
+
<p class="description notranslate" >12 Local traditions that will make you go hmm... Things to keep in mind on your international travels, before you wander off. We've researched a couple interesting cultures and outlined 12 facts that ...</p>
|
|
1213
|
+
<div class="descToggleMore" >
|
|
1214
|
+
<button class="j-desc-more btn btn-inverse" type="button">More…</button>
|
|
1215
|
+
</div>
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
<p class="descriptionExpanded notranslate" >12 Local traditions that will make you go hmm... Things to keep in mind on your international travels, before you wander off. We've researched a couple interesting cultures and outlined 12 facts that struck us. Check out the full scoop: http://blog.travelworldpassport.com/how-to-stay-out-of-trouble-while-discovering-different-cultures/</p>
|
|
1219
|
+
<div class="descToggle" >
|
|
1220
|
+
<button class="j-desc-less btn btn-inverse" type="button">Less</button>
|
|
1221
|
+
</div>
|
|
1222
|
+
|
|
1223
|
+
<div class="row detailedStats h-detail-stats" >
|
|
1224
|
+
<div class="span3 h-generic infoGeneric">
|
|
1225
|
+
<h3>Accessibility</h3>
|
|
1226
|
+
<ul>
|
|
1227
|
+
<li class="h-view-text"><a class="j-text-version" href="#text-version">View text version</a></li>
|
|
1228
|
+
</ul>
|
|
1229
|
+
<h3 class="h-categories-label">Categories</h3>
|
|
1230
|
+
<ul class="h-slideshow-categories">
|
|
1231
|
+
<li class="su-category"><a href="/category/travel">Travel</a></li>
|
|
1232
|
+
<li class="category"><a href="/category/travel" rel="nofollow">Travel</a></li>
|
|
1233
|
+
</ul>
|
|
1234
|
+
<h3>Upload Details</h3>
|
|
1235
|
+
<p>Uploaded via <a href="/" class="api-credit-text" rel="nofollow">SlideShare</a> <span class="h-as-text">as </span><a href="/" class="uploaded-as">Adobe PDF</a></p>
|
|
1236
|
+
<h3>Usage Rights</h3>
|
|
1237
|
+
<p class="license">© All Rights Reserved</p>
|
|
1238
|
+
|
|
1239
|
+
<!-- Flag begins here-->
|
|
1240
|
+
<div class="flag flag-inappropriate">
|
|
1241
|
+
<a href="/signup?from=flagss&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" class="action-flag" rel="nofollow">
|
|
1242
|
+
<span title="This presentation has been flagged" class="j-tooltip flagged">Flagged as inappropriate</span>
|
|
1243
|
+
<span title="Flag this presentation as inappropriate" class="j-tooltip flag">Flag as inappropriate</span>
|
|
1244
|
+
</a>
|
|
1245
|
+
<form action="#" method="post" accept-charset="utf-8" style="display:none">
|
|
1246
|
+
<fieldset>
|
|
1247
|
+
<legend>Flag as inappropriate</legend>
|
|
1248
|
+
<p>Select your reason for flagging this <span class="type-string-down">presentation</span> as inappropriate. If needed, use the <a href="/feedback" rel="nofollow">feedback form</a> to let us know more details.</p>
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
<select name="ia_value">
|
|
1252
|
+
<option value="0">None</option>
|
|
1253
|
+
<option value="1">Pornographic</option>
|
|
1254
|
+
<option value="3">Defamatory</option>
|
|
1255
|
+
<option value="4">Illegal/Unlawful</option>
|
|
1256
|
+
<option value="6">Spam</option>
|
|
1257
|
+
<option value="5">Other Terms Of Service Violation</option>
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
</select>
|
|
1263
|
+
|
|
1264
|
+
<input type="submit" value="Flag" class="button action-submit" />
|
|
1265
|
+
<a href="#" class="ilink action-cancel" rel="nofollow">Cancel</a>
|
|
1266
|
+
</fieldset>
|
|
1267
|
+
</form>
|
|
1268
|
+
</div><!-- Flag ends here-->
|
|
1269
|
+
|
|
1270
|
+
<!-- Other issues similar to flagging begins here -->
|
|
1271
|
+
<div>
|
|
1272
|
+
<a href="http://www.slideshare.net/terms#dmca" rel="nofollow">File a copyright complaint</a>
|
|
1273
|
+
</div>
|
|
1274
|
+
<!-- End other issues -->
|
|
1275
|
+
|
|
1276
|
+
<!-- SuperUser actions being here-->
|
|
1277
|
+
<!-- SuperUser actions end here-->
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
</div>
|
|
1281
|
+
<div class="embedWrapper h-embed-wrapper">
|
|
1282
|
+
<h3 class="h-embed-heading embedHeading"><span class="embed-count">7 Embeds</span> <span class="notranslate from-embed hint">81</span></h3>
|
|
1283
|
+
<div class="span3 h-embeds infoEmbeds">
|
|
1284
|
+
<table class="notranslate embedDetails">
|
|
1285
|
+
<tbody>
|
|
1286
|
+
<tr>
|
|
1287
|
+
<td class="url h-url">http://blog.travelworldpassport.com</td>
|
|
1288
|
+
<td class="count h-views">41</td>
|
|
1289
|
+
</tr>
|
|
1290
|
+
|
|
1291
|
+
<tr>
|
|
1292
|
+
<td class="url h-url">http://maferzielke.wordpress.com</td>
|
|
1293
|
+
<td class="count h-views">15</td>
|
|
1294
|
+
</tr>
|
|
1295
|
+
|
|
1296
|
+
<tr>
|
|
1297
|
+
<td class="url h-url">http://www.graduatecenter.org</td>
|
|
1298
|
+
<td class="count h-views">12</td>
|
|
1299
|
+
</tr>
|
|
1300
|
+
|
|
1301
|
+
<tr>
|
|
1302
|
+
<td class="url h-url">https://twitter.com</td>
|
|
1303
|
+
<td class="count h-views">6</td>
|
|
1304
|
+
</tr>
|
|
1305
|
+
|
|
1306
|
+
<tr>
|
|
1307
|
+
<td class="url h-url">http://translate.googleusercontent.com</td>
|
|
1308
|
+
<td class="count h-views">6</td>
|
|
1309
|
+
</tr>
|
|
1310
|
+
|
|
1311
|
+
<tr>
|
|
1312
|
+
<td class="url h-url">http://www.blogger.com</td>
|
|
1313
|
+
<td class="count h-views">1</td>
|
|
1314
|
+
</tr>
|
|
1315
|
+
|
|
1316
|
+
<tr>
|
|
1317
|
+
<td class="url h-url">http://portfoliobernadete.blogspot.com.br</td>
|
|
1318
|
+
<td class="count h-views">1</td>
|
|
1319
|
+
</tr>
|
|
1320
|
+
</tbody>
|
|
1321
|
+
</table>
|
|
1322
|
+
</div>
|
|
1323
|
+
<br>
|
|
1324
|
+
<a href="#" class="h-more-embeds j-more-embeds" rel="nofollow">More...</a>
|
|
1325
|
+
<img class="j-waiting-embeds" src="http://public.slidesharecdn.com/images/indicator.gif?cca1cac641" style="display: none; " />
|
|
1326
|
+
</div>
|
|
1327
|
+
<div class="span3 h-stats infoStats">
|
|
1328
|
+
<h3>Statistics</h3>
|
|
1329
|
+
<dl class="statistics">
|
|
1330
|
+
<dt class="sprite iconFav">Likes</dt> <dd class="notranslate favorites">7</dd>
|
|
1331
|
+
<dt class="sprite iconDownload">Downloads</dt> <dd class="notranslate downloads">7</dd>
|
|
1332
|
+
<dt class="sprite iconComment">Comments</dt> <dd class="notranslate comments">0</dd>
|
|
1333
|
+
<dt class="sprite iconEmbedViews">Embed Views</dt> <dd class="notranslate from-embed">81</dd>
|
|
1334
|
+
<dt class="sprite iconSSViews">Views on SlideShare</dt> <dd class="notranslate on-site">13,728</dd>
|
|
1335
|
+
<dt class="sprite iconViews">Total Views</dt> <dd class="notranslate views">13,809</dd>
|
|
1336
|
+
</dl>
|
|
1337
|
+
|
|
1338
|
+
</div>
|
|
1339
|
+
|
|
1340
|
+
</div>
|
|
1341
|
+
|
|
1342
|
+
</div><!-- .articleCore -->
|
|
1343
|
+
|
|
1344
|
+
</div><!-- .articleElements -->
|
|
1345
|
+
</article>
|
|
1346
|
+
|
|
1347
|
+
<div class="assets container">
|
|
1348
|
+
<div class="commentsNotes">
|
|
1349
|
+
<ul class="tabs">
|
|
1350
|
+
<li class="active h-comments-tab j-comments"><a class="j-comments-tab" href="#"><em class="h-comments-count">No comments yet</em></a></li>
|
|
1351
|
+
<li class="j-notes"><a class="j-notes-tab" href="#">Notes on Slide <em class="which-slide-value notranslate">1</em></a></li>
|
|
1352
|
+
</ul>
|
|
1353
|
+
<div class="commentsWrapper">
|
|
1354
|
+
|
|
1355
|
+
<ul class="commentWrapper h-comment-list" id="commentsList" style="display: none; "></ul>
|
|
1356
|
+
|
|
1357
|
+
|
|
1358
|
+
<form action="#" method="post" accept-charset="utf-8" id="postComment" class="postComment h-comment-post">
|
|
1359
|
+
<fieldset>
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
<textarea cols="40" rows="4" class="h-post-comment-textarea j-post-comment-textarea"></textarea>
|
|
1363
|
+
<div class='h-non-user-message postCommentSubmit'>
|
|
1364
|
+
<label class="comments-subscribe checkbox"><input type="checkbox" id="followupComments" checked="checked"> Subscribe to comments</label>
|
|
1365
|
+
<a href="/signup?from=comments&from_source=http%3A%2F%2Fwww.slideshare.net%2FTravelWorldPassport%2F12-local-traditions" class="btn btn-inverse" rel="nofollow" id="login-provider-slideshare">Post Comment</a>
|
|
1366
|
+
</div><!-- .h-non-user-message -->
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
</fieldset>
|
|
1370
|
+
</form>
|
|
1371
|
+
|
|
1372
|
+
|
|
1373
|
+
<form action="#" method="post" accept-charset="utf-8" class="updateComment update-form">
|
|
1374
|
+
<fieldset>
|
|
1375
|
+
<legend>Edit your comment</legend>
|
|
1376
|
+
<textarea cols="40" rows="4"></textarea>
|
|
1377
|
+
<input class="btn btn-mini action-update" type="submit" value="Update" />
|
|
1378
|
+
<button class="btn btn-mini action-cancel">Cancel</button>
|
|
1379
|
+
</fieldset>
|
|
1380
|
+
</form>
|
|
1381
|
+
</div>
|
|
1382
|
+
|
|
1383
|
+
<ul class="notranslate tabContent h-notes notesWrapper" id="notesList"></ul>
|
|
1384
|
+
</div>
|
|
1385
|
+
|
|
1386
|
+
<!-- Favorites and Downloads start -->
|
|
1387
|
+
<div class="favsDownloads">
|
|
1388
|
+
<ul class="tabs">
|
|
1389
|
+
<li class="active h-favorites-tab j-favorites"><a href="#favsList" rel="nofollow"><em class="h-favorites-count">7 Likes</em></a></li>
|
|
1390
|
+
|
|
1391
|
+
</ul>
|
|
1392
|
+
<ul class="favWrapper h-favs-list" id="favsList">
|
|
1393
|
+
<li>
|
|
1394
|
+
<a href="/Maximilian1342" title="Maximilian1342" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1395
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="Maximilian1342" original="//cdn.slidesharecdn.com/profile-photo-Maximilian1342-48x48.jpg?1375414938" width="48" />
|
|
1396
|
+
<strong class="h-username ">Maximilian Zie</strong><span class="bioStub"><span class="h-favoriter-role"></span><span class="h-favoriter-org"></span></span>
|
|
1397
|
+
</a>
|
|
1398
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1399
|
+
<span class="favoriteMeta">13 minutes ago</span>
|
|
1400
|
+
</li>
|
|
1401
|
+
|
|
1402
|
+
<li>
|
|
1403
|
+
<a href="/PriankaKrishna" title="PriankaKrishna" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1404
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="PriankaKrishna" original="//cdn.slidesharecdn.com/profile-photo-PriankaKrishna-48x48.jpg?1375406773" width="48" />
|
|
1405
|
+
<strong class="h-username ">Prianka Krishna</strong><span class="bioStub"><span class="h-favoriter-role">, Business Executive </span><span class="h-favoriter-org"> at Media Prima</span></span>
|
|
1406
|
+
</a>
|
|
1407
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1408
|
+
<span class="favoriteMeta">46 minutes ago</span>
|
|
1409
|
+
</li>
|
|
1410
|
+
|
|
1411
|
+
<li>
|
|
1412
|
+
<a href="/TravelWorldPassport" title="TravelWorldPassport" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1413
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="TravelWorldPassport" original="//cdn.slidesharecdn.com/profile-photo-TravelWorldPassport-48x48.jpg?1375402560" width="48" />
|
|
1414
|
+
<strong class="h-username ">TravelWorldPassport</strong><span class="bioStub"><span class="h-favoriter-role"></span><span class="h-favoriter-org"></span></span>
|
|
1415
|
+
</a>
|
|
1416
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1417
|
+
<span class="favoriteMeta">3 hours ago</span>
|
|
1418
|
+
</li>
|
|
1419
|
+
|
|
1420
|
+
<li>
|
|
1421
|
+
<a href="/marttasulkowska" title="marttasulkowska" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1422
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="marttasulkowska" original="//cdn.slidesharecdn.com/profile-photo-marttasulkowska-48x48.jpg?1375362949" width="48" />
|
|
1423
|
+
<strong class="h-username ">Martta Sulkowska</strong><span class="bioStub"><span class="h-favoriter-role">, Chief Executive Officer </span><span class="h-favoriter-org"> at SMU Kids</span></span>
|
|
1424
|
+
</a>
|
|
1425
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1426
|
+
<span class="favoriteMeta">11 hours ago</span>
|
|
1427
|
+
</li>
|
|
1428
|
+
|
|
1429
|
+
<li>
|
|
1430
|
+
<a href="/SBRTechnologies" title="SBRTechnologies" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1431
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="SBRTechnologies" original="//cdn.slidesharecdn.com/profile-photo-SBRTechnologies-48x48.jpg?1375371646" width="48" />
|
|
1432
|
+
<strong class="h-username ">SBR-Technologies</strong><span class="bioStub"><span class="h-favoriter-role"></span><span class="h-favoriter-org"> at SBR-Technologies</span></span>
|
|
1433
|
+
</a>
|
|
1434
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1435
|
+
<span class="favoriteMeta">12 hours ago</span>
|
|
1436
|
+
</li>
|
|
1437
|
+
|
|
1438
|
+
<li>
|
|
1439
|
+
<a href="/nickkellet" title="nickkellet" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1440
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="nickkellet" original="//cdn.slidesharecdn.com/profile-photo-nickkellet-48x48.jpg?1375409346" width="48" />
|
|
1441
|
+
<strong class="h-username ">Nick Kellet</strong><span class="bioStub"><span class="h-favoriter-role">, Ideas Guy, Innovator, Entrepreneur </span><span class="h-favoriter-org"> at List.ly</span></span>
|
|
1442
|
+
</a>
|
|
1443
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1444
|
+
<span class="favoriteMeta">13 hours ago</span>
|
|
1445
|
+
</li>
|
|
1446
|
+
|
|
1447
|
+
<li>
|
|
1448
|
+
<a href="/PiotrBucki" title="PiotrBucki" class="notranslate favoriter h-favoriter" rel="nofollow">
|
|
1449
|
+
<img class="nickname" src="//public.slidesharecdn.com/images/user-48x48.png" height="48" alt="PiotrBucki" original="//cdn.slidesharecdn.com/profile-photo-PiotrBucki-48x48.jpg?1375372434" width="48" />
|
|
1450
|
+
<strong class="h-username ">Bucki Pro</strong><span class="bioStub"><span class="h-favoriter-role"></span><span class="h-favoriter-org"> at Bucki Pro</span></span>
|
|
1451
|
+
</a>
|
|
1452
|
+
<span class="favTags h-tags notranslate"></span>
|
|
1453
|
+
<span class="favoriteMeta">3 days ago</span>
|
|
1454
|
+
</li>
|
|
1455
|
+
</ul>
|
|
1456
|
+
<div class="viewMore action-morefavs j-favs-more" style="display:none"><a rel="nofollow" class="btn btn-inverse" href="#">More…</a></div>
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
</div>
|
|
1460
|
+
|
|
1461
|
+
<!-- Favorites and Downloads end -->
|
|
1462
|
+
<div class="notranslate transcript h-slideshow-transcript-bottom">
|
|
1463
|
+
<a id="text-version" rel="nofollow"></a>
|
|
1464
|
+
|
|
1465
|
+
<h2 class="h-slideshow-title">
|
|
1466
|
+
<img class="slideshow-thumb" src="//cdn.slidesharecdn.com/ss_thumbnails/12localtraditions-130729070157-phpapp01-thumbnail-2.jpg?1375360820" height="37" alt="12 Local Traditions That Will Make You Go hmm.... when you travel abroad" width="60" />
|
|
1467
|
+
<span class="presentation-title notranslate">12 Local Traditions That Will Make You Go hmm.... when you travel abroad</span>
|
|
1468
|
+
<span class="h-title-meta title-meta">Presentation Transcript</span>
|
|
1469
|
+
</h2>
|
|
1470
|
+
<ul class="transcripts h-transcripts"><li>12 local customs
|
|
1471
|
+
that’ll make you
|
|
1472
|
+
go hmmm…
|
|
1473
|
+
don’t forget to www.share.travel
|
|
1474
|
+
</li><li>When you travel you discover cultures
|
|
1475
|
+
that differ from yours dramatically. One must stay
|
|
1476
|
+
open-minded to avoid trouble traveling and discovering
|
|
1477
|
+
exotic cultures.
|
|
1478
|
+
Sometimes it’s difficult to react well to some behaviors
|
|
1479
|
+
that don’t fit to standards we usually function in.
|
|
1480
|
+
If you react inappropriately, especially in a small
|
|
1481
|
+
community, they might become suspicious and you
|
|
1482
|
+
might get yourself into some (or a lot of!) trouble.
|
|
1483
|
+
But if you react the way you are expected to, you might
|
|
1484
|
+
even gain their trust and get the chance to get closer to
|
|
1485
|
+
them. And that is a valuable experience.
|
|
1486
|
+
don’t forget to www.share.travel
|
|
1487
|
+
</li><li>Bulgarians nod to disagree and shake their
|
|
1488
|
+
heads to agree – Very confusing!
|
|
1489
|
+
don’t forget to www.share.travel
|
|
1490
|
+
</li><li>The Greeks spit three times and say “ftou, ftou, ftou”
|
|
1491
|
+
when someone in their company is speaking of bad things
|
|
1492
|
+
like accidents, death etc.
|
|
1493
|
+
don’t forget to www.share.travel
|
|
1494
|
+
</li><li>In Indonesia, a person points with their
|
|
1495
|
+
thumb as it’s considered very rude to
|
|
1496
|
+
point with the forefinger.
|
|
1497
|
+
don’t forget to www.share.travel
|
|
1498
|
+
</li><li>The Bahai People of Iran have their own calendar
|
|
1499
|
+
consisting of nineteen months each with nineteen days.
|
|
1500
|
+
don’t forget to www.share.travel
|
|
1501
|
+
</li><li>In Thailand it’s considered very rude to
|
|
1502
|
+
cross your legs in public
|
|
1503
|
+
don’t forget to www.share.travel
|
|
1504
|
+
</li><li>Shoes must always be removed
|
|
1505
|
+
before entering a Japanese home
|
|
1506
|
+
don’t forget to www.share.travel
|
|
1507
|
+
</li><li>Gold and silver coins are placed inside
|
|
1508
|
+
brides wedding shoes in Sweden
|
|
1509
|
+
don’t forget to www.share.travel
|
|
1510
|
+
</li><li>When a family member dies, female relatives of the Dani tribe in
|
|
1511
|
+
Indonesia must cut off a segment of one of their fingers. This practice
|
|
1512
|
+
is performed to satisfy ancestral ghosts. Luckily for the Dani women,
|
|
1513
|
+
this custom is rarely practiced anymore.
|
|
1514
|
+
don’t forget to www.share.travel
|
|
1515
|
+
</li><li>InBorneoboththebrideandgroomareprohibitedfromusing
|
|
1516
|
+
thebathroomforthe3daysand3nightsfollowingthewedding.
|
|
1517
|
+
Thatmeansnourinating,nodefecating,andnobathing.
|
|
1518
|
+
don’t forget to www.share.travel
|
|
1519
|
+
</li><li>In Tibet, it is considered polite to
|
|
1520
|
+
stick out your tongue at your guests.
|
|
1521
|
+
don’t forget to www.share.travel
|
|
1522
|
+
</li><li>According to tradition, passengers of the train passing
|
|
1523
|
+
over the Jamuna river in India, should give tribute to
|
|
1524
|
+
the river by throwing coins in it.
|
|
1525
|
+
don’t forget to www.share.travel
|
|
1526
|
+
</li><li>It is illegal to be a prostitute in Sienna, Italy,
|
|
1527
|
+
if your name is Mary.
|
|
1528
|
+
don’t forget to www.share.travel
|
|
1529
|
+
</li><li>HelloFellowTraveller,
|
|
1530
|
+
TravelWorldPassporthasbeencreatedbypeoplehungrytodiscovertheworld.
|
|
1531
|
+
Wehaveformedawebframeworktosavetravelmemories.Itwasbornoutof
|
|
1532
|
+
continuoussearchforinspiration.Whileweappreciatethesatisfactionexploration
|
|
1533
|
+
brings,wehaveastrongconvictionthatthewhenlookingfortrueinspiration,we
|
|
1534
|
+
oftenfounditdifficultinformationavailableonlinewasscatteredandoften
|
|
1535
|
+
inaccessible.
|
|
1536
|
+
Themostvaluableandremarkabletravelinspirationandinformationisavailableon
|
|
1537
|
+
travelblogs,butforthosewhodonotfollowthemonaregularbasisitishardto
|
|
1538
|
+
keeptrackof.Ourmissionisnowtogatherthemostvaluable,relevantanduseful
|
|
1539
|
+
travelcontentinoneplace,whereitisindexedandeasilysearchable.
|
|
1540
|
+
Soforthose,whoarenotsatisfiedwiththewaytravelcontentisbeingpresented
|
|
1541
|
+
onlineourproductisawebframeworktosaveanddigesttravelinformationaround
|
|
1542
|
+
thestoriesofrealtravelers.Itprovidesthenecessaryinspirationandcontains
|
|
1543
|
+
informationtostartyourjourney.Ourbeliefisthattravelisaboutthefeelingandthe
|
|
1544
|
+
experiences,nottheplace.Thosethoughtsandbelievesarereflectedinallthe
|
|
1545
|
+
aspectsofourwork.Andthatfeelinginspiresustobefree,travelanddogreat
|
|
1546
|
+
things.Wehopeitwillinspireyou,too.
|
|
1547
|
+
TravelWorldPassportTeam
|
|
1548
|
+
</li><li>Photo credits
|
|
1549
|
+
Photo Credit: Mirko.Eggert via Compfight cc
|
|
1550
|
+
Photo Credit: druidabruxux via Compfight cc
|
|
1551
|
+
Photo Credit: michael.dreves via Compfight cc
|
|
1552
|
+
Photo Credit: jessleecuizon via Compfight cc
|
|
1553
|
+
Photo Credit: Dietmar Temps via Compfight cc
|
|
1554
|
+
Photo Credit: Dietmar Temps via Compfight cc
|
|
1555
|
+
Photo Credit: lynhdan via Compfight cc
|
|
1556
|
+
Photo Credit: Sukanto Debnath via Compfight cc
|
|
1557
|
+
Photo Credit: Through Painted Eyes via Compfight cc
|
|
1558
|
+
You can e-mail us at hi@travelworldpassport.com,
|
|
1559
|
+
find us traveling the world or on-line at following websites
|
|
1560
|
+
www.travelworldpassport.com
|
|
1561
|
+
www.blog.travelworldpassport.com
|
|
1562
|
+
www.share.travel
|
|
1563
|
+
</li></ul>
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
</div><!-- .transcript -->
|
|
1570
|
+
</div><!-- .assets -->
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
<footer>
|
|
1574
|
+
<div class="footer-leaderboard-ad h-below-transcript-ad">
|
|
1575
|
+
<div class="transcriptAd">
|
|
1576
|
+
<div class="h-transcriptAdDiv" id="transcriptAdHolder"><script type="text/javascript">slideshare_object._adQueue.push({ tile : 4, zone : 'slideview', dart_code: '%3Bkw%3DRecreation%3Bkw%3DAsia%3Bkw%3DTibet%3Bkw%3DIndonesia%3Bkw%3DTravel%3Bkw%3DThailand%3Bkw%3DSweden%3Bkw%3DCompfight%3Bcat%3Dtravel%3Bcat%3Dtravel%3Bcat%3Dentertainment', width: 728, height: 90, appendTo: 'transcriptAdHolder', lazyLoad: true});</script></div>
|
|
1577
|
+
|
|
1578
|
+
</div>
|
|
1579
|
+
</div>
|
|
1580
|
+
<div class="footerWrapper">
|
|
1581
|
+
<div class="footer">
|
|
1582
|
+
<div class="footerLeft">
|
|
1583
|
+
<form class="footerSearch" method="get" action="/search/slideshow">
|
|
1584
|
+
<fieldset>
|
|
1585
|
+
<input type="hidden" name="searchfrom" value="footer" />
|
|
1586
|
+
<div class="suggestionContainerFooter">
|
|
1587
|
+
<input type="text" class="text" name="q" id="search_query_bottom" autocomplete="off" value="" /><input type="submit" value="Search" class="ctaNormal" />
|
|
1588
|
+
</div>
|
|
1589
|
+
</fieldset>
|
|
1590
|
+
</form>
|
|
1591
|
+
<!-- .social-links -->
|
|
1592
|
+
<div class="social-links">
|
|
1593
|
+
<ul>
|
|
1594
|
+
<li><a href="http://www.linkedin.com/company/slideshare" class="iconLinkedInFooter" rel="nofollow">Follow us on LinkedIn</a></li>
|
|
1595
|
+
<li><a href="http://twitter.com/SlideShare" class="iconTwitterFooter" rel="nofollow">Follow us on Twitter</a></li>
|
|
1596
|
+
<li><a href="http://www.facebook.com/slideshare" class="iconFacebookFooter" rel="nofollow">Find us on Facebook</a></li>
|
|
1597
|
+
<li><a href="http://plus.google.com/107202479304826454162" class="iconGooglePlusFooter" rel="nofollow">Find us on Google+</a></li>
|
|
1598
|
+
</ul>
|
|
1599
|
+
</div>
|
|
1600
|
+
<!-- /.social-links -->
|
|
1601
|
+
</div>
|
|
1602
|
+
<div class="links footerRight">
|
|
1603
|
+
<div class="fColumn fColumnSmall">
|
|
1604
|
+
<ul class="linksList">
|
|
1605
|
+
<li><strong>Learn About Us</strong></li>
|
|
1606
|
+
<li><a title="About us" href="/about">About</a></li>
|
|
1607
|
+
<li><a title="Careers" href="/about/workatslideshare">Careers</a></li>
|
|
1608
|
+
<li><a title="Our Blog" href="http://blog.slideshare.net">Our Blog</a></li>
|
|
1609
|
+
<li><a title="Press" href="/about/press" rel="nofollow">Press</a></li>
|
|
1610
|
+
<li><a title="Contact us" href="/about/contactus" rel="nofollow">Contact Us</a></li>
|
|
1611
|
+
|
|
1612
|
+
<li><a id='j-helpLink' title="Get Help" href="http://help.slideshare.com/home" rel="nofollow">Help & Support</a></li>
|
|
1613
|
+
|
|
1614
|
+
</ul>
|
|
1615
|
+
</div><!-- .fColumn -->
|
|
1616
|
+
<div class="fColumn fColumnMid">
|
|
1617
|
+
<ul class="linksList">
|
|
1618
|
+
<li><strong>Using SlideShare</strong></li>
|
|
1619
|
+
<li><a title="SlideShare 101" href="/about" rel="nofollow">SlideShare 101</a></li>
|
|
1620
|
+
<li><a title="Terms of Use" href="/terms" rel="nofollow">Terms of Use</a></li>
|
|
1621
|
+
<li><a title="Privacy Policy" href="/privacy" rel="nofollow">Privacy Policy</a></li>
|
|
1622
|
+
<li><a title="Copyright & DMCA" href="/terms#dmca" rel="nofollow">Copyright & DMCA</a></li>
|
|
1623
|
+
<li><a title="Community Guidelines" href="/community_guidelines" rel="nofollow">Community Guidelines</a></li>
|
|
1624
|
+
<li><a title="SlideShare Mobile" href="http://www.slideshare.net/mobile?enable_mobile=true" rel="nofollow">SlideShare on Mobile</a></li>
|
|
1625
|
+
</ul>
|
|
1626
|
+
</div><!-- .fColumn -->
|
|
1627
|
+
<div class="fColumn">
|
|
1628
|
+
<ul class="linksList">
|
|
1629
|
+
<li><strong>Pro & more</strong></li>
|
|
1630
|
+
<li><a title="Go PRO" href="/business/premium/plans?cmp_src=general&cmp_src_from=footer">Go PRO</a></li>
|
|
1631
|
+
<li><a title="Enterprise Sales" href="/contact_sales" rel="nofollow">Enterprise Sales</a></li>
|
|
1632
|
+
<li><a title="PRO Features" href="/features?cmp_src=general&cmp_src_from=footer&tabs=true" rel="nofollow">PRO Features</a></li>
|
|
1633
|
+
</ul>
|
|
1634
|
+
</div><!-- .fColumn -->
|
|
1635
|
+
<div class="fColumn last">
|
|
1636
|
+
<ul class="linksList">
|
|
1637
|
+
<li><strong>Developers & API</strong></li>
|
|
1638
|
+
<li><a href="/developers" rel="nofollow">Developers Section</a></li>
|
|
1639
|
+
<li><a href="http://groups.google.com/group/slideshare-developers?lnk=srg" rel="nofollow">Developers Group</a></li>
|
|
1640
|
+
<li><a title="Engineering Blog" href="http://engineering.slideshare.com">Engineering Blog</a></li>
|
|
1641
|
+
<li><a title="Widgets for your blog" href="http://www.slideshare.net/widgets/blogbadge">Blog Widgets</a></li>
|
|
1642
|
+
</ul>
|
|
1643
|
+
</div><!-- .fColumn -->
|
|
1644
|
+
</div><!-- .links -->
|
|
1645
|
+
<div class="copyright">
|
|
1646
|
+
<p>© 2013 SlideShare Inc. All rights reserved.</p>
|
|
1647
|
+
<a href="http://www.slideshare.net/rss/latest" class="rssFooter" rel="nofollow">RSS Feed</a>
|
|
1648
|
+
<div id="smt-lang-selector"></div>
|
|
1649
|
+
</div>
|
|
1650
|
+
</div><!-- .footer -->
|
|
1651
|
+
<img alt="" height="1" src="http://www.linkedin.com/analytics/noauthtracker?pageType=full_page&type=leo.pageTracking&pageKey=sld_slideshow_jsbeacon" width="1" />
|
|
1652
|
+
</div><!-- .footerWrapper -->
|
|
1653
|
+
</footer>
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
<script type='text/javascript' charset='utf-8' id='page-load-loggedout'>
|
|
1658
|
+
// <![CDATA[
|
|
1659
|
+
$(document).ready(function() {
|
|
1660
|
+
var loadAdditionalFunctionality = function(){
|
|
1661
|
+
e = document.createElement('script');
|
|
1662
|
+
e.type = 'text/javascript';
|
|
1663
|
+
e.async = true;
|
|
1664
|
+
e.src = '//public.slidesharecdn.com/slideview/scripts/combined_loggedout.js?7b154700';
|
|
1665
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s);
|
|
1666
|
+
};
|
|
1667
|
+
if(document.readyState === 'complete'){
|
|
1668
|
+
loadAdditionalFunctionality();
|
|
1669
|
+
}else{
|
|
1670
|
+
if(window.addEventListener){
|
|
1671
|
+
window.addEventListener('load', loadAdditionalFunctionality, false);
|
|
1672
|
+
}else if(window.attachEvent){
|
|
1673
|
+
window.attachEvent('onload', loadAdditionalFunctionality);
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
});
|
|
1677
|
+
// ]]>
|
|
1678
|
+
</script>
|
|
1679
|
+
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
<script> var _sstq=[];
|
|
1722
|
+
(function(){
|
|
1723
|
+
var a,b;
|
|
1724
|
+
b=document.createElement("script");
|
|
1725
|
+
b.type="text/javascript";
|
|
1726
|
+
b.async=true;
|
|
1727
|
+
b.src="//public.slidesharecdn.com/javascripts/instrumentation_wrapper.js";
|
|
1728
|
+
a=document.getElementsByTagName("script")[0];
|
|
1729
|
+
a.parentNode.insertBefore(b,a)
|
|
1730
|
+
})();
|
|
1731
|
+
_sstq.push(['init_experiment', {"disabled":true,"bucket":"out","experiment_name":"related_content"}]);</script>
|
|
1732
|
+
|
|
1733
|
+
<script type="text/javascript">
|
|
1734
|
+
// Experiment code begins
|
|
1735
|
+
window._sstq && _sstq.push(['track', 'related_content', 'pageloaded']);
|
|
1736
|
+
$(document).ready(function() {
|
|
1737
|
+
$("#relatedList a:first-child").on('click', function(e) {
|
|
1738
|
+
window._sstq && _sstq.push(['track', 'related_content', 'relatedCliked']);
|
|
1739
|
+
});
|
|
1740
|
+
});
|
|
1741
|
+
// Experiment code ends
|
|
1742
|
+
</script>
|
|
1743
|
+
</body>
|
|
1744
|
+
</html>
|
|
1745
|
+
|