onebox 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +4 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +154 -113
  5. data/lib/onebox.rb +6 -3
  6. data/lib/onebox/engine.rb +28 -26
  7. data/lib/onebox/engine/amazon_onebox.rb +4 -2
  8. data/lib/onebox/engine/bliptv_onebox.rb +4 -2
  9. data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
  10. data/lib/onebox/engine/college_humor_onebox.rb +3 -2
  11. data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
  12. data/lib/onebox/engine/dotsub_onebox.rb +4 -2
  13. data/lib/onebox/engine/example_onebox.rb +4 -5
  14. data/lib/onebox/engine/flickr_onebox.rb +3 -2
  15. data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
  16. data/lib/onebox/engine/github_blob_onebox.rb +28 -0
  17. data/lib/onebox/engine/github_commit_onebox.rb +43 -0
  18. data/lib/onebox/engine/github_gist_onebox.rb +33 -0
  19. data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
  20. data/lib/onebox/engine/html.rb +1 -1
  21. data/lib/onebox/engine/hulu_onebox.rb +5 -2
  22. data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
  23. data/lib/onebox/engine/itunes_onebox.rb +28 -0
  24. data/lib/onebox/engine/json.rb +11 -0
  25. data/lib/onebox/engine/kinomap_onebox.rb +27 -0
  26. data/lib/onebox/engine/nfb_onebox.rb +5 -2
  27. data/lib/onebox/engine/open_graph.rb +1 -1
  28. data/lib/onebox/engine/qik_onebox.rb +4 -2
  29. data/lib/onebox/engine/revision3_onebox.rb +3 -2
  30. data/lib/onebox/engine/slideshare_onebox.rb +4 -2
  31. data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
  32. data/lib/onebox/engine/spotify_onebox.rb +27 -0
  33. data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
  34. data/lib/onebox/engine/ted_onebox.rb +5 -2
  35. data/lib/onebox/engine/twitter_onebox.rb +31 -0
  36. data/lib/onebox/engine/viddler_onebox.rb +5 -3
  37. data/lib/onebox/engine/vimeo_onebox.rb +3 -2
  38. data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
  39. data/lib/onebox/engine/yfrog_onebox.rb +5 -2
  40. data/lib/onebox/version.rb +1 -1
  41. data/lib/onebox/view.rb +21 -0
  42. data/onebox.gemspec +1 -1
  43. data/spec/fixtures/githubblob.response +922 -0
  44. data/spec/fixtures/githubcommit.response +87 -0
  45. data/spec/fixtures/githubgist.response +468 -0
  46. data/spec/fixtures/githubpullrequest.response +216 -0
  47. data/spec/fixtures/imguralbum.response +941 -0
  48. data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
  49. data/spec/fixtures/itunes.response +402 -0
  50. data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
  51. data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
  52. data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
  53. data/spec/fixtures/spotify.response +250 -0
  54. data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
  55. data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
  56. data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
  57. data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
  58. data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
  59. data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
  60. data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
  61. data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
  62. data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
  63. data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
  64. data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
  65. data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
  66. data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
  67. data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
  68. data/spec/lib/onebox/engine/html_spec.rb +27 -0
  69. data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
  70. data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
  71. data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
  72. data/spec/lib/onebox/engine/json_spec.rb +27 -0
  73. data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
  74. data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
  75. data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
  76. data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
  77. data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
  78. data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
  79. data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
  80. data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
  81. data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
  82. data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
  83. data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
  84. data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
  85. data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
  86. data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
  87. data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
  88. data/spec/lib/onebox/engine_spec.rb +38 -27
  89. data/spec/lib/onebox/preview_spec.rb +3 -1
  90. data/spec/lib/onebox/view_spec.rb +16 -0
  91. data/spec/lib/onebox_spec.rb +1 -1
  92. data/spec/spec_helper.rb +8 -3
  93. data/spec/support/html_spec_helper.rb +1 -1
  94. data/templates/_layout.mustache +4 -0
  95. data/templates/amazon.mustache +5 -0
  96. data/templates/bliptv.mustache +5 -0
  97. data/templates/clikthrough.mustache +4 -0
  98. data/templates/collegehumor.mustache +5 -0
  99. data/templates/dailymotion.mustache +5 -0
  100. data/templates/dotsub.mustache +5 -0
  101. data/templates/example.mustache +2 -0
  102. data/templates/flickr.mustache +4 -0
  103. data/templates/funnyordie.mustache +6 -0
  104. data/templates/githubblob.mustache +5 -0
  105. data/templates/githubcommit.mustache +11 -0
  106. data/templates/githubgist.mustache +3 -0
  107. data/templates/githubpullrequest.mustache +14 -0
  108. data/templates/hulu.mustache +6 -0
  109. data/templates/imgurimage.mustache +3 -0
  110. data/templates/itunes.mustache +4 -0
  111. data/templates/kinomap.mustache +5 -0
  112. data/templates/nfb.mustache +5 -0
  113. data/templates/qik.mustache +4 -0
  114. data/templates/revision3.mustache +5 -0
  115. data/templates/slideshare.mustache +4 -0
  116. data/templates/soundcloud.mustache +5 -0
  117. data/templates/spotify.mustache +4 -0
  118. data/templates/stackexchange.mustache +3 -0
  119. data/templates/ted.mustache +5 -0
  120. data/templates/twitter.mustache +7 -0
  121. data/templates/viddler.mustache +5 -0
  122. data/templates/vimeo.mustache +5 -0
  123. data/templates/wikipedia.mustache +4 -0
  124. data/templates/yfrog.mustache +4 -0
  125. metadata +139 -90
  126. data/spec/fixtures/apple.response +0 -391
  127. data/spec/fixtures/clickthrough.response +0 -1472
  128. data/spec/fixtures/gist.response +0 -282
  129. data/spec/fixtures/github_blob.response +0 -706
  130. data/spec/fixtures/github_commit.response +0 -881
  131. data/spec/fixtures/github_pullrequest.response +0 -1619
  132. data/spec/lib/onebox/engine/example_spec.rb +0 -18
  133. data/templates/amazon.handlebars +0 -9
  134. data/templates/bliptv.handlebars +0 -10
  135. data/templates/clickthrough.handlebars +0 -8
  136. data/templates/clikthrough.handlebars +0 -8
  137. data/templates/collegehumor.handlebars +0 -9
  138. data/templates/dailymotion.handlebars +0 -9
  139. data/templates/dotsub.handlebars +0 -9
  140. data/templates/flickr.handlebars +0 -8
  141. data/templates/funnyordie.handlebars +0 -9
  142. data/templates/hulu.handlebars +0 -9
  143. data/templates/nfb.handlebars +0 -8
  144. data/templates/qik.handlebars +0 -7
  145. data/templates/revision3.handlebars +0 -9
  146. data/templates/slideshare.handlebars +0 -8
  147. data/templates/soundcloud.handlebars +0 -9
  148. data/templates/stackexchange.handlebars +0 -7
  149. data/templates/ted.handlebars +0 -8
  150. data/templates/viddler.handlebars +0 -9
  151. data/templates/vimeo.handlebars +0 -9
  152. data/templates/wikipedia.handlebars +0 -8
  153. data/templates/yfrog.handlebars +0 -8
@@ -1,391 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
- <html prefix="og: http://ogp.me/ns#" xmlns="http://www.apple.com/itms/" lang="en">
3
- <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="keywords" content="Minecraft – Pocket Edition Lite, Mojang, Games, Simulation, ios apps, app, appstore, app store, iphone, ipad, ipod touch, itouch, itunes" /><meta name="description" content="Read reviews, get customer ratings, see screenshots, and learn more about Minecraft – Pocket Edition Lite on the App Store. Download Minecraft – Pocket Edition Lite and enjoy it on your iPhone, iPad, and iPod touch." /><meta content="Minecraft – Pocket Edition Lite" property="og:title" /><meta content="Get Minecraft – Pocket Edition Lite on the App Store. See screenshots and ratings, and read customer reviews." property="og:description" /><meta content="App Store" property="og:site_name" /><meta content="http://a4.mzstatic.com/us/r1000/087/Purple/99/2f/dd/mzl.erzwvjsi.png" property="og:image" /><meta content="image/png" property="og:image:type" />
5
- <link rel="canonical" href="https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8" />
6
- <title>Minecraft – Pocket Edition Lite for iPhone, iPod touch, and iPad on the iTunes App Store</title>
7
- <script>
8
- if (!window.its) {
9
- window.its = {};
10
- }
11
- its.markupLoadStartTime = new Date().getTime();
12
- if (!window.onerror) window.onerror = function(message, url, lineNumber) {
13
- if (!window._earlyOnerrorException) {
14
- window._earlyOnerrorException = {message: message,
15
- url: url,
16
- lineNumber: lineNumber};
17
- }
18
- };
19
- </script>
20
- <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/F107/web-storefront-base.css" />
21
- <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/ht^mlResources/F107/web-storefront-preview.css" />
22
- <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/frameworks-primaryinit01.js"></script>
23
- <script type="text/javascript" charset="utf-8">its.serverData={"pageData": {"BUY_PARAM_PRICETYPE": "STDQ","basePrice": 0,"isFree": true,"volumePrice": 0,"basePriceForDisplay": "Free","inflectionValue": 1,"productAdamId": "479651754","productType": "C","BUY_PRODUCT_URL": "https://itunes.apple.com/WebObjects/MZFinance.woa/wa/volumeBuyProduct?cc=us","jsonSearchUrl": "https://itunes.apple.com/us/search","jsonLookupUrl": "https://itunes.apple.com/us/lookup"},"constants": {"IXDisplayableKind": {"Song": {"id": 1,"cssClasses": ["song","music"]},"Album": {"id": 2,"cssClasses": ["album","music"]},"Book": {"id": 3,"cssClasses": ["audiobook"]},"Podcast": {"id": 4,"cssClasses": ["podcast"]},"MusicVideo": {"id": 5,"cssClasses": ["music-video","music","video"]},"TVEpisode": {"id": 6,"cssClasses": ["tv-episode","tv","video"]},"TVSeason": {"id": 7,"cssClasses": ["tv-season","tv","video"]},"ShortFilm": {"id": 8,"cssClasses": ["short-film","movie","video"]},"Movie": {"id": 9,"cssClasses": ["movie","video"]},"ClassicSoftware": {"id": 10,"cssClasses": ["ipod-game"]},"MobileSoftware": {"id": 11,"cssClasses": ["application"]},"MacSoftware": {"id": 30,"cssClasses": ["application","mac-application"]},"iTunesPass": {"id": 12,"cssClasses": ["itunes-pass","album","music"]},"Booklet": {"id": 13,"cssClasses": ["booklet","music"]},"Mix": {"id": 14,"cssClasses": ["mix","music"]},"PodcastEpisode": {"id": 15,"cssClasses": ["podcast-episode"]},"SoftwareAddOn": {"id": 16,"cssClasses": ["software-add-on","application"]},"iMix": {"id": 17,"cssClasses": ["imix","music"]},"ClassicSoftwarePackage": {"id": 18,"cssClasses": ["ipod-game"]},"WeMix": {"id": 19,"cssClasses": ["wemix","music"]},"Artist": {"id": 20,"cssClasses": []},"Ringtone": {"id": 21,"cssClasses": []},"RingtoneAlbum": {"id": 22,"cssClasses": []},"PreorderAlbum": {"id": 23,"cssClasses": ["album","music"]},"MovieBundle": {"id": 24,"cssClasses": ["bundle","movie","video"]},"EBook": {"id": 25,"cssClasses": ["ebook"]},"Concert": {"id": 26,"cssClasses": []},"RichPost": {"id": 29,"cssClasses": []},"SocialPerson": {"id": 27,"cssClasses": []},"SocialArtist": {"id": 28,"cssClasses": []},"Tone": {"id": 31,"cssClasses": []},"ToneAlbum": {"id": 32,"cssClasses": []},"TheyMix": {"id": 33,"cssClasses": []},"Course": {"id": 34,"cssClasses": ["course","itunes-u"]},"MetaEBook": {"id": 35,"cssClasses": ["ebook"]},"ApplePubEBook": {"id": 36,"cssClasses": ["ebook"]},"ApplePubTextbook": {"id": 37,"cssClasses": ["ebook"]}},"Urls": {"upgradeITunesUrl": "http://www.apple.com/itunes/download/","upgradeSafariUrl": "http://www.apple.com/safari/download/"},"MZMediaType": {"Music": {"id": 1},"Podcasts": {"id": 2},"Audiobooks": {"id": 3},"TVShows": {"id": 4},"MusicVideos": {"id": 5},"Movies": {"id": 6},"ClassicSoftware": {"id": 7},"MobileSoftware": {"id": 8},"Ringtones": {"id": 9},"iTunesU": {"id": 10},"EBooks": {"id": 11},"MacSoftware": {"id": 12}},"SFSortOrder": {"Name": {"id": 0},"Featured": {"id": 1},"ReleaseDate": {"id": 2},"Popularity": {"id": 3},"PurchaseDate": {"id": 4},"TopRated": {"id": 5},"ExpirationDate": {"id": 6},"Price": {"id": 7},"ArtistName": {"id": 8},"PlaylistName": {"id": 9},"Duration": {"id": 11},"DiscNumber": {"id": 12},"TrackNumber": {"id": 13},"CmcRecommended": {"id": 10},"AllTimeBestSellers": {"id": 14},"DateAdded": {"id": 15}},"SFCustomComponentCountryCode": "usa"},"properties": {"clientStatsLoadTimeGroup": "4000","MZHtmlResourcesUtil.allowDeferJsLoad": true,"countryCodeIso2a": "us","currencyFormat": "$#,##0.00;$#,##0.00;-$#,##0.00","currencySymbol": "$","currencyThousandSeparator": ",","currencyDecimalSeparator": ".","iTunesUEnrollLink": "","ITSServerEnvironment": "prod","ITSServerInstance": "2126056","ITSResourceRevNum": "F107","resourceUrlPrefix": "https://s.mzstatic.com","ITSLogger.ServerReportingProtocol": "https","ITSLogger.ServerReportingDomain": "metrics.mzstatic.com","ITSLogger.ServerReportingApp": "MZUserXP","ITSLogger.RecordStatsAction": "recordStats","ITSLogger.SenderName": "ITSClient","DynaLoader.allowDynaLoading": true,"itsLoggerQueueProcessingInterval": 10000,"cobaltBundleId": "com.apple.itunesu","getCobaltAppLink": "https://itunes.apple.com/us/app/id490217893","cobaltLearnMore": "https://itunes.apple.com/WebObjects/MZStore.woa/wa/learnMore?about=iTunesUUpgradePage&cc=us&type=2","isCobaltEnabled": true,"isCobaltJavascriptRedirectEnabled": true,"isCobaltUpsellPageEnabled": true,"personalizedButtonsEnabled": true,"SF6.Personalization.isCMAEnabled": true,"SF6.Personalization.isCMSEnabled": true,"SF6.StorePlatform.whitelistParams": ["caller","dsid","id","p"],"metrics": {"metricsUrl": "https://xp.apple.com/WebObjects/MZUserXP.woa/wa/recordMetrics","compoundSeparator": "_","tokenSeparator": "|","postFrequency": 60000,"disabled": false,"sendDisabled": false,"fieldsMap": {"single": {"targetId": ["id","adamId","type","fcId","station-hash"]},"multi": {},"custom": {"impressions": ["id","adamId","station-hash"],"location": ["id","adamId","dataSetId","name","fcKind","kindIds","type","station-hash","core-seed-name"]}},"metricsBase": {"storeFrontHeader": "","language": "1","platformId": "8","platformName": "ItunesPreview","storeFront": "143441","environmentCluster": "ST11","environmentType": "prod"}}}}</script>
24
- <script type="text/javascript" charset="utf-8">
25
- if(typeof(iTSLocalization) == "undefined") { iTSLocalization = new Object(); }
26
- if(typeof(iTSLocalization._strings) == "undefined") { iTSLocalization._strings = new Object(); }
27
- iTSLocalization._strings.base = {"_decimalSeparator":".", "_thousandsSeparator":",", "Js.iTunesStoreError.Message":"We could not complete your request.", "Js.iTunesStoreError.Explanation":"There was an error in the iTunes Store. Please try again later. (@@errorNum@@)", "Js.TextTruncation.More":"More", "More":"More", "Less":"Less", "Js.TextLimit.Remaining":"@@count@@ characters remaining", "Js.Showcase.Next":"Next Item", "Js.InlineReview.1":"hate it", "Js.InlineReview.2":"don't like it", "Js.InlineReview.3":"it's ok", "Js.InlineReview.4":"it's good", "Js.InlineReview.5":"it's great", "Js.CreateAccount":"Create Apple ID", "Js.InlineReview.SigninTitle":"Sign in to write a review.", "Js.InlineReview.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineRating.SigninTitle":"Sign in to rate this item.", "Js.InlineRating.SigninMessage":"Sign in to continue.", "Js.ReportAConcern.SigninTitle":"Sign in to report a concern.", "Js.ReportAConcern.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.TellAFriend.SigninTitle":"Sign in to tell a friend.", "Js.TellAFriend.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineReview.RateThis":"Rate this", "Js.InlineReview.ClickToRate":"Click to rate", "Js.InlineReview.Thanks":"Thanks!", "Js.InlineReview.Error":"Error", "Js.Pagination.PageNumber":"Page @@num@@", "Js.Pagination.PageNumberTitle":"page @@num@@", "Js.Pagination.PreviousPage":"Previous Page", "Js.Pagination.NextPage":"Next Page", "Js.Pagination.Next":"Next", "Js.Pagination.Back":"Back", "Js.Pagination.DisabledButtonText":"disabled @@button_text@@", "Js.QuickView.Unavailable.Title":"Quick View is currently unavailable for this item.", "Js.QuickView.Unavailable.Text":"Please try again later.", "Js.Search.HintsTitle":"Suggestions", "Js.Wishlist.RemoveTooltip":"Remove from Wish List", "Js.MyAlerts.ConfirmEmailSignUp.Message":"Are you sure you want to receive email alerts?", "Js.MyAlerts.ConfirmEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.CancelEmailSignUp.Message":"Are you sure you want to stop receiving email alerts?", "Js.MyAlerts.CancelEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.GeniusActivationNeeded.Message":"This requires Genius.", "Js.MyAlerts.GeniusActivationNeeded.Explanation":"Alerts based on your library content will not be enabled until you have turned on Genius. To learn more, click Go to Genius.", "Js.MyAlerts.GeniusActivationNeeded.Button":"Go to Genius", "Js.ManageArtistAlerts.UncheckAll.Artists":"Uncheck All Artists", "Js.ManageArtistAlerts.UncheckAll.Actors":"Uncheck All Actors", "Js.ManageArtistAlerts.UncheckAll":"Uncheck All", "Js.ManageArtistAlerts.CheckAll.Artists":"Check All Artists", "Js.ManageArtistAlerts.CheckAll.Actors":"Check All Actors", "Js.ManageArtistAlerts.CheckAll":"Check All", "Js.List.Item":"item", "Js.InlinePreview.PlayPreview":"Play preview of @@title@@", "Js.InlinePreview.StopPreview":"Stop preview of @@title@@", "Js.CNConnections.UserReview.YouLiked":"You Liked", "Js.CNConnections.PeoplePopupMore":"and @@count@@ other@@s@@...", "Js.CNConnections.Confirmed":"Confirmed", "Js.CNConnections.RequestSent":"Request sent", "Js.CNConnections.LoginRequired.Title":"Sign in to access Ping.",
28
- "Js.CNConnections.LoginRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.OptInRequired.Title":"Ping",
29
- "Js.CNConnections.OptInRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.Dialog.Cancel":"Cancel", "Js.CNConnections.Dialog.GetStarted":"Get Started", "CNConnections.Dialog.PrivateUser.IllegalAction.Title":"Private users may not perform this action.", "CNConnections.Dialog.PrivateUser.IllegalAction.Message":"If you would like to perform this action, please change your privacy settings.", "CNConnections.Dialog.PrivateUser.LeakyAction.Title":"Are you sure you want to perform this action?", "CNConnections.Dialog.PrivateUser.LeakyAction.Message":"This action will make your profile photo and name visible to others.", "CNConnections.Dialog.StopFollowing.Title":"Are you sure you want to stop following @@fullName@@?", "CNConnections.Dialog.StopFollowing.Message":"CNConnections.Dialog.StopFollowing.Message", "CNConnections.Dialog.Like.Review.SignIn.Title":"Sign in to like a review.", "CNConnections.Dialog.Like.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.Post.Review.SignIn.Title":"Sign in to post.", "CNConnections.Dialog.Post.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.OptIn.Title":"Ping Will No Longer Be Available as of September 30", "CNConnections.Dialog.OptIn.Message":"Liking a review requires Ping, and we are no longer accepting new members.", "CNConnections.Dialog.OptIn.ButtonSubmit":"Learn More", "CNConnections.Dialog.OptIn.ButtonCancel":"Cancel", "CNConnections.Dialog.OptIn.ButtonSignIn":"Sign In", "CNConnections.Upload.UploadErrorHeading":"There is a Problem With Your Upload", "CNConnections.Upload.UploadErrorMessage":"Sorry, there was an error during upload.", "CNConnections.Upload.MaxPhotosErrorMessage":"You can have no more than 20 photos in one post.", "JS.errors.requiredLite":"Please fill in all required fields."}
30
- </script>
31
- <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/web-storefront-base.js"></script>
32
- <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/web-storefront-preview.js"></script>
33
- <link charset="utf-8" href="https://ssl.apple.com/global/nav/styles/navigation.css" id="globalheader-stylesheet" rel="stylesheet" type="text/css" />
34
- </head>
35
- <body onload="detectAndOpenItunes();" class="software geo-us lang-en-us">
36
- <script type="text/javascript">
37
- var searchSection = 'ipoditunes';
38
- var searchCountry = 'us';
39
- var aiRequestsEnabled = true;
40
- var aiDisplaySuggestions = true;
41
- </script>
42
- <script src="https://ssl.apple.com/global/nav/scripts/globalnav.js" type="text/javascript" charset="utf-8"></script>
43
- <nav id="globalheader" class="itunes">
44
- <!--googleoff: all-->
45
- <ul id="globalnav" role="navigation">
46
- <li id="gn-apple"><a href="http://www.apple.com/"><span>Apple</span></a></li>
47
- <li id="gn-store"><a href="http://store.apple.com/"><span>Store</span></a></li>
48
- <li id="gn-mac"><a href="http://www.apple.com/mac/"><span>Mac</span></a></li>
49
- <li id="gn-ipod"><a href="http://www.apple.com/ipod/"><span>iPod</span></a></li>
50
- <li id="gn-iphone"><a href="http://www.apple.com/iphone/"><span>iPhone</span></a></li>
51
- <li id="gn-ipad"><a href="http://www.apple.com/ipad/"><span>iPad</span></a></li>
52
- <li id="gn-itunes"><a href="http://www.apple.com/itunes/"><span>iTunes</span></a></li>
53
- <li id="gn-support" class="gn-last"><a href="http://www.apple.com/support/"><span>Support</span></a></li>
54
- </ul>
55
- <!--googleon: all-->
56
- <div id="globalsearch">
57
- <form action="http://www.apple.com/search/" method="post" class="search" id="g-search"><div class="sp-label">
58
- <label for="sp-searchtext">Search</label>
59
- <input type="text" name="q" id="sp-searchtext" accesskey="s" />
60
- </div></form>
61
- <div id="sp-magnify"><div class="magnify-searchmode"></div><div class="magnify"></div></div>
62
- <div id="sp-results"></div>
63
- </div>
64
- </nav>
65
- <script type="text/javascript">
66
- AC.GlobalNav.Instance = new AC.GlobalNav();
67
- </script>
68
- <div id="productheader" data-hires="true">
69
- <h2><img src="http://ax.phobos.apple.com.edgesuite.net/images/web/itunes_preview/itunespreview_en.png" alt="iTunes" height="32" width="263"></h2>
70
- <ul>
71
- <li id="pn-whatsnew"><a href="http://www.apple.com/itunes/whats-new/">What’s New</a></li>
72
- <li id="pn-whatis"><a href="http://www.apple.com/itunes/what-is/">What is iTunes</a></li>
73
- <li id="pn-charts"><a href="http://www.apple.com/itunes/charts/">iTunes Charts</a></li>
74
- </ul>
75
- </div>
76
- <div id="main">
77
- <div id="itunes-detector">
78
- <div id="launching-itunes">
79
- <div id="status">
80
- <div class="opening-itunes"><span>Opening the iTunes Store.</span><span>If iTunes doesn't open, click the iTunes application icon in your Dock or on your Windows desktop.</span><span class="spinner">Progress Indicator</span></div>
81
- </div>
82
- </div>
83
- <div id="itunes-client-required">
84
- <div class="callout">
85
- <div class="left">iTunes</div>
86
- <h2>iTunes is the world's easiest way to organize and add to your digital media collection.</h2>
87
- <p preview-capable-text="We are unable to find iTunes on your computer. To download the free app Minecraft – Pocket Edition Lite by Mojang, get iTunes now." class="intro has-preview-capable-text">
88
- We are unable to find iTunes on your computer. To download the free app Minecraft – Pocket Edition Lite by Mojang, get iTunes now.
89
- </p>
90
- <div class="download">
91
- <p>Already have iTunes? Click I Have iTunes to open it now.</p>
92
- <a class="i-have-itunes" onclick="its.detect.userOverrideSetItunesInstalled(); its.detect.openItunes(); return true;" href="#">
93
- <img alt="I Have iTunes" src="/images/web/ihaveitunes.png" />
94
- </a>
95
- <a href="#" onclick="javascript:window.location='http://www.apple.com/itunes/affiliates/download/?id=479651754'; return true;"><img alt="Free Download" src="/images/web/freedownload.png" /></a>
96
- </div>
97
- <a class="macpc" href="#">iTunes for Mac + PC</a>
98
- </div>
99
- </div>
100
- </div>
101
- <script type="text/javascript">
102
- deviceDetect();
103
- </script>
104
- <div id="desktopContentBlockId" class='platform-content-block display-block'>
105
- <div id="content">
106
- <div class="padder">
107
- <div id="title" class="intro ">
108
- <div class="left">
109
- <h1>Minecraft – Pocket Edition Lite</h1>
110
- <h2>By Mojang</h2>
111
- </div>
112
- <div class="right">
113
- <a href="https://itunes.apple.com/us/artist/mojang/id479516146" class="view-more">View More By This Developer</a>
114
- </div>
115
- <p>Open iTunes to buy and download apps.</p>
116
- </div>
117
- <div class="center-stack">
118
- <div more-text="More" metrics-loc="Titledbox_Description" class="product-review">
119
- <h4>
120
- Description
121
- </h4>
122
- <p>Imagine it, build it. Create worlds on the go with Minecraft - Pocket Edition<br /><br />This is the Lite version of Minecraft - Pocket Edition. Minecraft - Pocket Edition allows you to build on the go. Use blocks to create masterpieces as you travel, hangout with friends, sit at the park, the possibilities are endless. Move beyond the limits of your computer and play Minecraft everywhere you go.<br /><br />Limitations of the Lite version<br />* The world is not saved between sessions<br />* Multiplayer worlds can not be copied to your phone<br />* Only 18 of the 36 different blocks are available</p>
123
- </div>
124
- <div class="app-links"><a rel="nofollow" target="_blank" href="http://www.minecraft.net" class="see-all">Minecraft – Pocket Edition Lite Support</a></div>
125
- <div more-text="More" metrics-loc="Titledbox_What&#39;s New in Version 0.2.1" class="product-review">
126
- <h4>
127
- What's New in Version 0.2.1
128
- </h4>
129
- <p>Minor version 0.2.1 (new controls!)<br />+ New optional control scheme; "split touch controls"<br />+ Added pigs to survival mode<br />+ Flying is changed; ascend/descend by sliding from the center button to the up/down button<br />+ More inventory selection slots<br />+ Bug fixes; dark tree trunk was impossible to pick up, invisible fences, resource items in the world were always bright, pixelated destruction feedback circle</p>
130
- </div>
131
- <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large screenshots">
132
- <div class="title">
133
- <h2>Screenshots</h2>
134
- <div class="pill">
135
- <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPhone</a>
136
- <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPad</a>
137
- </div>
138
- <a metrics-loc="Seeall" href="" class="see-all"><span></span></a>
139
- </div>
140
- <div class="toggle">
141
- <div metrics-loc="iPhone" num-items="3" class="content iphone-screen-shots"><div><div class="lockup"><img alt="iPhone Screenshot 1" class="landscape" src="http://a2.mzstatic.com/us/r1000/065/Purple/66/56/d1/mzl.nlcdenrl.320x480-75.jpg" /></div><div class="lockup"><img alt="iPhone Screenshot 2" class="landscape" src="http://a2.mzstatic.com/us/r1000/089/Purple/90/4e/9f/mzl.nresztpb.320x480-75.jpg" /></div><div class="lockup"><img alt="iPhone Screenshot 3" class="landscape" src="http://a1.mzstatic.com/us/r1000/070/Purple/bb/dc/5c/mzl.ufuvkbwe.320x480-75.jpg" /></div></div></div><div metrics-loc="iPad" num-items="3" class="content ipad-screen-shots"><div><div class="lockup"><img alt="iPad Screenshot 1" class="landscape" src="http://a4.mzstatic.com/us/r1000/106/Purple/12/3d/d0/mzl.rzukvhhg.480x480-75.jpg" /></div><div class="lockup"><img alt="iPad Screenshot 2" class="landscape" src="http://a2.mzstatic.com/us/r1000/120/Purple/ca/ca/d7/mzl.itrqspav.480x480-75.jpg" /></div><div class="lockup"><img alt="iPad Screenshot 3" class="landscape" src="http://a5.mzstatic.com/us/r1000/118/Purple/49/2f/83/mzl.zkdizava.480x480-75.jpg" /></div></div></div>
142
- </div>
143
- </div>
144
- <div class="customer-reviews">
145
- <h4>Customer Reviews</h4>
146
- <div more-text="More" class="customer-review">
147
- <h5>
148
- <span class="customerReviewTitle">Improving</span>
149
- <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
150
- </h5>
151
- <span class="user-info">by
152
- Taitai76
153
- </span>
154
- <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
155
- Pleas add:<br/>More enmays like creepers endermen and all<br/><br/>Let us craft so we make our own pickaxes wepons and tools it the whole reason its called mine CRAFT<br/><br/>and finally add more animles to tame and all.<br/><br/>Please update all these improvments
156
- </p>
157
- </div>
158
- <div more-text="More" class="customer-review">
159
- <h5>
160
- <span class="customerReviewTitle">Cool!</span>
161
- <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
162
- </h5>
163
- <span class="user-info">by
164
- Robertobobbym
165
- </span>
166
- <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
167
- Can you believe it? It's minecraft for mobile phones! Slowly becoming just like the computer one, updates are being made, this is so awesome!<br/><br/>Also, did anyone notice the 3D sound system? I did, so cool :3<br/><br/>PIGS! :D
168
- </p>
169
- </div>
170
- <div more-text="More" class="customer-review">
171
- <h5>
172
- <span class="customerReviewTitle">No crafting?</span>
173
- <div class='rating' role='img' tabindex='-1' aria-label='4 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div></div>
174
- </h5>
175
- <span class="user-info">by
176
- Kevin Luxon
177
- </span>
178
- <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
179
- It's a great game but, what is minecraft where you cannot craft stuff? I am not happy without this feature.
180
- </p>
181
- </div>
182
- </div>
183
- <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large">
184
- <div class="title">
185
- <h2>Customers Also Bought</h2>
186
- </div>
187
- <div num-items="5" class="content"><div>
188
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="425652036" preview-artist="Geek Beach" aria-label="Dune Rider" preview-title="Dune Rider" class="lockup small application">
189
- <a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Dune Rider" class="artwork" src="http://a1.mzstatic.com/us/r1000/117/Purple/v4/cd/91/bd/cd91bd60-1227-ce35-51fe-872d00b73b33/mzl.uthbtbmn.100x100-75.jpg" /><span class="mask"></span></div></a>
190
- <div class="lockup-info">
191
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="name">Dune Rider</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
192
- </div>
193
- </div>
194
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="408257810" preview-artist="Abraham Stolk" aria-label="the little crane that could" preview-title="the little crane that could" class="lockup small application">
195
- <a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="the little crane that could" class="artwork" src="http://a4.mzstatic.com/us/r1000/087/Purple/v4/c2/94/a1/c294a156-8e31-0da2-3dd1-c9e44fa92dd1/mzl.pjjplxbz.100x100-75.jpg" /><span class="mask"></span></div></a>
196
- <div class="lockup-info">
197
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="name">the little crane that could</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
198
- </div>
199
- </div>
200
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="390364604" preview-artist="Ratrod Studio Inc." aria-label="Drift Mania Championship Gold Lite" preview-title="Drift Mania Championship Gold Lite" class="lockup small application">
201
- <a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Drift Mania Championship Gold Lite" class="artwork" src="http://a5.mzstatic.com/us/r1000/077/Purple/v4/c4/1d/0c/c41d0cbc-662e-5dc4-a401-e053e5360cfc/mzl.qnqeudpa.100x100-75.jpg" /><span class="mask"></span></div></a>
202
- <div class="lockup-info">
203
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="name">Drift Mania Championship Gold Lite</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
204
- </div>
205
- </div>
206
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="294919686" preview-artist="Ezone.com" aria-label="Crazy Snowboard" preview-title="Crazy Snowboard" class="lockup small application">
207
- <a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Crazy Snowboard" class="artwork" src="http://a5.mzstatic.com/us/r1000/100/Purple2/v4/b8/a2/45/b8a24557-ac43-bff3-fb31-539112bcaa8b/mzl.jrptqkzr.100x100-75.jpg" /><span class="mask"></span></div></a>
208
- <div class="lockup-info">
209
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="name">Crazy Snowboard</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
210
- </div>
211
- </div>
212
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="389941080" preview-artist="Logik State" aria-label="Sand Slides" preview-title="Sand Slides" class="lockup small application">
213
- <a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Sand Slides" class="artwork" src="http://a5.mzstatic.com/us/r1000/055/Purple/v4/d4/fc/58/d4fc5869-4170-a47a-e6df-9891619b96a5/V4HttpAssetRepositoryClient-mzm.xqmhkley.png-1988064742115934236.100x100-75.jpg" /><span class="mask"></span></div></a>
214
- <div class="lockup-info">
215
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="name">Sand Slides</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
216
- </div>
217
- </div>
218
- </div></div>
219
- </div>
220
- </div>
221
- <div id="left-stack">
222
- <div rating-software="100,itunes-games" parental-rating="1" class="lockup product application">
223
- <a href="https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8"><div class="artwork"><img width="175" height="175" alt="Minecraft &amp;ndash; Pocket Edition Lite" class="artwork" src="http://a5.mzstatic.com/us/r1000/087/Purple/99/2f/dd/mzl.erzwvjsi.175x175-75.jpg" /><span class="mask"></span></div></a>
224
- <a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a>
225
- <div class="fat-binary-blurb"><span class="fat-binary-badge"></span><span>This app is designed for both iPhone and iPad</span></div><ul class="list"><li><div class="price">Free</div></li><li class="genre"><span class="label">Category: </span><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8">Games</a></li><li class="release-date"><span class="label">Updated: </span>Mar 14, 2012</li><li><span class="label">Version: </span>0.2.1</li><li><span class="label">Size: </span>4.5 MB</li><li class="language"><span class="label">Language: </span>English</li><li><span class="label">Seller: </span>Mojang AB</li><li class="copyright">© Mojang AB</li></ul><div class="app-rating"><a href="https://itunes.apple.com/WebObjects/MZStore.woa/wa/appRatings">Rated 4+</a></div><p><span class="app-requirements">Requirements: </span>Compatible with iPhone, iPod touch, and iPad. Requires iOS 4.3 or later.</p>
226
- </div>
227
- <div class='extra-list customer-ratings'>
228
- <h4>Customer Ratings</h4>
229
- <div>Current Version:</div>
230
- <div class='rating' role='img' tabindex='-1' aria-label='4 stars, 38024 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div><span class="rating-count">38024 Ratings</span>
231
- </div>
232
- <div>All Versions:</div>
233
- <div class='rating' role='img' tabindex='-1' aria-label='4 stars, 44041 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div><span class="rating-count">44041 Ratings</span>
234
- </div>
235
- </div>
236
- <div metrics-loc="Titledbox_More by Mojang" class="extra-list more-by">
237
- <h4>
238
- More by Mojang
239
- </h4>
240
- <ul class="list"><li>
241
- <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="479516143" preview-artist="Mojang" aria-label="Minecraft &ndash; Pocket Edition" preview-title="Minecraft – Pocket Edition" class="lockup small application">
242
- <a href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8" class="artwork-link"><div class="artwork"><img width="75" height="75" alt="Minecraft &#8211; Pocket Edition" class="artwork" src="http://a1.mzstatic.com/us/r1000/014/Purple6/v4/a0/7e/9f/a07e9fe1-497e-cb2a-641a-3851f700790e/V4HttpAssetRepositoryClient-mzl.rqatelgd.png-6330614865619861919.75x75-65.jpg" /><span class="mask"></span></div></a>
243
- <div class="lockup-info">
244
- <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8" class="name">Minecraft – Pocket Edition</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
245
- </div>
246
- </div>
247
- </li></ul>
248
- </div>
249
- </div>
250
- </div>
251
- </div>
252
- </div>
253
- </div>
254
- <object classID="CLSID:D719897A-B07A-4C0C-AEA9-9B663A28DFCB" width="1" height="1" id="iTunesDetectorIE" ></object>
255
- <script type="text/javascript">itms.PageData.itunesDownloadUrl='http://www.apple.com/itunes/affiliates/download/?id=479651754';</script>
256
- <div id="facebook">
257
- <div class="fbfan">
258
- <iframe src="https://www.facebook.com/plugins/likebox.php?id=100484820802&amp;width=230&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:230px; height:63px;" allowTransparency="true"></iframe>
259
- </div>
260
- <div class="fbfan last">
261
- <iframe src="https://www.facebook.com/plugins/likebox.php?id=286893159420&amp;width=250&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:63px;" allowTransparency="true"></iframe>
262
- </div>
263
- <p>Become a fan of the iTunes and App Store pages on Facebook for exclusive offers, the inside scoop on new apps and more.</p>
264
- </div>
265
- <div id="globalfooter">
266
- <div id="breadory">
267
- <ol id="breadcrumbs">
268
- <li class="home"><a href="http://www.apple.com/">Home</a></li>
269
- <li>iTunes</li>
270
- </ol>
271
- <!--googleoff: all-->
272
- <div id="directorynav" class="itunes">
273
- <div id="dn-cola" class="column first">
274
- <h3>iTunes</h3>
275
- <ul>
276
- <li><a href="http://www.apple.com/itunes/download/">Download iTunes</a></li>
277
- <li><a href="http://www.apple.com/itunes/whats-new/">What’s New?</a></li>
278
- <li><a href="http://www.apple.com/itunes/what-is/">What is iTunes?</a></li>
279
- <li><a href="http://www.apple.com/itunes/charts/songs/">iTunes Charts</a></li>
280
- </ul>
281
- </div>
282
- <div id="dn-colb" class="column">
283
- <h3>More iTunes</h3>
284
- <ul>
285
- <li><a href="http://www.apple.com/itunes/digital-music-basics/">Digital Music Basics</a></li>
286
- <li><a href="http://www.apple.com/itunes/gifts/">iTunes Gifts</a></li>
287
- <li><a href="http://www.apple.com/education/itunes-u/">iTunes U</a></li>
288
- <li><a href="http://www.apple.com/support/ipod/">iPod + iTunes Support</a></li>
289
- <li><a href="http://www.apple.com/airplay/">AirPlay</a></li>
290
- <li><a href="http://www.apple.com/accessibility/itunes/vision.html">Accessibility</a></li>
291
- </ul>
292
- </div>
293
- <div id="dn-colc" class="column">
294
- <h3>Working with iTunes</h3>
295
- <ul>
296
- <li><a href="http://www.apple.com/itunes/sellcontent/">Sell Your Content</a></li>
297
- <li><a href="http://www.apple.com/itunes/content-providers/">Content Providers</a></li>
298
- <li><a href="http://www.apple.com/itunes/companies/">Market with iTunes</a></li>
299
- <li><a href="http://www.apple.com/itunes/affiliates/">Join the Affiliate Program</a></li>
300
- <li><a href="http://www.apple.com/itunes/link/">Link to iTunes</a></li>
301
- </ul>
302
- </div>
303
- <div id="dn-cold" class="column last">
304
- <h3>iTunes Store</h3>
305
- <ul>
306
- <li><a href="http://itunes.apple.com/us/browse/">Browse iTunes Store</a></li>
307
- <li><a href="http://itunes.apple.com/us/genre/mobile-software-applications/id36?mt=8">Browse App Store</a></li>
308
- <li><a href="http://itunes.apple.com/us/store">Buy Music Now</a></li>
309
- <li><a href="http://store.apple.com/us/browse/home/giftcards/itunes/gallery">Buy iTunes Gift Cards</a></li>
310
- <li><a href="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage">Redeem iTunes Gift Cards</a></li>
311
- <li><a href="http://www.apple.com/itunes/corporatesales/">iTunes Corporate Sales</a></li>
312
- <li><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewFeature?id=365729306">Free Single of the Week</a></li>
313
- <li><a href=" http://www.apple.com/itunes/inside-itunes/">Inside iTunes</a></li>
314
- </ul>
315
- </div>
316
- <div class="capbottom"></div>
317
- </div>
318
- <!--googleon: all-->
319
- </div><!--/breadory-->
320
- <p class="gf-buy">Shop the <a href="http://store.apple.com/us">Apple Online Store</a> (1-800-MY-APPLE), visit an <a href="http://www.apple.com/retail/">Apple Retail Store</a>, or find a <a href="http://www.apple.com/buy/">reseller</a>.</p>
321
- <ul class="gf-links piped">
322
- <li><a href="http://www.apple.com/about/" class="first">Apple Info</a></li>
323
- <li><a href="http://www.apple.com/sitemap/">Site Map</a></li>
324
- <li><a href="http://www.apple.com/hotnews/">Hot News</a></li>
325
- <li><a href="http://www.apple.com/rss/">RSS Feeds</a></li>
326
- <li><a href="http://www.apple.com/contact/" class="contact_us">Contact Us</a></li>
327
- <li><a href="http://www.apple.com/choose-your-country/" class="choose"><img src="http://images.apple.com/global/elements/flags/22x22/usa.png" alt="Choose your country or region" width="22" height="22" data-hires="true" /></a></li>
328
- </ul>
329
- <div class="gf-sosumi">
330
- <p>Copyright &copy; 2013 Apple Inc. All rights reserved.</p>
331
- <ul class="piped">
332
- <li><a href="http://www.apple.com/legal/internet-services/terms/site.html" class="first">Terms of Use</a></li>
333
- <li><a href="http://www.apple.com/privacy/">Privacy Policy</a></li>
334
- </ul>
335
- </div>
336
- </div><!--/globalfooter-->
337
- <script language="JavaScript" type="text/javascript"><!--
338
- var iTSMetricsCallbackFunction = function() {
339
- ITSMetrics.reportingSuite = "appleitmswww,appleitmsus";
340
- ITSMetrics.omniture = ITSMetrics.createBaselineOmnitureObject();
341
- ITSMetrics.isPageMetricsEnabled=true;
342
- /* Page Metrics */
343
- ITSMetrics.omniture.pageName="SEO-Software-US-Mojang-Minecraft \u2013 Pocket Edition Lite-479651754";
344
- ITSMetrics.omniture.channel="SEO";
345
- ITSMetrics.omniture.prop22="HTML";
346
- ITSMetrics.omniture.eVar22="HTML";
347
- ITSMetrics.omniture.products="Mojang-Minecraft \u2013 Pocket Edition Lite-479651754";
348
- /* User Agent */
349
- var userAgentForMetrics = ITSMetrics.userAgentForMetrics();
350
- ITSMetrics.omniture.prop12 = userAgentForMetrics;
351
- ITSMetrics.omniture.eVar12 = userAgentForMetrics;
352
- // check if Game Center
353
- var gcUserAgent = "GameCenter";
354
- var isGameCenter = userAgentForMetrics.length >= gcUserAgent.length && userAgentForMetrics.substr(0, gcUserAgent.length) == gcUserAgent;
355
- if (isGameCenter) {
356
- // prepend "GameCenter" to page and channel name
357
- if (ITSMetrics.omniture.pageName) ITSMetrics.omniture.pageName = "GameCenter-" + ITSMetrics.omniture.pageName;
358
- if (ITSMetrics.omniture.channel) ITSMetrics.omniture.channel = "GameCenter-" + ITSMetrics.omniture.channel;
359
- }
360
- /* Browser Plugins */
361
- ITSMetrics.shouldTrackBrowserPlugins = false;
362
- /* Pass-thru query params */
363
- ITSMetrics.processQueryParameterInfoInCurrentRequest(ITSMetrics.omniture);
364
- if (ITSMetrics.isPageMetricsEnabled) {
365
- ITSMetrics.emitPagePing = function() {
366
- var s_code=ITSMetrics.omniture.t();
367
- if (s_code) {
368
- var containingDiv = document.createElement('div');
369
- containingDiv.innerHTML = s_code;
370
- document.body.appendChild(containingDiv);
371
- }
372
- };
373
- its.x.addEventListener(window, 'load', function() { window.setTimeout(ITSMetrics.emitPagePing, 1) }, false );
374
- }
375
- };
376
- if (!window["ITSMetrics"]){
377
- iTSDefer.register(function() {
378
- iTSMetricsCallbackFunction();
379
- });
380
- } else {
381
- iTSMetricsCallbackFunction();
382
- }
383
- --></script>
384
- <script>
385
- if (!window.its) {
386
- window.its = {};
387
- }
388
- window.its.markupLoadEndTime = new Date().getTime();
389
- </script>
390
- </body>
391
- </html>
@@ -1,1472 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <head>
4
- <!-- layout: simple -->
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
- <meta http-equiv="Content-Language" content="en" />
7
- <title>Clikthrough - Interactive Video : Keri Hilson - Knock You Down</title>
8
- <meta name="name" itemprop="name" content="Interactive Video : Keri Hilson - Knock You Down" />
9
- <meta name="description" itemprop="description" content="Keri Hilson gets taken down by love once again in this video for &quot;Knock You Down&quot;." />
10
- <meta name="keywords" content="clikthrough, interactive video, clickable video, clik, video platform, ad, advertisement, ad platform, audience engagement, video monetization, future tv, television, video analytics, product placement, branding, product marketing" />
11
-
12
- <base href="http://www.clikthrough.com/" />
13
-
14
- <!-- system links -->
15
- <link rel="canonical" href="http://www.clikthrough.com/theater/video/49/en-US" />
16
- <link rel="icon" type="image/png" href="images/favicon.png" />
17
- <link rel="index" href="http://www.clikthrough.com/sitemap.xml" />
18
- <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Clikthrough" />
19
-
20
-
21
- <link rel="stylesheet" href="http://static2.clikthrough.com/clik-prod/website12/css/sitewide.css" media="all" />
22
- <!--[if lte IE 8 ]><link rel="stylesheet" type="text/css" href="http://static2.clikthrough.com/clik-prod/website12/css/sitewide-ie.css" /><![endif]-->
23
- <!--[if lt IE 7]>
24
- <script type="text/javascript" src="js/ext/pngfix/supersleight-min.js"></script>
25
- <![endif]-->
26
-
27
- <link rel="alternate" type="application/rss+xml" href="http://corporate.clikthrough.com/wp/?feed=rss2" title="Clikthrough News Feed" />
28
- <link rel="alternate" type="application/rss+xml" href="http://www.clikthrough.com/system/rssMedia" title="CoolIris Feed" id="gallery" />
29
-
30
- <!-- EXTENDED META -->
31
- <link rel="alternate" type="application/json+oembed" href="http://www.clikthrough.com/services/oembed/?url=http%3A%2F%2Fwww.clikthrough.com%2Ftheater%2Fvideo%2F49%2Fen-US%26format%3Djson" title="Keri Hilson - Knock You Down" />
32
- <link rel="alternate" type="text/xml+oembed" href="http://www.clikthrough.com/services/oembed/?url=http%3A%2F%2Fwww.clikthrough.com%2Ftheater%2Fvideo%2F49%2Fen-US%26format%3Dxml" title="Keri Hilson - Knock You Down" />
33
- <meta name="title" content="Keri Hilson - Knock You Down"/>
34
- <link rel="image_src" href=""/>
35
- <link rel="video_src" href="http://www.clikthrough.com/clikPlayer.swf?videoId=49&amp;autoPlay=true"/>
36
- <meta name="medium" content="video" />
37
- <meta name="video_height" content="415" />
38
- <meta name="video_width" content="640" />
39
- <meta name="video_type" content="application/x-shockwave-flash" />
40
-
41
- <!-- facebook open graph -->
42
- <meta property="og:title" content="Keri Hilson - Knock You Down"/>
43
- <meta property="og:type" content="video.other"/>
44
- <meta property="og:image" content=""/>
45
- <meta property="og:description" content="Keri Hilson gets taken down by love once again in this video for "Knock You Down"."/>
46
- <!--
47
- <meta property="og:site_name" content="{your_site_name}"/>
48
- <meta property="fb:app_id" content="{your_app_id}"/>
49
- -->
50
-
51
-
52
-
53
- <!-- facebook tags -->
54
- <meta property="fb:admins" content="3313868"/>
55
- <meta property="fb:app_id" content="154419780724"/>
56
-
57
- <script type="text/javascript">
58
- // framebuster
59
- if(self != top)top.location.href=self.location.href;
60
- </script></head>
61
- <body class="oneColFixCtrHdr en-US">
62
- <div id="container">
63
- <div id="header">
64
- <div id="headerBox">
65
- <a href="." id="logoLink"></a>
66
- <div id="pageMessage">
67
- </div>
68
- <div id="userModule">
69
- <a href="http://corporate.clikthrough.com/site/contactUs.php" style="font-size:9px">Clik to Contact Us</a>
70
- </div>
71
-
72
- <ul id="nav">
73
- <li><a class="navItem" id="videos" href="videos/"></a></li>
74
- <li><a class="navItem" id="products" href="products/"></a></li>
75
- <li><a class="navItem" id="artists" href="artists/"></a></li>
76
- <li id="searchInput">
77
- <a class="navItem" id="search" href="search/" onmouseover="if (clik != undefined) {clik.hide('userMenu'); clik.hide('userMenuForgot')}"></a>
78
- <form action="search" method="get">
79
- <div class="inputWrapper searchIcon">
80
- <span class="leftCap" title="Search"></span>
81
- <input type="text" class="inputText" name="search" value=""/>
82
- <span class="rightCap"></span>
83
- </div>
84
- </form>
85
- </li>
86
- </ul>
87
- </div>
88
- <!-- end #header --></div>
89
- <!-- Simple Template -> Page View Start-->
90
- <style type="text/css">
91
- #clikPlayer {
92
- margin-top:20px; margin-left:-75px;
93
- border:0px none;
94
- height:768px;
95
- }
96
- #footer {display:none}
97
- object {outline:none}
98
- </style>
99
- <script type="text/javascript" src="http://static2.clikthrough.com/clik-prod/player/v2_5_0/js/swfobject.js"></script>
100
- <script type="text/javascript">
101
- var flashVars = {
102
- baseURL: 'http://static2.clikthrough.com/clik-prod/player/v2_5_0/',
103
- apiURL: 'http://www.clikthrough.com/ws2.0/ws/',
104
- siteURL: 'http://www.clikthrough.com/',
105
-
106
-
107
- videoId: 49,
108
- config: 'en-US',
109
- flash_name: 'clikPlayer', // used for FB Connect Bridge Plugin
110
-
111
- // next 4 vars used by chat
112
- userName: 'Guest',
113
- userImageURL: 'http://www.clikthrough.com/images/users/_default.png',
114
- chatRoom: 'video1'
115
- }
116
- var params = {
117
- allowFullScreen: 'true',
118
- allowScriptAccess: 'always',
119
- bgcolor: '#000000',
120
- wmode: 'opaque'
121
- }
122
-
123
- params.bgcolor = '#000000';
124
-
125
- swfobject.embedSWF("http://static2.clikthrough.com/clik-prod/player/v2_5_0/CTLoader.swf", "clikPlayer", "1152", "768", "9.0.115", "http://static2.clikthrough.com/clik-prod/player/v2_5_0/expressInstall.swf", flashVars, params,{id: 'clikPlayer', name:'clikPlayer'});
126
- </script>
127
-
128
- <div id="clikPlayer">
129
- <p>In order to view this page you need Flash Player 9+ support!</p>
130
- <p>
131
- <a href="http://www.adobe.com/go/getflashplayer">
132
- <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
133
- </a>
134
- </p>
135
-
136
- <!-- START video_detail -->
137
- <div class="detailSection">
138
- <div class="floatRight" id="rightPanel" style="height:280px">
139
- <div id="aboutBox" class="panel panelWide2">
140
- <!--h2 class="h2Img titleAbout">About Clikthrough</h2-->
141
- <div class="panelBack">
142
- <div id="aboutBox2">
143
-
144
- <div>
145
- <h2>About Clikthrough</h2>
146
-
147
- Clikthrough allows publishers, content creators, and advertisers to create interactive videos and pre-rolls. Clickable video enables consumers and corporations to interact with and harness all data about the products, people, places, and other objects inside of video.
148
-
149
- <br/><br/><br/>
150
- <a href="clikAds/">More information</a><br/>
151
- <!--a href="/ext/downloads/Clikthrough Brochure.pdf">Download Brochure</a><br/-->
152
- <a href="user/contactUs" class="clik-ajax" clik:target="rightPanel" style="">Contact Us</a><br />
153
- <a href="user/contactUs/index/beta" class="clik-ajax" clik:target="rightPanel" style="">Request Beta Access</a><br />
154
-
155
- </div>
156
-
157
-
158
- </div> <!-- end #aboutBox2 -->
159
- </div>
160
- </div> <!-- end .panel #aboutBox -->
161
- </div>
162
- <div id="detailBox" class="videoDetail" itemscope itemtype="http://schema.org/MediaObject">
163
- <div class="title">
164
- <a href="http://static2.clikthrough.com/clik-prod/videos/FLV_MP4/Keri Hilson & Ne-Yo - Knock You Down (feat. Kanye West).flv" itemprop="url">
165
- <h2 itemprop="name">Keri Hilson - Knock You Down</h2>
166
- </a>
167
- </div>
168
-
169
-
170
- <div class="video floatLeft videoDetail-real">
171
- <a href="http://static2.clikthrough.com/clik-prod/videos/FLV_MP4/Keri Hilson & Ne-Yo - Knock You Down (feat. Kanye West).flv" class="thumbnail">
172
- <div class="clikStart"></div>
173
- <img class="thumbnail" src="" alt="Knock You Down video thumbnail" itemprop="image"/>
174
- </a>
175
-
176
-
177
- <!-- BEGIN Module: rating -->
178
- <div class="ratingBox" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
179
- <div class="label">Rating:</div>
180
- <div class="stars" value="58" votes="1" userRating=""
181
- componentId="49" componentType="V">
182
- <div class="starsSelected" style="width: 58%"></div>
183
- </div>
184
- <div class="text"></div>
185
- <div class="clear"></div>
186
- <meta itemprop="ratingValue" content="58" />
187
- <meta itemprop="bestRating" content="100"/>
188
- <meta itemprop="ratingCount" content="1" />
189
- </div>
190
- <!-- END Module: rating -->
191
- <div class="company"><a href="http://www.interscoperecords.com" target="_blank">Interscope Records</a></div>
192
- <!--a href="theater/video/49" class="btnPlayVideo"></a-->
193
-
194
- <br/>
195
- <div class="social" style="height:75px; margin-top:10px">
196
-
197
- <g:plusone size="medium" annotation="inline" ></g:plusone>
198
- <script type="text/javascript">
199
- (function() {
200
- var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
201
- po.src = 'https://apis.google.com/js/plusone.js';
202
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
203
- })();
204
- </script>
205
-
206
- <iframe src="http://www.facebook.com/plugins/like.php?app_id=173968952648714&amp;href&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21"
207
- scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
208
- <br/>
209
-
210
- <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="clikthrough" >Tweet</a>
211
- <!--script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script-->
212
- <script type="text/javascript">
213
- (function() {
214
- var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
215
- po.src = 'http://platform.twitter.com/widgets.js';
216
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
217
- })();
218
- </script>
219
- </div> </div>
220
- <div class="attributes floatLeft">
221
- <div class="attrib" itemprop="director" itemscope itemtype="http://schema.org/Person">
222
- <span class="label">Directors :</span> <span itemprop="name">Chris Robinson</span>
223
- </div>
224
- <div class="attrib"><span class="label">Runtime :</span>
225
- <span itemprop="duration" datetime="T4M45S">4:45</span>
226
- </div>
227
- <div class="attrib"><span class="label">Release Date :</span>
228
- <span itemprop="datePublished" datetime="2009-03-23T00:00:00-05:00"> 03/23/2009</span>
229
- </div>
230
- <div class="attrib"><span class="label">Website :</span>
231
- <a href="http://www.kerihilsonmusic.com/" target="_blank">Keri Hilson</a>
232
- </div>
233
- <div class="attrib"><span class="label">Genre :</span>
234
- <span itemprop="genre">R&amp;B</span>
235
- </div>
236
-
237
- <!-- schema.org/MediaObject meta tags (added 8/2011) -->
238
- <meta itemprop="description" content="Keri Hilson gets taken down by love once again in this video for &quot;Knock You Down&quot;." />
239
- <meta itemprop="embedURL" content="http://www.clikthrough.com/clikPlayer.swf?autoPlay=true&videoId=49"/>
240
- <meta itemprop="playerType" content="Flash" />
241
- <meta itemprop="requiresSubscription" content="no"/>
242
- <meta itemprop="uploadDate" content="2009-07-16T16:49:38-05:00"/>
243
-
244
-
245
-
246
-
247
- <div class="favorite">
248
- <a href="user/interact/addFavorite/V/49" class="clik-ajax">
249
- <span class="icon iconFavorite" title="Favorite"></span>
250
- <span class="label" onclick="toggleAddRemove(this)">Add To Favorites</span>
251
- </a>
252
- <script type="text/javascript">
253
- componentType = 'V';
254
- componentId = '49';
255
- componentName = 'Knock You Down';
256
-
257
- function toggleAddRemove (elm) {
258
- var elmIcon = dojo.query('.icon', elm.parentNode)[0];
259
- if (elm.innerHTML == 'Add To Favorites') {
260
- elm.innerHTML = 'Remove From Favorites';
261
- elm.parentNode.href = elm.parentNode.href.replace('removeFavorite', 'addFavorite');
262
- elmIcon.className = elmIcon.className.replace('iconFavorite','iconTrash');
263
- } else {
264
- elm.innerHTML = 'Add To Favorites';
265
- elm.parentNode.href = elm.parentNode.href.replace('addFavorite', 'removeFavorite');
266
- elmIcon.className = elmIcon.className.replace('iconTrash', 'iconFavorite');
267
- }
268
- }
269
- </script>
270
- </div>
271
-
272
- <div class="email">
273
- <a href="user/sendEmail/index/V/49" class="clik-ajax" clik:target="rightPanel">
274
- <span class="icon iconEmail" title="Email"></span>
275
- <span class="label">Email a friend</span>
276
- </a>
277
- </div>
278
- <div class="share">
279
- <a href="user/share/link/V/49" class="clik-ajax" clik:target="rightPanel">
280
- <span class="icon iconShare" title="Share"></span>
281
- <span class="label">Share with a Friend</span>
282
- </a>
283
- </div>
284
- <div class="embed">
285
- <a href="user/embed/video/49" class="clik-ajax" clik:target="rightPanel">
286
- <span class="icon iconEmbed" title="Embed"></span>
287
- <span class="label">Embed Video Code</span>
288
- </a>
289
- </div>
290
-
291
- </div>
292
- <div class="clear">&#160;</div>
293
-
294
-
295
- </div>
296
-
297
-
298
- </div><!-- end #detailSection -->
299
-
300
- <div class="detailSection" style="padding-right:0px; padding-left:17px; background-image:none">
301
- <div id="productsBox">
302
-
303
- <div class="productBox realProductBox" name="products">
304
- <h2 id="products" class="h2Big titleProducts">Products</h2>
305
- <div class="counter">( Showing 41 of 41 )</div>
306
-
307
- <div class="categoryFilter">
308
- <select id="prodCategoryFilter" class="rounded" onchange="clik2.website.showProductsCategory(this.options[this.selectedIndex].value)">
309
- <option value="-1">Filter by Category</option>
310
- <option value="-1" count="41">View All (41)</option>
311
- <option value="1" count="1">Cars &amp; Vehicles (1)</option>
312
- <option value="46" count="28">Clothing &amp; Shoes (28)</option>
313
- <option value="103" count="1">Electronics (1)</option>
314
- <option value="166" count="1">Home (1)</option>
315
- <option value="153" count="10">Jewelry (10)</option>
316
- </select>
317
- </div>
318
- <script type="text/javascript">
319
- clik2 = {};
320
- clik2.website = {};
321
- clik2.website.showProductsCategory = function(categoryId) {
322
- var products = '.product[categoryId]'; // can't do the non-selected ones bug in IE
323
- var searchStr = '.product[categoryId='+ categoryId + ']';
324
-
325
- if (categoryId == -1) {
326
- dojo.query(products).style('display','block');
327
- } else {
328
- dojo.query(products).style('display','none');
329
- dojo.query(searchStr).style('display','block');
330
- }
331
- dojo.query('.product[@categoryId=46]').style('display','none');
332
-
333
- //alert(dojo.attr(products[0],'categoryId'));
334
- }
335
- </script>
336
-
337
- <div class="clear"></div>
338
-
339
- <div class="product clik-component" id="productBox_323" productId="323" categoryId="103"
340
- componentId="323" componentType="P" itemscope itemtype="http://schema.org/Product">
341
- <a href="products/detail/323" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
342
- <div class="panel1">
343
- <img src="http://static1.clikthrough.com/clik-prod/images/products/NleKhHhmNVzgPxB3WJFZx7yzSajpG3MQeT9UVi/Sw-ofdXh6ICvrqQsIKmY7kLKjbGT6VUYRy8h.jpg" alt="Monster Cable - Beats By Dr Dre" itemprop="image"/>
344
- </div>
345
- <div class="panel2">
346
- <div class="title">
347
- <span class="clikOrange">Monster Cable</span>
348
- <span class="white" itemprop="name">Beats By Dr Dre</span>
349
- </div>
350
- </div><!-- end .panel2 -->
351
- </a>
352
- <meta itemprop="description" content="Experience the music just the way the artist wants you to. These high definition headphones are precision engineered to reveal the full sound of toda"/>
353
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
354
- <meta itemprop="name" content="Monster Cable"/>
355
- <meta itemprop="url" content="http://www.monstercable.com/default.asp"/>
356
- </span>
357
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
358
- <meta itemprop="name" content="Monster Cable"/>
359
- <meta itemprop="url" content="http://www.monstercable.com/productdisplay.asp?pin=3808"/>
360
- </span>
361
-
362
- </meta>
363
- </div>
364
-
365
- <div class="product clik-component" id="productBox_920" productId="920" categoryId="46"
366
- componentId="920" componentType="P" itemscope itemtype="http://schema.org/Product">
367
- <a href="products/detail/920" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
368
- <div class="panel1">
369
- <img src="http://static1.clikthrough.com/clik-prod/images/products/dCZknQFZLcrFAyDWgH5a3YOKtZAmQNagVU3dR39mEgFMROv/Sw-18r1857gKNlbE29VUNpjvk6VNT0DLQMReaPT.jpg" alt="Gucci - Striped Dress Shirt" itemprop="image"/>
370
- </div>
371
- <div class="panel2">
372
- <div class="title">
373
- <span class="clikOrange">Gucci</span>
374
- <span class="white" itemprop="name">Striped Dress Shirt</span>
375
- </div>
376
- </div><!-- end .panel2 -->
377
- </a>
378
- <meta itemprop="description" content="Be the Man! This sophisticated long sleeve fitted shirt has button front and barrel cuffs. Old school glamour stripe cotton with white collar is back"/>
379
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
380
- <meta itemprop="name" content="Gucci"/>
381
- <meta itemprop="url" content="http://www.gucci.com/"/>
382
- </span>
383
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
384
- <meta itemprop="name" content="Gucci"/>
385
- <meta itemprop="url" content="http://www.gucci.com/"/>
386
- </span>
387
-
388
- </meta>
389
- </div>
390
-
391
- <div class="product clik-component" id="productBox_1082" productId="1082" categoryId="46"
392
- componentId="1082" componentType="P" itemscope itemtype="http://schema.org/Product">
393
- <a href="products/detail/1082" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
394
- <div class="panel1">
395
- <img src="http://static1.clikthrough.com/clik-prod/images/products/2FmMASql1bgCCxmZ8JgQW2ks6vEV/Sw-63jbtGOhvntfePYk5jhNYaLb4.jpg" alt="Nike - Air Yeezy" itemprop="image"/>
396
- </div>
397
- <div class="panel2">
398
- <div class="title">
399
- <span class="clikOrange">Nike</span>
400
- <span class="white" itemprop="name">Air Yeezy</span>
401
- </div>
402
- </div><!-- end .panel2 -->
403
- </a>
404
- <meta itemprop="description" content="Nike Sportswear and Kanye West present the Nike Air Yeezy. The shoe, which takes West's nickname Yeezy, draws upon the innovations from Nike's rich sp"/>
405
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
406
- <meta itemprop="name" content="Nike"/>
407
- <meta itemprop="url" content="http://www.nikebiz.com"/>
408
- </span>
409
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
410
- <meta itemprop="name" content="Nike"/>
411
- <meta itemprop="url" content="http://www.nike.com/nikeos/p/sportswear/en_US/view_post?country=US&amp;lang_locale=en_US&amp;blog=en_US&amp;post=en_US/2009/04/02/nike-air-yeezy"/>
412
- </span>
413
-
414
- </meta>
415
- </div>
416
-
417
- <div class="product clik-component" id="productBox_1417" productId="1417" categoryId="46"
418
- componentId="1417" componentType="P" itemscope itemtype="http://schema.org/Product">
419
- <a href="products/detail/1417" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
420
- <div class="panel1">
421
- <img src="http://static1.clikthrough.com/clik-prod/images/products/ZfRqth2YWkBy7ztSNSugEDxoXWMApHt0r/Sw-bH3P4XQBPj5eY5CDMyjBDfH8zQGtF6SZlqqn3Qx8.jpg" alt="American Apparel - Baby Rib Halter" itemprop="image"/>
422
- </div>
423
- <div class="panel2">
424
- <div class="title">
425
- <span class="clikOrange">American Apparel</span>
426
- <span class="white" itemprop="name">Baby Rib Halter</span>
427
- </div>
428
- </div><!-- end .panel2 -->
429
- </a>
430
- <meta itemprop="description" content="A take on our popular Baby Rib Spaghetti Tank, now with a halter neckline. 100% Baby Rib cotton construction with halter spaghetti ties. A form-fittin"/>
431
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
432
- <meta itemprop="name" content="American Apparel"/>
433
- <meta itemprop="url" content="http://americanapparel.net/"/>
434
- </span>
435
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
436
- <meta itemprop="name" content="American Apparel"/>
437
- <meta itemprop="url" content="http://store.americanapparel.net/4391.html#i"/>
438
- </span>
439
-
440
- </meta>
441
- </div>
442
-
443
- <div class="product clik-component" id="productBox_1419" productId="1419" categoryId="46"
444
- componentId="1419" componentType="P" itemscope itemtype="http://schema.org/Product">
445
- <a href="products/detail/1419" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
446
- <div class="panel1">
447
- <img src="http://static1.clikthrough.com/clik-prod/images/products/X7dhsH4t5xu7TKcCoTfMZInnajJMG2fCbVLm/Sw-AicC26DVq03gyB3iZJWpDCfzs.jpg" alt="VPL - Vent Swingers Shorts" itemprop="image"/>
448
- </div>
449
- <div class="panel2">
450
- <div class="title">
451
- <span class="clikOrange">VPL</span>
452
- <span class="white" itemprop="name">Vent Swingers Shorts</span>
453
- </div>
454
- </div><!-- end .panel2 -->
455
- </a>
456
- <meta itemprop="description" content="Poly/cotton blend shorts with a slight iridescence with sheer silver inset at front. Meant as sleep shorts but can be worn with tap shorts underneath "/>
457
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
458
- <meta itemprop="name" content="VPL"/>
459
- <meta itemprop="url" content="http://www.vplnyc.com/"/>
460
- </span>
461
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
462
- <meta itemprop="name" content="VPL"/>
463
- <meta itemprop="url" content="http://www.vplnyc.com/"/>
464
- </span>
465
-
466
- </meta>
467
- </div>
468
-
469
- <div class="product clik-component" id="productBox_1421" productId="1421" categoryId="153"
470
- componentId="1421" componentType="P" itemscope itemtype="http://schema.org/Product">
471
- <a href="products/detail/1421" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
472
- <div class="panel1">
473
- <img src="http://static1.clikthrough.com/clik-prod/images/products/O0UZSNVhjlqQm7UPdcn79M7l5bgcBdN9s4DG9V7M/Sw-UY8zoIeS1OUTLNbUdqP6r6vGZvCeGdSpOWF.jpg" alt="CC SKYE - Power Ring" itemprop="image"/>
474
- </div>
475
- <div class="panel2">
476
- <div class="title">
477
- <span class="clikOrange">CC SKYE</span>
478
- <span class="white" itemprop="name">Power Ring</span>
479
- </div>
480
- </div><!-- end .panel2 -->
481
- </a>
482
- <meta itemprop="description" content="Hexagon black enamel and rhinestone ring fashioned in an art deco style design. Look glamorous in this old Hollywood 1920's ornate cocktail ring."/>
483
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
484
- <meta itemprop="name" content="CC SKYE"/>
485
- <meta itemprop="url" content=" http://www.ccskye.com/"/>
486
- </span>
487
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
488
- <meta itemprop="name" content="CC SKYE"/>
489
- <meta itemprop="url" content="http://www.ccskye.com/shop.php?id=471&amp;pag=1"/>
490
- </span>
491
-
492
- </meta>
493
- </div>
494
-
495
- <div class="product clik-component" id="productBox_1422" productId="1422" categoryId="46"
496
- componentId="1422" componentType="P" itemscope itemtype="http://schema.org/Product">
497
- <a href="products/detail/1422" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
498
- <div class="panel1">
499
- <img src="http://static1.clikthrough.com/clik-prod/images/products/YQ3uLbcmVx4EUfR2nTJ5QDVMYoVcsKsUkEbSRavvBFPG/Sw-VMd1rYnZ9YPHPVO8hLzcsXu1pSmfJmhHMTt8x7iljjEQLq.jpg" alt="Super - Flat Top Sunglasses" itemprop="image"/>
500
- </div>
501
- <div class="panel2">
502
- <div class="title">
503
- <span class="clikOrange">Super</span>
504
- <span class="white" itemprop="name">Flat Top Sunglasses</span>
505
- </div>
506
- </div><!-- end .panel2 -->
507
- </a>
508
- <meta itemprop="description" content="Super Flat Top is a clean, simple and essential modern design twist on an old pair of classics. High quality sunglasses that are hand-made in Italy. "/>
509
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
510
- <meta itemprop="name" content="Super"/>
511
- <meta itemprop="url" content="http://retrosuperfuture.com"/>
512
- </span>
513
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
514
- <meta itemprop="name" content="Super"/>
515
- <meta itemprop="url" content="http://retrosuperfuture.com/super/collection/flat-top/92-FTGOLD-AW08_09-2A020203.jpg.php"/>
516
- </span>
517
-
518
- </meta>
519
- </div>
520
-
521
- <div class="product clik-component" id="productBox_1423" productId="1423" categoryId="46"
522
- componentId="1423" componentType="P" itemscope itemtype="http://schema.org/Product">
523
- <a href="products/detail/1423" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
524
- <div class="panel1">
525
- <img src="http://static1.clikthrough.com/clik-prod/images/products/Dr6FFFj2xVRTJjqQD00RI8Gb1DiChAEqJgvqoEu6n/Sw-gN6MFAe9Pf4qIjImdpU62istoxaOgS.jpg" alt="J. Lindeberg - Leather Biker Jacket" itemprop="image"/>
526
- </div>
527
- <div class="panel2">
528
- <div class="title">
529
- <span class="clikOrange">J. Lindeberg</span>
530
- <span class="white" itemprop="name">Leather Biker Jacket</span>
531
- </div>
532
- </div><!-- end .panel2 -->
533
- </a>
534
- <meta itemprop="description" content="Slim cut fine leather biker jacket from J. Lindeberg. Asymmetric zip-through front and long sleeves for a lean look. A classic biker collar and twin z"/>
535
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
536
- <meta itemprop="name" content="J. Lindeberg"/>
537
- <meta itemprop="url" content="http://www.jlindeberg.com"/>
538
- </span>
539
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
540
- <meta itemprop="name" content="J. Lindeberg"/>
541
- <meta itemprop="url" content="http://www.jlindeberg.com/"/>
542
- </span>
543
-
544
- </meta>
545
- </div>
546
-
547
- <div class="product clik-component" id="productBox_1424" productId="1424" categoryId="153"
548
- componentId="1424" componentType="P" itemscope itemtype="http://schema.org/Product">
549
- <a href="products/detail/1424" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
550
- <div class="panel1">
551
- <img src="http://static1.clikthrough.com/clik-prod/images/products/IzTThK0tRKsUEluGWgXuqSk3ACIjlJ0eNPqA3XqBO/Sw-S5xWTvt2pSLORh9vHq7aHq6S0GUyCzpN7rqdz6P8nlL9kXdui.jpg" alt="Dr. Strange - Brass Bullet Necklace" itemprop="image"/>
552
- </div>
553
- <div class="panel2">
554
- <div class="title">
555
- <span class="clikOrange">Dr. Strange</span>
556
- <span class="white" itemprop="name">Brass Bullet Necklace</span>
557
- </div>
558
- </div><!-- end .panel2 -->
559
- </a>
560
- <meta itemprop="description" content="Edgy jewelry has become a must-have for this season, and this brass bullet pendant is a great pick! Bullet pendant hangs on a ball chain. This bullet"/>
561
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
562
- <meta itemprop="name" content="Dr. Strange"/>
563
- <meta itemprop="url" content="http://www.drstrange.com/"/>
564
- </span>
565
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
566
- <meta itemprop="name" content="Dr. Strange"/>
567
- <meta itemprop="url" content="http://www.drstrange.com/product.php?46109"/>
568
- </span>
569
-
570
- </meta>
571
- </div>
572
-
573
- <div class="product clik-component" id="productBox_1425" productId="1425" categoryId="46"
574
- componentId="1425" componentType="P" itemscope itemtype="http://schema.org/Product">
575
- <a href="products/detail/1425" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
576
- <div class="panel1">
577
- <img src="http://static1.clikthrough.com/clik-prod/images/products/jyAUizWSmByccspnK9eXIbIN3aEP3WuG2VNkQW/Sw-DYA2QRUiqBs2YbYqVqAzu6uW9n85NHBXqRSMqEVm.jpg" alt="American Apparel - Fine Jersey T-Shirt" itemprop="image"/>
578
- </div>
579
- <div class="panel2">
580
- <div class="title">
581
- <span class="clikOrange">American Apparel</span>
582
- <span class="white" itemprop="name">Fine Jersey T-Shirt</span>
583
- </div>
584
- </div><!-- end .panel2 -->
585
- </a>
586
- <meta itemprop="description" content="The softest, smoothest, best-looking T-shirt available anywhere. The basic t-shirt that you always should keep stock of in your closet. 100% fine jers"/>
587
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
588
- <meta itemprop="name" content="American Apparel"/>
589
- <meta itemprop="url" content="http://americanapparel.net/"/>
590
- </span>
591
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
592
- <meta itemprop="name" content="American Apparel"/>
593
- <meta itemprop="url" content="http://store.americanapparel.net/2001.html"/>
594
- </span>
595
-
596
- </meta>
597
- </div>
598
-
599
- <div class="product clik-component" id="productBox_1426" productId="1426" categoryId="153"
600
- componentId="1426" componentType="P" itemscope itemtype="http://schema.org/Product">
601
- <a href="products/detail/1426" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
602
- <div class="panel1">
603
- <img src="http://static1.clikthrough.com/clik-prod/images/products/SHKuhH90YARDhrq1hltQOcGsvo0DvUeUrAK/Sw-8F0VastVVhFHtu4jJyLJ0chyDZ0ETjaZ.jpg" alt="Jalea Jalea - Cube Earrings" itemprop="image"/>
604
- </div>
605
- <div class="panel2">
606
- <div class="title">
607
- <span class="clikOrange">Jalea Jalea</span>
608
- <span class="white" itemprop="name">Cube Earrings</span>
609
- </div>
610
- </div><!-- end .panel2 -->
611
- </a>
612
- <meta itemprop="description" content="The cube earrings from the MINERALS &amp; POLYHEDRA Collection. A fun way to play with geometry and perspective. Wear these fashionable earrings with ever"/>
613
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
614
- <meta itemprop="name" content="Jalea Jalea"/>
615
- <meta itemprop="url" content="http://www.jaleajalea.com/"/>
616
- </span>
617
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
618
- <meta itemprop="name" content="Jalea Jalea"/>
619
- <meta itemprop="url" content="http://jaleajalea.com/online_shop/catalog.php?action=show_custom&amp;id=115&amp;cat=7"/>
620
- </span>
621
-
622
- </meta>
623
- </div>
624
-
625
- <div class="product clik-component" id="productBox_1427" productId="1427" categoryId="46"
626
- componentId="1427" componentType="P" itemscope itemtype="http://schema.org/Product">
627
- <a href="products/detail/1427" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
628
- <div class="panel1">
629
- <img src="http://static1.clikthrough.com/clik-prod/images/products/c1TuW21AD8hSc9eS3aBY3q6YnSjjMA3nCJ/Sw-KmIqt3oGbkqac9k7UURqQX9NRn5pY.jpg" alt="Levi's® - Original 501 Jeans-Hyper Active" itemprop="image"/>
630
- </div>
631
- <div class="panel2">
632
- <div class="title">
633
- <span class="clikOrange">Levi's®</span>
634
- <span class="white" itemprop="name">Original 501 Jeans-Hyper Active</span>
635
- </div>
636
- </div><!-- end .panel2 -->
637
- </a>
638
- <meta itemprop="description" content="The blue jean that started it all. The button-fly 501 Original Jean is still straight through the seat, thigh and leg, a bestseller for its one-of-a-k"/>
639
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
640
- <meta itemprop="name" content="Levi's®"/>
641
- <meta itemprop="url" content="http://www.levis.com"/>
642
- </span>
643
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
644
- <meta itemprop="name" content="Levi's®"/>
645
- <meta itemprop="url" content="http://us.levi.com/product/index.jsp?productId=3631367&amp;cp=3146842.3146844.3146855.3146924"/>
646
- </span>
647
-
648
- </meta>
649
- </div>
650
-
651
- <div class="product clik-component" id="productBox_1428" productId="1428" categoryId="153"
652
- componentId="1428" componentType="P" itemscope itemtype="http://schema.org/Product">
653
- <a href="products/detail/1428" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
654
- <div class="panel1">
655
- <img src="http://static1.clikthrough.com/clik-prod/images/products/9clTSR7iEqeyUSGoOBhNKvSMOOQf2CIf/Sw-VpQBWuU08T68THJfdLrZ8RSqpKFQs4jBVOUeXg07UlU5sOKLr.jpg" alt="CC SKYE - Power Hoops" itemprop="image"/>
656
- </div>
657
- <div class="panel2">
658
- <div class="title">
659
- <span class="clikOrange">CC SKYE</span>
660
- <span class="white" itemprop="name">Power Hoops</span>
661
- </div>
662
- </div><!-- end .panel2 -->
663
- </a>
664
- <meta itemprop="description" content="Fashion forward and quality made hexagonal shaped earrings. Gold and black with small diamond rhinestones throughout the earring. Beautiful art deco s"/>
665
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
666
- <meta itemprop="name" content="CC SKYE"/>
667
- <meta itemprop="url" content=" http://www.ccskye.com/"/>
668
- </span>
669
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
670
- <meta itemprop="name" content="CC SKYE"/>
671
- <meta itemprop="url" content="http://www.ccskye.com/shop.php?id=304"/>
672
- </span>
673
-
674
- </meta>
675
- </div>
676
-
677
- <div class="product clik-component" id="productBox_1430" productId="1430" categoryId="153"
678
- componentId="1430" componentType="P" itemscope itemtype="http://schema.org/Product">
679
- <a href="products/detail/1430" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
680
- <div class="panel1">
681
- <img src="http://static1.clikthrough.com/clik-prod/images/products/L01TpLgxl1dxaKtOm60DWRnHsfN1Se8Ty3b0gL965RT41haF/Sw-ka0sqqFvevSZt0RQNKPZLZcFjQslEdzkyK8uii.jpg" alt="Elizabeth and James - Fringe Earrings" itemprop="image"/>
682
- </div>
683
- <div class="panel2">
684
- <div class="title">
685
- <span class="clikOrange">Elizabeth and James</span>
686
- <span class="white" itemprop="name">Fringe Earrings</span>
687
- </div>
688
- </div><!-- end .panel2 -->
689
- </a>
690
- <meta itemprop="description" content="Robert Lee Morris for Elizabeth and James. Perfect with a tee and jeans or your hottest little black dress. Oxidized sterling silver dangle earrings w"/>
691
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
692
- <meta itemprop="name" content="Elizabeth and James"/>
693
- <meta itemprop="url" content="http://www.elizabethandjames.us/"/>
694
- </span>
695
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
696
- <meta itemprop="name" content="Elizabeth and James"/>
697
- <meta itemprop="url" content="http://www.elizabethandjames.us/"/>
698
- </span>
699
-
700
- </meta>
701
- </div>
702
-
703
- <div class="product clik-component" id="productBox_1431" productId="1431" categoryId="46"
704
- componentId="1431" componentType="P" itemscope itemtype="http://schema.org/Product">
705
- <a href="products/detail/1431" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
706
- <div class="panel1">
707
- <img src="http://static1.clikthrough.com/clik-prod/images/products/x5TWuxgQfpjtdKJmkDyt7DMlnq6MqVv6h7ly7kCBo0t66P8Ac/Sw-BZeyaJpsVNyGkvZ3Out01tMe13OJrtWz1YXf4u.jpg" alt="Velvet Angels - Peepshow II" itemprop="image"/>
708
- </div>
709
- <div class="panel2">
710
- <div class="title">
711
- <span class="clikOrange">Velvet Angels</span>
712
- <span class="white" itemprop="name">Peepshow II</span>
713
- </div>
714
- </div><!-- end .panel2 -->
715
- </a>
716
- <meta itemprop="description" content="This is the Peepshow II ankle boot created by Velvet Angels. This bootie features a patent leather ankle strap and base, a front slit, and a leather u"/>
717
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
718
- <meta itemprop="name" content="Velvet Angels"/>
719
- <meta itemprop="url" content="http://www.velvetangels.com/"/>
720
- </span>
721
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
722
- <meta itemprop="name" content="Velvet Angels"/>
723
- <meta itemprop="url" content="http://www.velvetangels.com/product.php?productid=10&amp;categoryId=13"/>
724
- </span>
725
-
726
- </meta>
727
- </div>
728
-
729
- <div class="product clik-component" id="productBox_1432" productId="1432" categoryId="46"
730
- componentId="1432" componentType="P" itemscope itemtype="http://schema.org/Product">
731
- <a href="products/detail/1432" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
732
- <div class="panel1">
733
- <img src="http://static1.clikthrough.com/clik-prod/images/products/o0m7f8g86Ktoqf886X0toVZoKY0/Sw-pHVgcSC1z4qOaMcmAYq2ABmTashz.jpg" alt="Wet Seal - Skinny Jean" itemprop="image"/>
734
- </div>
735
- <div class="panel2">
736
- <div class="title">
737
- <span class="clikOrange">Wet Seal</span>
738
- <span class="white" itemprop="name">Skinny Jean</span>
739
- </div>
740
- </div><!-- end .panel2 -->
741
- </a>
742
- <meta itemprop="description" content="You make a statement with every thing you wear, and in your Show Stopper jeans, you're a fashion icon. This jean features a basic five pocket with ski"/>
743
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
744
- <meta itemprop="name" content="Wet Seal"/>
745
- <meta itemprop="url" content=" http://www.wetsealinc.com/"/>
746
- </span>
747
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
748
- <meta itemprop="name" content="Wet Seal"/>
749
- <meta itemprop="url" content="http://www.wetseal.com/catalog/product.jsp?categoryId=103&amp;productId=3281&amp;color=GREY&amp;altImageId=2&amp;PIPELINE_SESSION_ID=571194ec7f000001017c760b03aa720d"/>
750
- </span>
751
-
752
- </meta>
753
- </div>
754
-
755
- <div class="product clik-component" id="productBox_1433" productId="1433" categoryId="46"
756
- componentId="1433" componentType="P" itemscope itemtype="http://schema.org/Product">
757
- <a href="products/detail/1433" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
758
- <div class="panel1">
759
- <img src="http://static1.clikthrough.com/clik-prod/images/products/qlhYUQxf2vA1N8tqlGmP3Zb8G8Ha6tKBqe0A/Sw-jq7CVUmnshViaeSNj7kOQORd76.jpg" alt="Victor Osborne - Custom Pork Pie Hat" itemprop="image"/>
760
- </div>
761
- <div class="panel2">
762
- <div class="title">
763
- <span class="clikOrange">Victor Osborne</span>
764
- <span class="white" itemprop="name">Custom Pork Pie Hat</span>
765
- </div>
766
- </div><!-- end .panel2 -->
767
- </a>
768
- <meta itemprop="description" content="Victor Osborne spealizes in custom hats. At the Victor Osborne Atelier they carry over 200 blocks in their library to fit any shape head or face. As w"/>
769
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
770
- <meta itemprop="name" content="Victor Osborne"/>
771
- <meta itemprop="url" content="http://www.victorosborne.com/"/>
772
- </span>
773
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
774
- <meta itemprop="name" content="Victor Osborne"/>
775
- <meta itemprop="url" content="http://www.victorosborne.com/custom.html"/>
776
- </span>
777
-
778
- </meta>
779
- </div>
780
-
781
- <div class="product clik-component" id="productBox_1435" productId="1435" categoryId="46"
782
- componentId="1435" componentType="P" itemscope itemtype="http://schema.org/Product">
783
- <a href="products/detail/1435" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
784
- <div class="panel1">
785
- <img src="http://static1.clikthrough.com/clik-prod/images/products/hdBOAr36P7U6Mk7mEH0mtUdqma5HiE/Sw-MnZ5HnHmOdQMU15dLdNUuWCQDEOmyiIXyL6.jpg" alt="Nude: M. Maruyama - Black Cardigan" itemprop="image"/>
786
- </div>
787
- <div class="panel2">
788
- <div class="title">
789
- <span class="clikOrange">Nude: M. Maruyama</span>
790
- <span class="white" itemprop="name">Black Cardigan</span>
791
- </div>
792
- </div><!-- end .panel2 -->
793
- </a>
794
- <meta itemprop="description" content="A classic updated preppy look in 100% cotton. Black snap sweater with white piping. A relaxed look perfect with jeans. With a snap button front and "/>
795
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
796
- <meta itemprop="name" content="Nude: M. Maruyama"/>
797
- <meta itemprop="url" content="http://www.nudemm.com/"/>
798
- </span>
799
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
800
- <meta itemprop="name" content="Nude: M. Maruyama"/>
801
- <meta itemprop="url" content="http://www.nudemm.com/"/>
802
- </span>
803
-
804
- </meta>
805
- </div>
806
-
807
- <div class="product clik-component" id="productBox_1436" productId="1436" categoryId="46"
808
- componentId="1436" componentType="P" itemscope itemtype="http://schema.org/Product">
809
- <a href="products/detail/1436" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
810
- <div class="panel1">
811
- <img src="http://static1.clikthrough.com/clik-prod/images/products/1oyjF6OGBtEvmJ6kPevVPGrGULSTDHNYNqm/Sw-t8ALEuNxdsmSVIgDdjAIunSmksMETMnfI.jpg" alt="Topman - Purple Slim Tie" itemprop="image"/>
812
- </div>
813
- <div class="panel2">
814
- <div class="title">
815
- <span class="clikOrange">Topman</span>
816
- <span class="white" itemprop="name">Purple Slim Tie</span>
817
- </div>
818
- </div><!-- end .panel2 -->
819
- </a>
820
- <meta itemprop="description" content="A slim tie adds to bit of a rock and roll feel and style to your look. This deep purple slim tie is the perfect color and size to wear with all your d"/>
821
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
822
- <meta itemprop="name" content="Topman"/>
823
- <meta itemprop="url" content="http://www.topman.com"/>
824
- </span>
825
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
826
- <meta itemprop="name" content="Topman"/>
827
- <meta itemprop="url" content="http://www.topman.com/webapp/wcs/stores/servlet/ProductDisplay?beginIndex=0&amp;viewAllFlag=&amp;catalogId=32052&amp;storeId=13051&amp;categoryId=134538&amp;parent_category_rn=134530&amp;productId=1276886&amp;langId=-1"/>
828
- </span>
829
-
830
- </meta>
831
- </div>
832
-
833
- <div class="product clik-component" id="productBox_1437" productId="1437" categoryId="46"
834
- componentId="1437" componentType="P" itemscope itemtype="http://schema.org/Product">
835
- <a href="products/detail/1437" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
836
- <div class="panel1">
837
- <img src="http://static1.clikthrough.com/clik-prod/images/products/sZl8WlTZCZsqnFkSOGey4qOFC4hCnhg/Sw-trA3nJsjq4I5VGWNhkl0fMtokINbmlTOzi9q05br.jpg" alt="Ines - Fingerless Gloves (Black &amp; White)" itemprop="image"/>
838
- </div>
839
- <div class="panel2">
840
- <div class="title">
841
- <span class="clikOrange">Ines</span>
842
- <span class="white" itemprop="name">Fingerless Gloves (Black &amp; White)</span>
843
- </div>
844
- </div><!-- end .panel2 -->
845
- </a>
846
- <meta itemprop="description" content="Available in 14 fashion colors. The artistic stitching distinguishes this design from other driving gloves. Supple, strong and trendy, yet very sophis"/>
847
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
848
- <meta itemprop="name" content="Ines"/>
849
- <meta itemprop="url" content="http://www.gloveseurope.com"/>
850
- </span>
851
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
852
- <meta itemprop="name" content="Ines"/>
853
- <meta itemprop="url" content="http://www.inesgloves.com/articlesid/16731/SHOP/Detail/My_Fashion_Fingerless_Driving_Gloves.htm"/>
854
- </span>
855
-
856
- </meta>
857
- </div>
858
-
859
- <div class="product clik-component" id="productBox_1438" productId="1438" categoryId="46"
860
- componentId="1438" componentType="P" itemscope itemtype="http://schema.org/Product">
861
- <a href="products/detail/1438" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
862
- <div class="panel1">
863
- <img src="http://static1.clikthrough.com/clik-prod/images/products/Fe1zXSMQej1Amc2ScMaU3QJy0LbPT5iojkL/Sw-o1oTk7lYCyGDeHygeizlZ1pCzq4diUWgFXVUV24t83R.jpg" alt="Dita Legends - Grandmaster Sunglasses" itemprop="image"/>
864
- </div>
865
- <div class="panel2">
866
- <div class="title">
867
- <span class="clikOrange">Dita Legends</span>
868
- <span class="white" itemprop="name">Grandmaster Sunglasses</span>
869
- </div>
870
- </div><!-- end .panel2 -->
871
- </a>
872
- <meta itemprop="description" content="Dita has a knack for making quality, super chic sunglasses with an eerily accurate element of the street. These Grandmasters are straight-hood, plain "/>
873
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
874
- <meta itemprop="name" content="Dita Legends"/>
875
- <meta itemprop="url" content="http://www.ditalegends.com/"/>
876
- </span>
877
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
878
- <meta itemprop="name" content="Dita Legends"/>
879
- <meta itemprop="url" content="http://www.ditalegends.com/product_detail/967/GRANDMASTER-TWO.html?color_id=158"/>
880
- </span>
881
-
882
- </meta>
883
- </div>
884
-
885
- <div class="product clik-component" id="productBox_1443" productId="1443" categoryId="153"
886
- componentId="1443" componentType="P" itemscope itemtype="http://schema.org/Product">
887
- <a href="products/detail/1443" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
888
- <div class="panel1">
889
- <img src="http://static1.clikthrough.com/clik-prod/images/products/7UymI12eWisWVJiY3lE9a5ViSHX8MM8VC7OHBkHg5H7RYBuX9/Sw-9pYyEZcJmWSgot0mDMxvKSQzEAdgdcXrk5MG4uKvfpjuAh.jpg" alt="Fetty - Scorpio Zodiac Necklace" itemprop="image"/>
890
- </div>
891
- <div class="panel2">
892
- <div class="title">
893
- <span class="clikOrange">Fetty</span>
894
- <span class="white" itemprop="name">Scorpio Zodiac Necklace</span>
895
- </div>
896
- </div><!-- end .panel2 -->
897
- </a>
898
- <meta itemprop="description" content="Sterling silver disc pendant on an 18&quot; 14k yellow gold chain. Pendent is etched with Scorpio zodiac sign and embedded with mixed color non-conflict di"/>
899
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
900
- <meta itemprop="name" content="Fetty"/>
901
- <meta itemprop="url" content="http://www.thefetty.com/"/>
902
- </span>
903
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
904
- <meta itemprop="name" content="Fetty"/>
905
- <meta itemprop="url" content="http://www.thefetty.com/"/>
906
- </span>
907
-
908
- </meta>
909
- </div>
910
-
911
- <div class="product clik-component" id="productBox_1444" productId="1444" categoryId="153"
912
- componentId="1444" componentType="P" itemscope itemtype="http://schema.org/Product">
913
- <a href="products/detail/1444" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
914
- <div class="panel1">
915
- <img src="http://static1.clikthrough.com/clik-prod/images/products/7zghyZKmkrZCLLf8IooVPOEYmNz81UJ/Sw-dkyM14qA2m2ySijlOdEmxJ1oUn9AgR9VotzrU0zC9.jpg" alt="Amazon - Diamond Stud Earrings" itemprop="image"/>
916
- </div>
917
- <div class="panel2">
918
- <div class="title">
919
- <span class="clikOrange">Amazon</span>
920
- <span class="white" itemprop="name">Diamond Stud Earrings</span>
921
- </div>
922
- </div><!-- end .panel2 -->
923
- </a>
924
- <meta itemprop="description" content="These classic diamond stud earrings are a timeless gift. They feature round-cut diamonds with a total carat weight of 1 1/2 carats. The diamonds are m"/>
925
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
926
- <meta itemprop="name" content="Amazon"/>
927
- <meta itemprop="url" content="http://www.amazon.com"/>
928
- </span>
929
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
930
- <meta itemprop="name" content="Amazon"/>
931
- <meta itemprop="url" content="http://www.amazon.com/Platinum-Diamond-4-Prong-Earrings-Clarity/dp/B000ILGFSM/ref=amb_link_4869962_14?pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=center-8&amp;pf_rd_r=05WFQJEGSN9SDRWWWTTG&amp;pf_rd_t=101&amp;pf_rd_p=471609371&amp;pf_rd_i=255167011"/>
932
- </span>
933
-
934
- </meta>
935
- </div>
936
-
937
- <div class="product clik-component" id="productBox_1445" productId="1445" categoryId="153"
938
- componentId="1445" componentType="P" itemscope itemtype="http://schema.org/Product">
939
- <a href="products/detail/1445" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
940
- <div class="panel1">
941
- <img src="http://static1.clikthrough.com/clik-prod/images/products/tdJ5G6biYnkZ5WRZl69go86NlT/Sw-ryZjehaSYIvRZMzletf9lG0oqJNnC3lhYLqNP2CKBpgXt3.jpg" alt="B. Lichtenberg - Lightening Bolt earrings" itemprop="image"/>
942
- </div>
943
- <div class="panel2">
944
- <div class="title">
945
- <span class="clikOrange">B. Lichtenberg</span>
946
- <span class="white" itemprop="name">Lightening Bolt earrings</span>
947
- </div>
948
- </div><!-- end .panel2 -->
949
- </a>
950
- <meta itemprop="description" content="Lightening Bolt earrings cut from a high quality acrylic. Alex and Chloe create jewelry in quirky shapes. Reminiscent of the 80's with a modern edge."/>
951
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
952
- <meta itemprop="name" content="B. Lichtenberg"/>
953
- <meta itemprop="url" content=""/>
954
- </span>
955
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
956
- <meta itemprop="name" content="B. Lichtenberg"/>
957
- <meta itemprop="url" content="http://www.alexandchloe.com/online_shop/product_info.php?cPath=26_31&amp;products_id=741&amp;osCsid=20430e6c11d414156918709b38022df7"/>
958
- </span>
959
-
960
- </meta>
961
- </div>
962
-
963
- <div class="product clik-component" id="productBox_1446" productId="1446" categoryId="1"
964
- componentId="1446" componentType="P" itemscope itemtype="http://schema.org/Product">
965
- <a href="products/detail/1446" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
966
- <div class="panel1">
967
- <img src="http://static1.clikthrough.com/clik-prod/images/products/2LqqMSfkKYhIZHcUb66DWo1Pq/Sw-qQJFFSnKNbjC9NQLHQB1eb6cHd8.jpg" alt="Goorin Bros. - Rude Boy Hat" itemprop="image"/>
968
- </div>
969
- <div class="panel2">
970
- <div class="title">
971
- <span class="clikOrange">Goorin Bros.</span>
972
- <span class="white" itemprop="name">Rude Boy Hat</span>
973
- </div>
974
- </div><!-- end .panel2 -->
975
- </a>
976
- <meta itemprop="description" content="Ne-Yo was self-conscious about his hairline and he started wearing hats in high school. And now, Ne-Yo is well-known for wearing fedoras. Get his look"/>
977
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
978
- <meta itemprop="name" content="Goorin Bros."/>
979
- <meta itemprop="url" content="http://www.goorin.com/"/>
980
- </span>
981
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
982
- <meta itemprop="name" content="Goorin Bros."/>
983
- <meta itemprop="url" content="http://www.goorin.com/hats/fedora/rude-boy"/>
984
- </span>
985
-
986
- </meta>
987
- </div>
988
-
989
- <div class="product clik-component" id="productBox_1448" productId="1448" categoryId="46"
990
- componentId="1448" componentType="P" itemscope itemtype="http://schema.org/Product">
991
- <a href="products/detail/1448" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
992
- <div class="panel1">
993
- <img src="http://static1.clikthrough.com/clik-prod/images/products/iRr4KlxCRq2aZHaryyE7X6UfmBXLv2RYCm5VoHF37un/Sw-GosmTHcNnzO8cU9SAi9Z4KSQVJZT4qqltWLccEhiqCc805a.jpg" alt="Theory - Compact V-Neck Sweater" itemprop="image"/>
994
- </div>
995
- <div class="panel2">
996
- <div class="title">
997
- <span class="clikOrange">Theory</span>
998
- <span class="white" itemprop="name">Compact V-Neck Sweater</span>
999
- </div>
1000
- </div><!-- end .panel2 -->
1001
- </a>
1002
- <meta itemprop="description" content="Soft light heather gray in a lightweight merino wool knit. With a banded v-neck and a rib banded hem. The slim sweater also has Long sleeve with rib b"/>
1003
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1004
- <meta itemprop="name" content="Theory"/>
1005
- <meta itemprop="url" content="http://www.theory.com/"/>
1006
- </span>
1007
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1008
- <meta itemprop="name" content="Theory"/>
1009
- <meta itemprop="url" content="http://www.theory.com/"/>
1010
- </span>
1011
-
1012
- </meta>
1013
- </div>
1014
-
1015
- <div class="product clik-component" id="productBox_1449" productId="1449" categoryId="46"
1016
- componentId="1449" componentType="P" itemscope itemtype="http://schema.org/Product">
1017
- <a href="products/detail/1449" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1018
- <div class="panel1">
1019
- <img src="http://static1.clikthrough.com/clik-prod/images/products/a6JCDh6TH3q114ZDonoqjz2ZuTGe7K0mppKqHX/Sw-llzHW3aqjhN85TT9C0fPkD6emaXCKnODtftGRHVtb.jpg" alt="Peter Werth - Striped Shirt" itemprop="image"/>
1020
- </div>
1021
- <div class="panel2">
1022
- <div class="title">
1023
- <span class="clikOrange">Peter Werth</span>
1024
- <span class="white" itemprop="name">Striped Shirt</span>
1025
- </div>
1026
- </div><!-- end .panel2 -->
1027
- </a>
1028
- <meta itemprop="description" content="A long sleeved cotton shirt by Peter Werth. All over contrast stripe design with reinforced trim. A button through placket with button-up cuffs. A tri"/>
1029
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1030
- <meta itemprop="name" content="Peter Werth"/>
1031
- <meta itemprop="url" content="http://www.peterwerth.co.uk/"/>
1032
- </span>
1033
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1034
- <meta itemprop="name" content="Peter Werth"/>
1035
- <meta itemprop="url" content="http://www.peterwerth.co.uk/"/>
1036
- </span>
1037
-
1038
- </meta>
1039
- </div>
1040
-
1041
- <div class="product clik-component" id="productBox_1450" productId="1450" categoryId="46"
1042
- componentId="1450" componentType="P" itemscope itemtype="http://schema.org/Product">
1043
- <a href="products/detail/1450" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1044
- <div class="panel1">
1045
- <img src="http://static1.clikthrough.com/clik-prod/images/products/MJQBMsnqQ4ZiKrn4u8SQATuSKldO6PqnU9q/Sw-L91UplaGFUu0vYpgJqJx3nhVsjiJubP2yD4P1q0SNlGqGly.jpg" alt="Vintage - Periwinkle Leather Jacket" itemprop="image"/>
1046
- </div>
1047
- <div class="panel2">
1048
- <div class="title">
1049
- <span class="clikOrange">Vintage</span>
1050
- <span class="white" itemprop="name">Periwinkle Leather Jacket</span>
1051
- </div>
1052
- </div><!-- end .panel2 -->
1053
- </a>
1054
- <meta itemprop="description" content="Rich buttery soft periwinkle blue 1980's leather jacket with matching belt. Low sweet heart neckline with matching enamel snaps. A sexy hourglass shap"/>
1055
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1056
- <meta itemprop="name" content="Vintage"/>
1057
- <meta itemprop="url" content=""/>
1058
- </span>
1059
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1060
- <meta itemprop="name" content="Vintage"/>
1061
- <meta itemprop="url" content=""/>
1062
- </span>
1063
-
1064
- </meta>
1065
- </div>
1066
-
1067
- <div class="product clik-component" id="productBox_1452" productId="1452" categoryId="46"
1068
- componentId="1452" componentType="P" itemscope itemtype="http://schema.org/Product">
1069
- <a href="products/detail/1452" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1070
- <div class="panel1">
1071
- <img src="http://static1.clikthrough.com/clik-prod/images/products/EnCrbYXOixyt0vPJeWM2vDZgLpJPldvJJPKyl8Uh2llN7jC/Sw-rTglY6MtcaXNYk2qA7BUizr8R9Y330pjlsZqLLPqzxs5n5.jpg" alt="Levi's® - Trucker Jacket" itemprop="image"/>
1072
- </div>
1073
- <div class="panel2">
1074
- <div class="title">
1075
- <span class="clikOrange">Levi's®</span>
1076
- <span class="white" itemprop="name">Trucker Jacket</span>
1077
- </div>
1078
- </div><!-- end .panel2 -->
1079
- </a>
1080
- <meta itemprop="description" content="The Trucker Jacket earned its status as classic with its relaxed fit and rugged construction. Defined at front and back with vertical seams and built "/>
1081
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1082
- <meta itemprop="name" content="Levi's®"/>
1083
- <meta itemprop="url" content="http://www.levis.com"/>
1084
- </span>
1085
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1086
- <meta itemprop="name" content="Levi's®"/>
1087
- <meta itemprop="url" content="http://us.levi.com/product/index.jsp?productId=2596409&amp;cp=3146842.3146845.3146860"/>
1088
- </span>
1089
-
1090
- </meta>
1091
- </div>
1092
-
1093
- <div class="product clik-component" id="productBox_1453" productId="1453" categoryId="153"
1094
- componentId="1453" componentType="P" itemscope itemtype="http://schema.org/Product">
1095
- <a href="products/detail/1453" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1096
- <div class="panel1">
1097
- <img src="http://static1.clikthrough.com/clik-prod/images/products/L8JVne1Gbh033E8SYF8DkY0hdcReWtWLlZSCObnbiZfz/Sw-VaZ2VNEpxlljWkc4bzBsm5kiPIRE2F2ghQaI8Wjj.jpg" alt="B. Lichtenberg - Shard Earrings" itemprop="image"/>
1098
- </div>
1099
- <div class="panel2">
1100
- <div class="title">
1101
- <span class="clikOrange">B. Lichtenberg</span>
1102
- <span class="white" itemprop="name">Shard Earrings</span>
1103
- </div>
1104
- </div><!-- end .panel2 -->
1105
- </a>
1106
- <meta itemprop="description" content="Pair of Shard earrings for pierced ears. From the 'Black Diamonds' collection at Alex and Chloe. A cutting edge look made of high quality acrylic in f"/>
1107
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1108
- <meta itemprop="name" content="B. Lichtenberg"/>
1109
- <meta itemprop="url" content=""/>
1110
- </span>
1111
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1112
- <meta itemprop="name" content="B. Lichtenberg"/>
1113
- <meta itemprop="url" content="http://www.alexandchloe.com/online_shop/product_info.php?products_id=724"/>
1114
- </span>
1115
-
1116
- </meta>
1117
- </div>
1118
-
1119
- <div class="product clik-component" id="productBox_1454" productId="1454" categoryId="46"
1120
- componentId="1454" componentType="P" itemscope itemtype="http://schema.org/Product">
1121
- <a href="products/detail/1454" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1122
- <div class="panel1">
1123
- <img src="http://static1.clikthrough.com/clik-prod/images/products/As0fQdEdO9c5cBX80Lg7PDvd9YAo6UNmNp/Sw-ubcTUb6LAXX0BT8Ey1zkv6VkmCYRCl.jpg" alt="Black - Leather Gloves" itemprop="image"/>
1124
- </div>
1125
- <div class="panel2">
1126
- <div class="title">
1127
- <span class="clikOrange">Black</span>
1128
- <span class="white" itemprop="name">Leather Gloves</span>
1129
- </div>
1130
- </div><!-- end .panel2 -->
1131
- </a>
1132
- <meta itemprop="description" content="Made from hair sheep leather, acknowledged as the best glove leather for its strength and unique softness, these classic gloves are lined with 100% ca"/>
1133
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1134
- <meta itemprop="name" content="Black"/>
1135
- <meta itemprop="url" content="http://www.black.co.uk/"/>
1136
- </span>
1137
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1138
- <meta itemprop="name" content="Black"/>
1139
- <meta itemprop="url" content="http://www.black.co.uk/product/mens-cashmerelined-leather-gloves-1188.cfm"/>
1140
- </span>
1141
-
1142
- </meta>
1143
- </div>
1144
-
1145
- <div class="product clik-component" id="productBox_1455" productId="1455" categoryId="46"
1146
- componentId="1455" componentType="P" itemscope itemtype="http://schema.org/Product">
1147
- <a href="products/detail/1455" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1148
- <div class="panel1">
1149
- <img src="http://static1.clikthrough.com/clik-prod/images/products/ALchhvJZq99HTAUPzB8aqJFv0kEbl3UdHeWlC51VVCW9yX9/Sw-O5a3qnBe2XBGNyau1LgOzFNxuC9qM5Jk019inznz8CDT2uSW.jpg" alt="Vintage - Letterman Jacket" itemprop="image"/>
1150
- </div>
1151
- <div class="panel2">
1152
- <div class="title">
1153
- <span class="clikOrange">Vintage</span>
1154
- <span class="white" itemprop="name">Letterman Jacket</span>
1155
- </div>
1156
- </div><!-- end .panel2 -->
1157
- </a>
1158
- <meta itemprop="description" content="The letterman jacket that Kanye is wearing looks like it was originally from from Kamiakin High School, located in Kennewick, WA."/>
1159
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1160
- <meta itemprop="name" content="Vintage"/>
1161
- <meta itemprop="url" content=""/>
1162
- </span>
1163
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1164
- <meta itemprop="name" content="Vintage"/>
1165
- <meta itemprop="url" content=""/>
1166
- </span>
1167
-
1168
- </meta>
1169
- </div>
1170
-
1171
- <div class="product clik-component" id="productBox_1456" productId="1456" categoryId="153"
1172
- componentId="1456" componentType="P" itemscope itemtype="http://schema.org/Product">
1173
- <a href="products/detail/1456" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1174
- <div class="panel1">
1175
- <img src="http://static1.clikthrough.com/clik-prod/images/products/Rg5018LmlAiHD1P4YQmIztXSPqLD/Sw-bnjPNqE2eguFTG5lT87K1oedHqo1II9mG2dTeqRFMAJ.jpg" alt="B. Lichtenberg - Bri-Dangle Necklace" itemprop="image"/>
1176
- </div>
1177
- <div class="panel2">
1178
- <div class="title">
1179
- <span class="clikOrange">B. Lichtenberg</span>
1180
- <span class="white" itemprop="name">Bri-Dangle Necklace</span>
1181
- </div>
1182
- </div><!-- end .panel2 -->
1183
- </a>
1184
- <meta itemprop="description" content="Make a statement with the avant garde look of Brian Lichtenberg for Alex &amp; Chloe. From the 'BRIANGULAR' Collection. Silver mirror acrylic with sterlin"/>
1185
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1186
- <meta itemprop="name" content="B. Lichtenberg"/>
1187
- <meta itemprop="url" content=""/>
1188
- </span>
1189
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1190
- <meta itemprop="name" content="B. Lichtenberg"/>
1191
- <meta itemprop="url" content="http://www.alexandchloe.com/"/>
1192
- </span>
1193
-
1194
- </meta>
1195
- </div>
1196
-
1197
- <div class="product clik-component" id="productBox_1457" productId="1457" categoryId="46"
1198
- componentId="1457" componentType="P" itemscope itemtype="http://schema.org/Product">
1199
- <a href="products/detail/1457" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1200
- <div class="panel1">
1201
- <img src="http://static1.clikthrough.com/clik-prod/images/products/AAW92WkgXNpNhBsqL6cjurBX1x3S25ND86cB06TBDkOS9/Sw-nzZHMZWq7RJyk4sAUvnXWqMlIbTDfOIaG2BEPG.jpg" alt="Chanel - Graphic Chanel Pants" itemprop="image"/>
1202
- </div>
1203
- <div class="panel2">
1204
- <div class="title">
1205
- <span class="clikOrange">Chanel </span>
1206
- <span class="white" itemprop="name">Graphic Chanel Pants</span>
1207
- </div>
1208
- </div><!-- end .panel2 -->
1209
- </a>
1210
- <meta itemprop="description" content="The leading brand in luxury goods creates a slim pant with an updated look. The Chanel graphic print is combined with a slim pant silhouette. For a u"/>
1211
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1212
- <meta itemprop="name" content="Chanel "/>
1213
- <meta itemprop="url" content="http://www.chanel.com/"/>
1214
- </span>
1215
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1216
- <meta itemprop="name" content="Chanel "/>
1217
- <meta itemprop="url" content="http://www.chanel.com/"/>
1218
- </span>
1219
-
1220
- </meta>
1221
- </div>
1222
-
1223
- <div class="product clik-component" id="productBox_1458" productId="1458" categoryId="166"
1224
- componentId="1458" componentType="P" itemscope itemtype="http://schema.org/Product">
1225
- <a href="products/detail/1458" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1226
- <div class="panel1">
1227
- <img src="http://static1.clikthrough.com/clik-prod/images/products/GaCaJnsHT9D43HMuuKjR0R6tI5tnbqxoQRb25iK/Sw-4sodZZ8D1fqjRs5Y3uCHrHkTtblBp5peDMacugS4.jpg" alt="IKEA - Pendant Lamp" itemprop="image"/>
1228
- </div>
1229
- <div class="panel2">
1230
- <div class="title">
1231
- <span class="clikOrange">IKEA</span>
1232
- <span class="white" itemprop="name">Pendant Lamp</span>
1233
- </div>
1234
- </div><!-- end .panel2 -->
1235
- </a>
1236
- <meta itemprop="description" content="Lamp designed similar to the basic style of a clip lamp in versatile hanging version. Made of aluminum and requires a standard bulb."/>
1237
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1238
- <meta itemprop="name" content="IKEA"/>
1239
- <meta itemprop="url" content="http://www.ikea.com/"/>
1240
- </span>
1241
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1242
- <meta itemprop="name" content="IKEA"/>
1243
- <meta itemprop="url" content="http://www.ikea.com/us/en/catalog/products/90128179"/>
1244
- </span>
1245
-
1246
- </meta>
1247
- </div>
1248
-
1249
- <div class="product clik-component" id="productBox_1459" productId="1459" categoryId="46"
1250
- componentId="1459" componentType="P" itemscope itemtype="http://schema.org/Product">
1251
- <a href="products/detail/1459" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1252
- <div class="panel1">
1253
- <img src="http://static1.clikthrough.com/clik-prod/images/products/x0lVhmkEVlKi1R13ganMqiEA604pjTjXteSimB/Sw-t98iUhuCRFz7ckcVVLn9tkCIscPrP0Irhcva3zy.jpg" alt="Herve Leger - Charlotte Signature Skirt" itemprop="image"/>
1254
- </div>
1255
- <div class="panel2">
1256
- <div class="title">
1257
- <span class="clikOrange">Herve Leger</span>
1258
- <span class="white" itemprop="name">Charlotte Signature Skirt</span>
1259
- </div>
1260
- </div><!-- end .panel2 -->
1261
- </a>
1262
- <meta itemprop="description" content="Herve Leger calls this banded mini skirt &quot;essential&quot; because it is indeed your essential mini skirt. The figure hugging but uber stretchy skirt has a "/>
1263
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1264
- <meta itemprop="name" content="Herve Leger"/>
1265
- <meta itemprop="url" content="/www.herveleger.com/"/>
1266
- </span>
1267
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1268
- <meta itemprop="name" content="Herve Leger"/>
1269
- <meta itemprop="url" content="http://www.herveleger.com/spring2009/"/>
1270
- </span>
1271
-
1272
- </meta>
1273
- </div>
1274
-
1275
- <div class="product clik-component" id="productBox_1460" productId="1460" categoryId="46"
1276
- componentId="1460" componentType="P" itemscope itemtype="http://schema.org/Product">
1277
- <a href="products/detail/1460" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1278
- <div class="panel1">
1279
- <img src="http://static1.clikthrough.com/clik-prod/images/products/AWqyTulhK3KzI5ursqbWOmsFtG/Sw-r4NZ74r1ltBqQKlq6W5vWKGRoHYivG9u2ITua.jpg" alt="American Apparel - White V-neck" itemprop="image"/>
1280
- </div>
1281
- <div class="panel2">
1282
- <div class="title">
1283
- <span class="clikOrange">American Apparel</span>
1284
- <span class="white" itemprop="name">White V-neck</span>
1285
- </div>
1286
- </div><!-- end .panel2 -->
1287
- </a>
1288
- <meta itemprop="description" content="The softest, smoothest, best-looking v-neck t-shirt available anywhere. 100% fine jersey cotton construction. Durable rib V-neckband. A staple for any"/>
1289
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1290
- <meta itemprop="name" content="American Apparel"/>
1291
- <meta itemprop="url" content="http://americanapparel.net/"/>
1292
- </span>
1293
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1294
- <meta itemprop="name" content="American Apparel"/>
1295
- <meta itemprop="url" content="http://store.americanapparel.net/2456.html"/>
1296
- </span>
1297
-
1298
- </meta>
1299
- </div>
1300
-
1301
- <div class="product clik-component" id="productBox_1461" productId="1461" categoryId="46"
1302
- componentId="1461" componentType="P" itemscope itemtype="http://schema.org/Product">
1303
- <a href="products/detail/1461" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1304
- <div class="panel1">
1305
- <img src="http://static1.clikthrough.com/clik-prod/images/products/n0jhMVYj59NixOXdU29155NUsW53jnzs/Sw-hnfLFgZ9sajkujcrIUXVEuQUsTn7.jpg" alt="Love Moschino - Cardigan" itemprop="image"/>
1306
- </div>
1307
- <div class="panel2">
1308
- <div class="title">
1309
- <span class="clikOrange">Love Moschino</span>
1310
- <span class="white" itemprop="name">Cardigan</span>
1311
- </div>
1312
- </div><!-- end .panel2 -->
1313
- </a>
1314
- <meta itemprop="description" content="The double breasted cardigan from Love Moschino features deep v-neck and a 3 button closure. Also includes 2-hand pockets and embroidered tag on left "/>
1315
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1316
- <meta itemprop="name" content="Love Moschino"/>
1317
- <meta itemprop="url" content="http://www.moschino.com/"/>
1318
- </span>
1319
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1320
- <meta itemprop="name" content="Love Moschino"/>
1321
- <meta itemprop="url" content="http://www.moschino.com/"/>
1322
- </span>
1323
-
1324
- </meta>
1325
- </div>
1326
-
1327
- <div class="product clik-component" id="productBox_1462" productId="1462" categoryId="46"
1328
- componentId="1462" componentType="P" itemscope itemtype="http://schema.org/Product">
1329
- <a href="products/detail/1462" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1330
- <div class="panel1">
1331
- <img src="http://static1.clikthrough.com/clik-prod/images/products/Jjxr7jdg3cyVMoyI4o1cvfjGP3/Sw-qtSBRjegovdZGKaiSTSFuBZLUKloZA8iar.jpg" alt="Buttero - Work Boot" itemprop="image"/>
1332
- </div>
1333
- <div class="panel2">
1334
- <div class="title">
1335
- <span class="clikOrange">Buttero</span>
1336
- <span class="white" itemprop="name">Work Boot</span>
1337
- </div>
1338
- </div><!-- end .panel2 -->
1339
- </a>
1340
- <meta itemprop="description" content="Perfect boot for a relaxed and masculine look to wear with jeans. Smooth leather plain toe work boot with lace-up front. 30mm stacked wood heel. Leath"/>
1341
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1342
- <meta itemprop="name" content="Buttero"/>
1343
- <meta itemprop="url" content="http://www.buttero.it/"/>
1344
- </span>
1345
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1346
- <meta itemprop="name" content="Buttero"/>
1347
- <meta itemprop="url" content="http://www.buttero.it/english/home.htm"/>
1348
- </span>
1349
-
1350
- </meta>
1351
- </div>
1352
-
1353
- <div class="product clik-component" id="productBox_1463" productId="1463" categoryId="46"
1354
- componentId="1463" componentType="P" itemscope itemtype="http://schema.org/Product">
1355
- <a href="products/detail/1463" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1356
- <div class="panel1">
1357
- <img src="http://static1.clikthrough.com/clik-prod/images/products/YFZx1ZWJzSeQzHmjyzgPH9BUuCWORUq/Sw-0ioAkWXVXsWgccUpG6FY9QVINqi17ZjvUtoE.jpg" alt="AG Adriano Goldschmied - Protégé Jean" itemprop="image"/>
1358
- </div>
1359
- <div class="panel2">
1360
- <div class="title">
1361
- <span class="clikOrange">AG Adriano Goldschmied</span>
1362
- <span class="white" itemprop="name">Protégé Jean</span>
1363
- </div>
1364
- </div><!-- end .panel2 -->
1365
- </a>
1366
- <meta itemprop="description" content="Five pocket straight leg jean in a light blue wash with holes, grease stains and distressing at hip, thigh, knee and seat. Button fly. 10&quot; rise. 34&quot; i"/>
1367
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1368
- <meta itemprop="name" content="AG Adriano Goldschmied"/>
1369
- <meta itemprop="url" content="http://www.agjeans.com/"/>
1370
- </span>
1371
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1372
- <meta itemprop="name" content="AG Adriano Goldschmied"/>
1373
- <meta itemprop="url" content="http://www.agjeans.com/"/>
1374
- </span>
1375
-
1376
- </meta>
1377
- </div>
1378
-
1379
- <div class="product clik-component" id="productBox_1464" productId="1464" categoryId="46"
1380
- componentId="1464" componentType="P" itemscope itemtype="http://schema.org/Product">
1381
- <a href="products/detail/1464" class="clik-ajax"clik:target="detailBox" clik:scrollTop="true" itemprop="url">
1382
- <div class="panel1">
1383
- <img src="http://static1.clikthrough.com/clik-prod/images/products/t89UsGKAOk7MXFIVXjX9g6nHug0gb9yTyFXG0A7r2/Sw-MXe8JYqpn9IraFifaTNe3Xr75IAKeHYa8q0usNE5GpGA.jpg" alt="A. Wang - Classic Tank Top" itemprop="image"/>
1384
- </div>
1385
- <div class="panel2">
1386
- <div class="title">
1387
- <span class="clikOrange">A. Wang</span>
1388
- <span class="white" itemprop="name">Classic Tank Top</span>
1389
- </div>
1390
- </div><!-- end .panel2 -->
1391
- </a>
1392
- <meta itemprop="description" content="This tank feels silky and supple against skin, while the lowered arm holes and deep scoop neck are alluring in a laid-back way. Sheer with a signature"/>
1393
- <span itemprop="brand" itemscope itemtype="http://schema.org/Organization" class="hidden">
1394
- <meta itemprop="name" content="A. Wang"/>
1395
- <meta itemprop="url" content="http://www.alexanderwang.com"/>
1396
- </span>
1397
- <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="hidden">
1398
- <meta itemprop="name" content="A. Wang"/>
1399
- <meta itemprop="url" content="http://alexanderwang.com/"/>
1400
- </span>
1401
-
1402
- </meta>
1403
- </div>
1404
-
1405
- <div class="clear"></div>
1406
- </div>
1407
-
1408
- </div>
1409
- <div class="clear"></div>
1410
- </div><!-- end #detailSection -->
1411
- <!-- END video_detail -->
1412
- </div><!-- Simple Template -> Page view End -->
1413
-
1414
-
1415
- <!-- [START FOOTER INC] -->
1416
-
1417
- <div id="footer">
1418
- <div id="footerBox">
1419
- <div>
1420
- <div id="copyright">Copyright &#169;2013 Clikthrough Inc,&#160;&#160;&#160;All Rights Reserved</div>
1421
- <ul id="flist2">
1422
- <!--li><a href="videos">Videos</a></li>
1423
- <li><a href="products">Products</a></li>
1424
- <li><a href="artists">Artists</a></li-->
1425
-
1426
- <li><a href="faq">FAQ</a></li>
1427
- <li><a href="http://corporate.clikthrough.com/">Corporate</a></li>
1428
- <li><a href="legal/index/privacyPolicy" target="_blank">Privacy Policy</a></li>
1429
- <li class="last"><a href="legal/index/legalNotice" target="_blank">Legal Notice</a></li>
1430
-
1431
- <li id="footer-social">
1432
- <a href="http://corporate.clikthrough.com/wp/" target="_blank" title="Read our Blogs"><div class="footer-social-icons footer-rss"></div></a>
1433
- <a href="http://twitter.com/clikthrough" target="_blank" title="Follow us on Twitter"><div class="footer-social-icons footer-twitter"></div></a>
1434
- <a href="http://www.facebook.com/pages/San-Francisco-CA/Clikthrough/29889538957" target="_blank" title="Be our friend on Facebook"><div class="footer-social-icons footer-facebook"></div></a>
1435
- </li>
1436
- </ul>
1437
- </div>
1438
- </div>
1439
- </div><!-- end #footer -->
1440
-
1441
- <!-- end #container --></div>
1442
-
1443
-
1444
- <script type="text/javascript">
1445
- // force delayed load of dojo (if not already loaded)
1446
- if (typeof dojo !== "object") {
1447
- document.write('<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.6/dojo/dojo.xd.js" type="text/javascript" djConfig="parseOnLoad: true"><\/script>');
1448
- }
1449
- </script>
1450
- <script type="text/javascript" src="http://www.clikthrough.com/js/clik-dojo.js"></script>
1451
- <script type="text/javascript" src="http://www.clikthrough.com/js/site-wide.js"></script>
1452
-
1453
-
1454
- <script type="text/javascript">
1455
- var _gaq = _gaq || [];
1456
- _gaq.push(['_setAccount', 'UA-4806123-1']);
1457
- _gaq.push(['_trackPageview']);
1458
-
1459
- (function() {
1460
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
1461
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
1462
- (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
1463
- })();
1464
- </script>
1465
-
1466
- <div id="overlayBase" onclick="clik.hide('overlay'); clik.hide(this)">
1467
- </div>
1468
- <div id="overlay">
1469
- </div><!-- end #overlay -->
1470
-
1471
- <div id="preloader"></div></body>
1472
- </html>