hpricot 0.8.4-i386-mswin32 → 0.8.5-i386-mswin32

Sign up to get free protection for your applications and to get access to all the features.
@@ -73,7 +73,7 @@ typedef struct hpricot_scan {
73
73
  // size_t hpricot_scan_execute(hpricot_scan *scan, const char *data, size_t len, size_t off);
74
74
  // int hpricot_scan_has_error(hpricot_scan *scan);
75
75
  // int hpricot_scan_is_finished(hpricot_scan *scan);
76
- //
77
- // #define hpricot_scan_nread(scan) (scan)->nread
76
+ //
77
+ // #define hpricot_scan_nread(scan) (scan)->nread
78
78
 
79
79
  #endif
@@ -252,11 +252,11 @@ public class HpricotScanService implements BasicLibraryService {
252
252
  if(te > ts || text) {
253
253
  int raw = -1;
254
254
  int rawlen = 0;
255
- ele_open = false;
255
+ ele_open = false;
256
256
  text = false;
257
257
 
258
258
  if(ts != -1 && N != x.sym_cdata && N != x.sym_text && N != x.sym_procins && N != x.sym_comment) {
259
- raw = ts;
259
+ raw = ts;
260
260
  rawlen = te - ts;
261
261
  }
262
262
 
@@ -271,7 +271,7 @@ public class HpricotScanService implements BasicLibraryService {
271
271
  }
272
272
  }
273
273
  }
274
-
274
+
275
275
 
276
276
  public void EBLK(IRubyObject N, int T) {
277
277
  tag = CAT(tag, mark_tag, p - T + 1);
@@ -347,8 +347,8 @@ public class HpricotScanService implements BasicLibraryService {
347
347
  }
348
348
  }
349
349
 
350
- if(H_ELE_GET(S.focus, H_ELE_EC) == x.sym_CDATA &&
351
- (sym != x.sym_procins && sym != x.sym_comment && sym != x.sym_cdata && sym != x.sym_text) &&
350
+ if(H_ELE_GET(S.focus, H_ELE_EC) == x.sym_CDATA &&
351
+ (sym != x.sym_procins && sym != x.sym_comment && sym != x.sym_cdata && sym != x.sym_text) &&
352
352
  !(sym == x.sym_etag && runtime.newFixnum(tag.hashCode()).equals(H_ELE_GET(S.focus, H_ELE_HASH)))) {
353
353
  sym = x.sym_text;
354
354
  tag = RubyString.newString(runtime, scanner.data, raw, rawlen);
@@ -392,7 +392,7 @@ public class HpricotScanService implements BasicLibraryService {
392
392
  }
393
393
  e = H_ELE_GET(e, H_ELE_PARENT);
394
394
  }
395
-
395
+
396
396
  if(match.isNil()) {
397
397
  match = S.focus;
398
398
  }
@@ -551,7 +551,7 @@ public class HpricotScanService implements BasicLibraryService {
551
551
  }
552
552
 
553
553
  action save_attr {
554
- if(!S.xml) {
554
+ if(!S.xml && !akey.isNil()) {
555
555
  akey = akey.callMethod(runtime.getCurrentContext(), "downcase");
556
556
  }
557
557
  ATTR(akey, aval);
@@ -659,7 +659,7 @@ public class HpricotScanService implements BasicLibraryService {
659
659
  data = new byte[buffer_size];
660
660
  }
661
661
  }
662
-
662
+
663
663
  private int len, space;
664
664
  // hpricot_scan
665
665
  public IRubyObject scan() {
@@ -667,7 +667,7 @@ public class HpricotScanService implements BasicLibraryService {
667
667
  while(!done) {
668
668
  p = pe = len = buf;
669
669
  space = buffer_size - have;
670
-
670
+
671
671
  if(io) {
672
672
  if(space == 0) {
673
673
  /* We've used up the entire buffer storing an already-parsed token
@@ -1057,7 +1057,7 @@ public class HpricotScanService implements BasicLibraryService {
1057
1057
  klass.defineMethod(id, ref_func[i]);
1058
1058
  klass.defineMethod(id + "=", set_func[i]);
1059
1059
  }
1060
-
1060
+
1061
1061
  return klass;
1062
1062
  }
1063
1063
 
@@ -1067,11 +1067,11 @@ public class HpricotScanService implements BasicLibraryService {
1067
1067
  }
1068
1068
 
1069
1069
  public static class Extra {
1070
- IRubyObject symAllow, symDeny, sym_xmldecl, sym_doctype,
1071
- sym_procins, sym_stag, sym_etag, sym_emptytag,
1072
- sym_allowed, sym_children, sym_comment,
1073
- sym_cdata, sym_name, sym_parent,
1074
- sym_raw_attributes, sym_raw_string, sym_tagno,
1070
+ IRubyObject symAllow, symDeny, sym_xmldecl, sym_doctype,
1071
+ sym_procins, sym_stag, sym_etag, sym_emptytag,
1072
+ sym_allowed, sym_children, sym_comment,
1073
+ sym_cdata, sym_name, sym_parent,
1074
+ sym_raw_attributes, sym_raw_string, sym_tagno,
1075
1075
  sym_text, sym_EMPTY, sym_CDATA;
1076
1076
 
1077
1077
  public RubyModule mHpricot;
Binary file
Binary file
@@ -8,7 +8,8 @@ module Hpricot
8
8
  def self.uxs(str)
9
9
  str.to_s.
10
10
  gsub(/\&(\w+);/) { [NamedCharacters[$1] || 63].pack("U*") }. # 63 = ?? (query char)
11
- gsub(/\&\#(\d+);/) { [$1.to_i].pack("U*") }
11
+ gsub(/\&\#(\d+);/) { [$1.to_i].pack("U*") }.
12
+ gsub(/\&\#x([0-9a-fA-F]+);/) { [$1.to_i(16)].pack("U*") }
12
13
  end
13
14
 
14
15
  def self.build(ele = Doc.new, assigns = {}, &blk)
@@ -87,7 +87,8 @@ module Hpricot
87
87
  def uxs(str)
88
88
  str.to_s.
89
89
  gsub(/\&\w+;/) { |x| (XChar::PREDEFINED_U[x] || 63).chr }. # 63 = ?? (query char)
90
- gsub(/\&\#(\d+);/) { [$1.to_i].pack("U*") }
90
+ gsub(/\&\#(\d+);/) { [$1.to_i].pack("U*") }.
91
+ gsub(/\&\#x([0-9a-fA-F]+);/) { [$1.to_i(16)].pack("U*") }
91
92
  end
92
93
  end
93
94
  end
@@ -0,0 +1,1268 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//Dtd XHTML 1.0 Transitional//EN" "http://www.w3.org/tr/xhtml1/Dtd/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>colinbane.bnqt.com - - Skate life - 1</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
+ <meta name="description" content="" />
7
+ <meta name="keywords" content="P-Rod,Dayne Brummett,Mike Barnes,Ben Raybourn,Michael Brooke,Stu Graham,Pedro Barros,Cailin Lee,Dylan Perry,Nora Vasconcellos,Allen Danze,Glen E. Friedman,Nate LaCoste,Bones Brigade,Colby Carter,Rick Thorne,Paul Zitzer,Phil Hansen,Paul Cullen,Timeline Skateboards,Cordell Mansfield,FUEL.TV,Mark Appleyard,Austin Ayers,Dave Bachinsky," />
8
+ <meta name="Revisit-after" content="1 Day" />
9
+ <link rel="shortcut icon" href="http://colinbane.bnqt.com/public/frontend/assets/colinbane.bnqt.com/favicon.ico" type="image/x-icon"/>
10
+ <link rel="icon" href="http://colinbane.bnqt.com/public/frontend/assets/colinbane.bnqt.com/favicon.ico" type="image/x-icon"/>
11
+ <link href="http://colinbane.bnqt.com/public/frontend/assets/colinbane.bnqt.com/css/all.css" rel="stylesheet" type="text/css" />
12
+ <link type="text/css" rel="stylesheet" href="/public/shared/js/lightview/css/lightview.css"/>
13
+ <script src="/public/shared/js/scriptaculous/lib/prototype-git.js" type="text/javascript"></script>
14
+ <script src="/public/shared/js/scriptaculous/src/scriptaculous.js" type="text/javascript"></script>
15
+ <script src="/public/shared/js/swfobject.js" type="text/javascript"></script>
16
+ <script type="text/javascript" src="/public/shared/js/flash.js"></script>
17
+ <script type="text/javascript" src="/public/shared/js/horinaja.js"></script>
18
+ <script type="text/javascript" src="/public/frontend/js/common.js"></script>
19
+ <!------ OAS MJX Config Begins ------>
20
+ <script type="text/javascript">
21
+ <!--
22
+ // Define OAS Variables
23
+ OAS_url = 'http://oasc247.bnqt.com/RealMedia/ads/'; // Ad Server URL: 'oascentral.site.com'
24
+ OAS_sitepage = 'colinebane-bnqt-com/index'; // Virtual URL, format (case sensitive) : 'www.site.com/section/subsection/page'
25
+ OAS_listpos = 'Top,Middle,Middle1,Bottom,x01,x02'; // List of Positions on Page, format (case Sensitive) : 'Position1,Position2,Frame1,Frame2'
26
+ OAS_query = ''; //Search Terms, format (case sensitive) : ‘KeyName1=KeyValue1&KeyName2=KeyValue2
27
+ OAS_target = '_blank'; // Window parameter for clicks : (_top or _blank)
28
+ //-->
29
+ </script>
30
+ <!------ OAS MJX Config Ends ------>
31
+
32
+ <script type="text/javascript" src="http://colinbane.bnqt.com/public/frontend/js/video.js"></script><script type="text/javascript" src="http://colinbane.bnqt.com/public/shared/js/dropdown.js"></script><script type="text/javascript" src="http://colinbane.bnqt.com/public/frontend/js/main.js"></script><script type="text/javascript" src="http://colinbane.bnqt.com/public/frontend/js/blogs.js"></script><script type="text/javascript" src="http://colinbane.bnqt.com/public/frontend/js/blogExpander.js"></script><script type="text/javascript" src="http://colinbane.bnqt.com/public/frontend/js/photo_album.js"></script>
33
+ <script type="text/javascript">
34
+ videoSort.maxItem = 6;
35
+ videoSort.dateView = "all";
36
+ videoSort.attribSort = "post_date";
37
+
38
+ blogSort.maxItem = 6;
39
+ blogSort.dateView = "all";
40
+ blogSort.attribSort = "post_date";
41
+
42
+ albumSort.maxItem = 5;
43
+ albumSort.dateView = "all";
44
+ albumSort.attribSort = "post_date";
45
+
46
+ ctFeatured.Type = "";
47
+ ctFeatured.attribSort = "post_date";
48
+ ctFeatured.maxItem = 2;
49
+
50
+ document.observe("dom:loaded", function() {
51
+
52
+ blogExpander.init();
53
+
54
+ var HoriFeatured = new Horinaja("featuredContents",0.3,8,true,"featuredPaginationCtner","&bull;","indicatorSelected");
55
+
56
+
57
+ });
58
+ </script>
59
+ <!--// Google Analytics Start -->
60
+ <script type="text/javascript">
61
+
62
+ window._gaq = window._gaq || [];
63
+
64
+
65
+ _gaq.push(
66
+ ['domainTracker1._setAccount', "UA-3632331-1"],
67
+ ['domainTracker1._trackPageview'],
68
+ ['domainTracker1._trackPageLoadTime']
69
+ );
70
+
71
+ _gaq.push(
72
+ ['domainTracker2._setAccount', "UA-3632331-21"],
73
+ ['domainTracker2._trackPageview'],
74
+ ['domainTracker2._trackPageLoadTime']
75
+ );
76
+
77
+ _gaq.push(
78
+ ['domainTracker3._setAccount', "UA-11570011-6"],
79
+ ['domainTracker3._trackPageview'],
80
+ ['domainTracker3._trackPageLoadTime']
81
+ );
82
+ </script>
83
+ <!--// Google Analytics End -->
84
+
85
+
86
+ <!--// BNQT Media Group Partner Toolbar Start -->
87
+ <script type="text/javascript">
88
+ var _bTAccountId = 'colinbane.bnqt.com';
89
+ (function() {
90
+ var _bjs = document.createElement('script');
91
+ _bjs.async = true;
92
+ _bjs.type = 'text/javascript';
93
+ _bjs.src = 'http://img.bnqt.com/CMS/assets/toolbar/js/bnqtXToolbar.js';
94
+ var _bss = document.getElementsByTagName('script')[0];
95
+ _bss.parentNode.insertBefore(_bjs,_bss);
96
+ })();
97
+ </script>
98
+ <!--// BNQT Media Group Partner Toolbar End -->
99
+ </head><body>
100
+ <div id="wrapper">
101
+ <div id="masthead">
102
+ <h2><a href="/" title="Home">BNQT Logo</a></h2>
103
+ <div class="ad" id="OAS_Top" style="position:static!important;"></div>
104
+ <div class="clearFloats"></div>
105
+ <div id="mainMenu">
106
+ <ul>
107
+ <li id="mmHome" class="selected"><a href="/" title="Home">Home</a></li>
108
+ <li id="mmVideos" ><a href="/videos/index.html" title="Videos">Videos</a></li>
109
+ <li id="mmBlogs" ><a href="/blogs/index.html" title="Blogs">Blogs</a></li>
110
+ <li id="search">
111
+ <form action="/search" method="post" id="theSearchForm">
112
+ <input type="hidden" name="searchIn[]" value="photo_albums">
113
+ <input type="hidden" name="searchIn[]" value="blogs">
114
+ <input type="hidden" name="searchIn[]" value="videos">
115
+ <table cellpadding="0" cellspacing="0">
116
+ <tr>
117
+ <td>
118
+ <div id="dummyContainer" style="position: relative">
119
+ <input name="searchField" id="searchField" type="text" align="middle" value="Search..." onFocus="changeSearchBar(this); return false;" onBlur="changeSearchBar(this); return false;"/>
120
+ <div id="search_autoComplete" class="autocomplete"></div>
121
+ <script type="text/javascript">
122
+ new Ajax.Autocompleter('searchField', 'search_autoComplete', '/ajax/getTagsForSearch.html', {
123
+ paramName: 'search',
124
+ minChars: 1});
125
+ </script>
126
+ </div></td>
127
+ <td><a href="#" id="searchBtn" onClick="$('theSearchForm').submit();">Go</a></td>
128
+ </tr>
129
+ </table>
130
+ </form>
131
+ </li>
132
+ </ul> </div>
133
+ <!--/mainMenu-->
134
+ <div class="filterNav">
135
+ <ul>
136
+
137
+ <li >&nbsp;COLINBANE.BNQT.COM: Skate life</li>
138
+ </ul>
139
+ <div class="clearFloats"></div> </div>
140
+ <!--/filter-->
141
+ </div>
142
+ <!--/masthead-->
143
+ <div id="flashmenu"><!--// FLASH MESSAGE //-->
144
+ <!--// FLASH MESSAGE //--></div><!--START INCLUDED CONTENT-->
145
+ <div id="masterContainer" class="home">
146
+ <div class="leftPanel">
147
+
148
+ <div class="box01 features">
149
+ <h1><span>Features</span><a href="/featured/all" title="archives" class="floatRight">Archives</a></h1>
150
+ <div class="content">
151
+ <div id="featuredContents" class="horinaja">
152
+ <ul>
153
+ <li>
154
+
155
+ <table cellpadding="0" cellspacing="0" class="dataContent f00">
156
+ <tr>
157
+ <th>Blogs</th>
158
+ </tr>
159
+ <tr>
160
+ <td>
161
+ <a href="/blogs/detail/Ryan-Sheckler-one-on-one-against-Steve-Nash/5207">
162
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-ae106a4f-4b2bec8f-bf4b-b0690b24_thumb.jpg" width="306" height="198" alt="Ryan Sheckler one-on-one against Steve Nash" />
163
+ </a>
164
+ </td>
165
+ </tr>
166
+ <tr>
167
+ <td class="padding5">
168
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Ryan-Sheckler-one-on-one-against-Steve-Nash/5207.html" class="title">RYAN SHECKLER ONE-ON-ONE AGAINST STEVE NASH</a></p>
169
+ <p class="defaultColor02">December 18, 2009</p>
170
+ <p>My brother-in-law sent over this clip I'd never seen before, of Ryan Sheckler popping an ollie over &#0133; </p>
171
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Ryan Sheckler one-on-one against Steve Nash">Colin Bane</a></p>
172
+ </td>
173
+ </tr>
174
+ </table>
175
+
176
+ <table cellpadding="0" cellspacing="0" class="dataContent f01">
177
+ <tr>
178
+ <th>Blogs</th>
179
+ </tr>
180
+ <tr>
181
+ <td>
182
+ <a href="/blogs/detail/Clich-Skateboards-Rsum-Euro-skate-history-textbook/5184">
183
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-ae64eaf8-4b266171-09ea-f0b9efcc_thumb.jpg" width="306" height="198" alt="Cliché Skateboards\' Résumé: Euro skate history textbook" />
184
+ </a>
185
+ </td>
186
+ </tr>
187
+ <tr>
188
+ <td class="padding5">
189
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Clich-Skateboards-Rsum-Euro-skate-history-textbook/5184.html" class="title">CLICHé SKATEBOARDS' RéSUMé: EURO S&#0133;</a></p>
190
+ <p class="defaultColor02">December 14, 2009</p>
191
+ <p>Clich
192
+
193
+ 's new R
194
+
195
+ sum
196
+
197
+ book is a 10-year anniversary project that took a couple extra years since Cl&#0133; </p>
198
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Cliché Skateboards\' Résumé: Euro skate history textbook">Colin Bane</a></p>
199
+ </td>
200
+ </tr>
201
+ </table>
202
+ </li>
203
+ <li>
204
+
205
+ <table cellpadding="0" cellspacing="0" class="dataContent f00">
206
+ <tr>
207
+ <th>Blogs</th>
208
+ </tr>
209
+ <tr>
210
+ <td>
211
+ <a href="/blogs/detail/JP-Dantas-Anjinho-wins-DC-King-of-So-Paulo/5159">
212
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-ae106f18-4b1fea11-4ca3-306997e9_thumb.jpg" width="306" height="198" alt="JP Dantas \"Anjinho\" wins DC King of São Paulo" />
213
+ </a>
214
+ </td>
215
+ </tr>
216
+ <tr>
217
+ <td class="padding5">
218
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/JP-Dantas-Anjinho-wins-DC-King-of-So-Paulo/5159.html" class="title">JP DANTAS "ANJINHO" WINS DC KING OF SãO PAULO</a></p>
219
+ <p class="defaultColor02">December 09, 2009</p>
220
+ <p>The Brazilian skate dudes are taking over the whole damned world, so DC Shoes took its King Of... co&#0133; </p>
221
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="JP Dantas \"Anjinho\" wins DC King of São Paulo">Colin Bane</a></p>
222
+ </td>
223
+ </tr>
224
+ </table>
225
+
226
+ <table cellpadding="0" cellspacing="0" class="dataContent f01">
227
+ <tr>
228
+ <th>Blogs</th>
229
+ </tr>
230
+ <tr>
231
+ <td>
232
+ <a href="/blogs/detail/eBay-Watch-The-recession-is-over-Hosoi-deck-sells-for-5g/5094">
233
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b0c5b5c-749a-f0d24a99_thumb.jpg" width="306" height="198" alt="eBay Watch: The recession is over, Hosoi deck sells for $5g" />
234
+ </a>
235
+ </td>
236
+ </tr>
237
+ <tr>
238
+ <td class="padding5">
239
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/eBay-Watch-The-recession-is-over-Hosoi-deck-sells-for-5g/5094.html" class="title">EBAY WATCH: THE RECESSION IS OVER, HOSOI DECK SELLS FOR&#0133;</a></p>
240
+ <p class="defaultColor02">November 24, 2009</p>
241
+ <p>Yeah, yeah, I know: I link to Skate And Annoy's eBay Watch column just about every month. i continue&#0133; </p>
242
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="eBay Watch: The recession is over, Hosoi deck sells for $5g">Colin Bane</a></p>
243
+ </td>
244
+ </tr>
245
+ </table>
246
+ </li>
247
+ <li>
248
+
249
+ <table cellpadding="0" cellspacing="0" class="dataContent f00">
250
+ <tr>
251
+ <th>Blogs</th>
252
+ </tr>
253
+ <tr>
254
+ <td>
255
+ <a href="/blogs/detail/Chris-Cole-wins-Battle-at-the-Berrics-2/5089">
256
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b0b0f30-1fb4-1e0920e0_thumb.jpg" width="306" height="198" alt="Chris Cole wins Battle at the Berrics 2" />
257
+ </a>
258
+ </td>
259
+ </tr>
260
+ <tr>
261
+ <td class="padding5">
262
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Chris-Cole-wins-Battle-at-the-Berrics-2/5089.html" class="title">CHRIS COLE WINS BATTLE AT THE BERRICS 2</a></p>
263
+ <p class="defaultColor02">November 23, 2009</p>
264
+ <p>Chris Cole won $10,000 at Battle at the Berrics 2, beating out Paul Rodriguez in the Finals bracket.&#0133; </p>
265
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Chris Cole wins Battle at the Berrics 2">Colin Bane</a></p>
266
+ </td>
267
+ </tr>
268
+ </table>
269
+
270
+ <table cellpadding="0" cellspacing="0" class="dataContent f01">
271
+ <tr>
272
+ <th>Blogs</th>
273
+ </tr>
274
+ <tr>
275
+ <td>
276
+ <a href="/blogs/detail/Lyn-Z-Adams-Hawkins-First-female-skater-to-land-McTwist/5082">
277
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b0abad2-54db-2137b2ac_thumb.jpg" width="306" height="198" alt="Lyn-Z Adams-Hawkins: First female skater to land McTwist" />
278
+ </a>
279
+ </td>
280
+ </tr>
281
+ <tr>
282
+ <td class="padding5">
283
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Lyn-Z-Adams-Hawkins-First-female-skater-to-land-McTwist/5082.html" class="title">LYN-Z ADAMS-HAWKINS: FIRST FEMALE SKATER TO LAND MCTWIS&#0133;</a></p>
284
+ <p class="defaultColor02">November 23, 2009</p>
285
+ <p>Sick video from The Tony Hawk Show this weekend at the Gran Palais in Paris: Watch through to the 1:&#0133; </p>
286
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Lyn-Z Adams-Hawkins: First female skater to land McTwist">Colin Bane</a></p>
287
+ </td>
288
+ </tr>
289
+ </table>
290
+ </li>
291
+ <li>
292
+
293
+ <table cellpadding="0" cellspacing="0" class="dataContent f00">
294
+ <tr>
295
+ <th>Blogs</th>
296
+ </tr>
297
+ <tr>
298
+ <td>
299
+ <a href="/blogs/detail/Stephen-Colbert-skateboards-with-Congresswoman-Jackie-Speier-Reps-McGovern-Kennedy/5056">
300
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b0498d3-ae51-e9381ac1_thumb.jpg" width="306" height="198" alt="Stephen Colbert skateboards with Congresswoman Jackie Speier, Reps McGovern & Kennedy" />
301
+ </a>
302
+ </td>
303
+ </tr>
304
+ <tr>
305
+ <td class="padding5">
306
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Stephen-Colbert-skateboards-with-Congresswoman-Jackie-Speier-Reps-McGovern-Kennedy/5056.html" class="title">STEPHEN COLBERT SKATEBOARDS WITH CONGRESSWOMAN JACKIE S&#0133;</a></p>
307
+ <p class="defaultColor02">November 18, 2009</p>
308
+ <p>The Colbert Report earns its way onto this skate blog this week with its "Better Know a District" se&#0133; </p>
309
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Stephen Colbert skateboards with Congresswoman Jackie Speier, Reps McGovern & Kennedy">Colin Bane</a></p>
310
+ </td>
311
+ </tr>
312
+ </table>
313
+
314
+ <table cellpadding="0" cellspacing="0" class="dataContent f01">
315
+ <tr>
316
+ <th>Blogs</th>
317
+ </tr>
318
+ <tr>
319
+ <td>
320
+ <a href="/blogs/detail/SF-Skateboarding-Association-benefit-tonight-1115/5044">
321
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b001541-e558-96bf729e_thumb.jpg" width="306" height="198" alt="SF Skateboarding Association benefit tonight 11/15" />
322
+ </a>
323
+ </td>
324
+ </tr>
325
+ <tr>
326
+ <td class="padding5">
327
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/SF-Skateboarding-Association-benefit-tonight-1115/5044.html" class="title">SF SKATEBOARDING ASSOCIATION BENEFIT TONIGHT 11/15</a></p>
328
+ <p class="defaultColor02">November 15, 2009</p>
329
+ <p>Heads up, San Francisco: The SFSA is having a big benefit event tonight at 111 Minna Art Gallery to &#0133; </p>
330
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="SF Skateboarding Association benefit tonight 11/15">Colin Bane</a></p>
331
+ </td>
332
+ </tr>
333
+ </table>
334
+ </li>
335
+ <li>
336
+
337
+ <table cellpadding="0" cellspacing="0" class="dataContent f00">
338
+ <tr>
339
+ <th>Blogs</th>
340
+ </tr>
341
+ <tr>
342
+ <td>
343
+ <a href="/blogs/detail/Voting-open-now-for-Thrasher-Skater-Of-The-Year-2009/5036">
344
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-d8a08c64-4afda08f-76fd-72cf6454_thumb.jpg" width="306" height="198" alt="Voting open now for Thrasher Skater Of The Year 2009" />
345
+ </a>
346
+ </td>
347
+ </tr>
348
+ <tr>
349
+ <td class="padding5">
350
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/Voting-open-now-for-Thrasher-Skater-Of-The-Year-2009/5036.html" class="title">VOTING OPEN NOW FOR THRASHER SKATER OF THE YEAR 2009</a></p>
351
+ <p class="defaultColor02">November 13, 2009</p>
352
+ <p>Yep, it's that time of year again: Get on over to ThrasherMagazine.com to check out their new SOTY p&#0133; </p>
353
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="Voting open now for Thrasher Skater Of The Year 2009">Colin Bane</a></p>
354
+ </td>
355
+ </tr>
356
+ </table>
357
+
358
+ <table cellpadding="0" cellspacing="0" class="dataContent f01">
359
+ <tr>
360
+ <th>Blogs</th>
361
+ </tr>
362
+ <tr>
363
+ <td>
364
+ <a href="/blogs/detail/UPDATE-Steve-Rodriguez-on-the-sketchy-future-for-Brooklyn-Banks/5025">
365
+ <img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-d8a08c64-4afb2e23-d79f-12d3449c_thumb.jpg" width="306" height="198" alt="UPDATE: Steve Rodriguez on the sketchy future for Brooklyn Banks" />
366
+ </a>
367
+ </td>
368
+ </tr>
369
+ <tr>
370
+ <td class="padding5">
371
+ <p><a href="http://colinbane.bnqt.com/blogs/detail/UPDATE-Steve-Rodriguez-on-the-sketchy-future-for-Brooklyn-Banks/5025.html" class="title">UPDATE: STEVE RODRIGUEZ ON THE SKETCHY FUTURE FOR BROOK&#0133;</a></p>
372
+ <p class="defaultColor02">November 11, 2009</p>
373
+ <p>As we've previously reported, it looks like the legendary skate spot Brooklyn Banks is at least temp&#0133; </p>
374
+ <p>by: <a href="http://colinbane.bnqt.com/user/Colin-Bane/5.html" title="UPDATE: Steve Rodriguez on the sketchy future for Brooklyn Banks">Colin Bane</a></p>
375
+ </td>
376
+ </tr>
377
+ </table>
378
+ </li>
379
+
380
+ </ul>
381
+ </div>
382
+ <div class="clearFloats"></div>
383
+ </div>
384
+ <!--/.content-->
385
+ <div class="indicatorsContainer">
386
+ <div id="featuredPaginationCtner" class="indicator">
387
+ </div>
388
+ <!--/.indicators-->
389
+ <div class="clearFloats"></div>
390
+ </div>
391
+ <!--/.indicatorsContainer-->
392
+
393
+ </div>
394
+ <!--/.box01 features-->
395
+
396
+
397
+
398
+
399
+ <div class="box01 blogPost">
400
+ <h3>November 20, 2009 &raquo; <span class="uppercase">Blogs</span></h3>
401
+ <h4><a href="http://colinbane.bnqt.com/blogs/detail/Skate-and-Annoy-is-back-at-it-pass-the-word/5067.html" title="Skate and Annoy is back at it, pass the word" class="title">Skate and Annoy is back at it, pass the word</a><br />
402
+ <span>by: <a href="http://colinbane.bnqt.com/user/Colin Bane/5.html" title="Skate and Annoy is back at it, pass the word">Colin Bane</a></span></h4>
403
+ <div class="content">
404
+ <div class="blogBody">
405
+ <p><span class="blogImg alignleft"><a href="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b071a41-4335-ea08152d.jpg" class="lightview" rel="gallery[Skate and Annoy is back at it, pass the word]" title=""><img style="float: left; margin: 5px;" src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-3fe17f2e-4b071a41-4335-ea08152d_thumb.jpg" id="media_15627" mediaimage="15627" height="180" width="300" /></a><span class="blogImgDesc defaultLinkColor03 defaultColor02"></span></span>Spread the word: One of my favorite sites, <a target="_blank" href="http://skateandannoy.com/2009/11/fickle/">Skate And Annoy, is annoying again</a>.</p>
406
+ <p>Here's a quick note from the editor, Kilwag:</p>
407
+ <p>After a really rocky month and many false starts, Skate and Annoy has been back up for over a week now. It seems like we
408
+
409
+
410
+ ve lost about 40 -50% of our traffic, but the trend is creeping upward. Do me a favor and spread the word that we
411
+
412
+
413
+ re here, (we
414
+
415
+
416
+ re queer- or mongo? goofy?) get used to it.</p> </div>
417
+ <div class="clearFloats"></div>
418
+
419
+ </div>
420
+ <!--/.content-->
421
+ </div>
422
+
423
+ <div class="box01 blogPost">
424
+ <h3>November 11, 2009 &raquo; <span class="uppercase">Blogs</span></h3>
425
+ <h4><a href="http://colinbane.bnqt.com/blogs/detail/Tony-Hawk-coolest-guy-ever-to-wear-a-dorky-helmet-on-NPR-Not-My-Job/5024.html" title="Tony Hawk, \'coolest guy ever to wear a dorky helmet,\' on NPR \'Not My Job\'" class="title">Tony Hawk, 'coolest guy ever to wear a dorky helmet,' on NPR 'Not My Job'</a><br />
426
+ <span>by: <a href="http://colinbane.bnqt.com/user/Colin Bane/5.html" title="Tony Hawk, \'coolest guy ever to wear a dorky helmet,\' on NPR \'Not My Job\'">Colin Bane</a></span></h4>
427
+ <div class="content">
428
+ <div class="blogBody">
429
+ <p><span class="blogImg alignleft"><a href="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-d8a08c64-4afb1d8b-806a-2dcf904c.jpg" class="lightview" rel="gallery[Tony Hawk, &amp;apos;coolest guy ever to wear a dorky helmet,&amp;apos; on NPR &amp;apos;Not My Job&amp;apos;]" title=""><img style="float: left; margin: 5px;" src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-d8a08c64-4afb1d8b-806a-2dcf904c_thumb.jpg" id="media_15523" mediaimage="15523" height="180" width="300" /></a><span class="blogImgDesc defaultLinkColor03 defaultColor02"></span></span><a target="_blank" href="http://www.npr.org/templates/story/story.php?storyId=120167628&sc=emaf">Tony Hawk was on NPR's "Not My Job" </a>show this week, answering some ridiculous "Hey! You could put an eye out!" questions about safety measures not at all related to skateboarding. He also takes on the stock "I've been dying to ask this question: How many broken bones have you had in your lifetime?" question from one of the show's hosts, talks about his legacy of Madonnas and Sean Penns, and mentions the trumpedup pundit outrage after he skateboarded in the White House.</p>
430
+ <p>"What did they expect you to do, walk?"</p>
431
+ <p>Tony Hawk on NPR? Dude's everywhere. As long as it ultimately <a target="_blank" href="http://tonyhawkfoundation.org/">helps get more killer concrete skateparks put up all over the damned place</a>, I'm cool with it.</p>
432
+ <p>Have a listen:</p>
433
+ <p>
434
+ <object width="400" height="386" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
435
+
436
+
437
+ <embed src="http://www.npr.org/v2/?i=120167628&m=120196850&t=audio" type="application/x-shockwave-flash" width="400" height="386" wmode="opaque" allowfullscreen="true"></embed>
438
+ </object>
439
+ </p> </div>
440
+ <div class="clearFloats"></div>
441
+
442
+ </div>
443
+ <!--/.content-->
444
+ </div>
445
+
446
+ <div class="box01 blogPost">
447
+ <h3>November 10, 2009 &raquo; <span class="uppercase">Blogs</span></h3>
448
+ <h4><a href="http://colinbane.bnqt.com/blogs/detail/Skateboard-Evolution-Art-in-California-opens-1114-California-Heritage-Museum/5017.html" title="Skateboard Evolution & Art in California opens 11/14, California Heritage Museum" class="title">Skateboard Evolution & Art in California opens 11/14, California Heritage Museum</a><br />
449
+ <span>by: <a href="http://colinbane.bnqt.com/user/Colin Bane/5.html" title="Skateboard Evolution & Art in California opens 11/14, California Heritage Museum">Colin Bane</a></span></h4>
450
+ <div class="content">
451
+ <div class="blogBody">
452
+ <p><img style="float: left; margin: 5px;" src="http://web.mac.com/calmuseum/Site/Upcoming_files/Picture 1.jpg" height="395" width="284" />Skateboard art is getting big props for its role in California culture this weekend: The California Heritage Museum in Santa Monica opens its new Skateboard Evolution & Art exhibit on Saturday.</p>
453
+ <p>Here's the full press release <a target="_blank" href="http://web.mac.com/calmuseum/Site/Upcoming.html">via California Heritage Museum</a>:</p>
454
+ <p style="padding: 0px;">
455
+
456
+ </p>
457
+ <p style="padding-top: 0pt;"><span style="line-height: 15px;">The California Heritage Museum is proud to present
458
+
459
+
460
+ SKATEBOARD: Evolution and Art in California.
461
+
462
+
463
+ The show opens to the general public on Saturday, November 14, 2009 and continues through Sunday, May 30, 2010. <br /></span></p>
464
+ <p><span style="line-height: 15px;">Guest curated by legendary Z-boy Nathan Pratt in conjunction with museum staff curator Michael Trotter and advisory committee members Jeff Ho, Skip Engblom (Zephyr co-founders), Cris Dawson (1966 Hobie Champ), Z-Boys Tony Alva and Stacy Peralta, and 1980
465
+
466
+
467
+ s world champion Christian Hosoi, the exhibition traces the evolution of boards from pre-1950 to the present showcasing the riders, designers, artists, and manufacturers that created the California phenomenon known as the skateboard. From the first planks of wood with metal roller skate wheels nailed to the bottom to the modern polyurethane wheels and kicktails, the boards have rocketed the skaters to greater heights of performance and style while taking
468
+
469
+
470
+ sidewalk surfing
471
+
472
+
473
+ from a homegrown activity to a worldwide cultural phenomenon.<br /></span></p>
474
+ <p><span style="line-height: 15px;">More than 275 rare boards from the world
475
+
476
+
477
+ s finest collections including</span><span style="line-height: 15px;" xml:lang="--multilingual" lang="--multilingual"> Jason Cohn, Dale Smith/Skate Designs Inc., Todd Huber/Skatelab Skatepark, Ray Flores, James Lang/South Bay Skates.<br /></span></p>
478
+ <p><span style="line-height: 15px;" xml:lang="--multilingual" lang="--multilingual">Additional lenders included are Kevin Anderson/Model Worm, Art Brewer, Terry Campion, Cris Dawson, Deluxe Distribution, Earl, Skip Engblom, Craig Fineman, Wayne and Donna Gunter/Surfing Cowboys, Mike Horelick/Tunnel Skateboards,
479
+
480
+ Chuck Katx, Mike Kolar, Gordon McClelland, Jim McDowell/RIPWynn City Skates, Marc McKee, Aaron
481
+
482
+ Murray, James O
483
+
484
+
485
+ Mahoney/Santa Barbara Surfing Museum, Nathan Pratt, Mark Richards/Val Surf, Ronnie/Animal House, Steve Salyer/Pastures of Heaven, Gabriel Steptoe, Joel Tudor, Wentzle Ruml IV, Cary B. Weiss, Z-BOY Archive, and Z-CULT Skates</span><span style="line-height: 15px;">. Photographs and art by C.R. Stecyk III, Glen E. Friedman,
486
+
487
+ Craig Fineman,
488
+
489
+ Wynn Miller, Kevin Ancell, Wes Humpston and more document the movement and its personalities. <br /></span></p>
490
+ <p><span style="line-height: 15px;">This is the first exhibition of the California skate movement to be shown in
491
+
492
+
493
+ Dog Town
494
+
495
+
496
+ , the Santa Monica/Ocean Park area where modern skateboarding was born and the skate became an art form. The California Heritage Museum is located in the vortex at Main Street and Ocean Park Boulevard.
497
+
498
+ <br /></span></p>
499
+ <p style="padding-bottom: 0pt;"><span style="line-height: 15px;">A full series of events, including film screenings of </span><span style="line-height: 15px;">Dogtown and Z-Boys</span><span style="line-height: 15px;">, </span><span style="line-height: 15px;">Skater Dater</span><span style="line-height: 15px;"> and </span><span style="line-height: 15px;">Rising Son: The Christian Hosoi Story</span><span style="line-height: 15px;">, will take place at the museum and the downtown Santa Monica Library. Talks, photo exhibits, special guest appearances and autograph sessions will take place throughout the exhibit run into 2010.</span></p>
500
+ <p style="padding: 0px;">
501
+
502
+ </p>
503
+ <p style="padding-top: 0pt; line-height: 21.185px;"><span style="line-height: 21.185px;">Opening November 14, 2009<br /></span></p> </div>
504
+ <div class="clearFloats"></div>
505
+
506
+ </div>
507
+ <!--/.content-->
508
+ </div>
509
+
510
+ <div class="box01 blogPost">
511
+ <h3>November 03, 2009 &raquo; <span class="uppercase">Blogs</span></h3>
512
+ <h4><a href="http://colinbane.bnqt.com/blogs/detail/Etnies-pimps-out-a-Casa-Surf-suite-at-La-Casa-del-Camino/5000.html" title="Etnies pimps out a Casa Surf suite at La Casa del Camino" class="title">Etnies pimps out a Casa Surf suite at La Casa del Camino</a><br />
513
+ <span>by: <a href="http://colinbane.bnqt.com/user/Colin Bane/5.html" title="Etnies pimps out a Casa Surf suite at La Casa del Camino">Colin Bane</a></span></h4>
514
+ <div class="content">
515
+ <div class="blogBody">
516
+ <p>My FUEL.TV colleague Carlton Curtis is up today with a sweet slideshow from the new Casa Surf project at La Casa del Camino in Laguna Beach, CA, including this shot from the Etnies Suite.</p>
517
+ <p><a target="_blank" href="http://www.fuel.tv/carletoncurtis/blogs/view/76734">Via FUEL.TV</a>:</p>
518
+ <p>Talk about "extreme" makeovers. Orange County's Riviera Magazine invited ten SoCal surf-and-skate brands to imagine what their dream room would look like the results of which can now be found at the Riviera Design Series' "Casa Surf Project". It's a novel concept, really: Brands like Quiksilver, Billabong, and Etnies have already conquered the apparel game, so why not spruce up the place where we end up after a day of ripping? Home sweet home. </p>
519
+ <p><img src="http://ss.servers.fuel.tv/ugc/carletoncurtis/pictures/UF_44327/preview_url_max_540_IMG_4136_JPG.jpg" style="margin: 5px;" height="360" width="540" /></p> </div>
520
+ <div class="clearFloats"></div>
521
+
522
+ </div>
523
+ <!--/.content-->
524
+ </div>
525
+
526
+ <div class="box01 blogPost">
527
+ <h3>October 28, 2009 &raquo; <span class="uppercase">Blogs</span></h3>
528
+ <h4><a href="http://colinbane.bnqt.com/blogs/detail/Chaz-Ortiz-Officially-Down-with-ZY/4980.html" title="Chaz Ortiz: \'Officially Down\' with ZY" class="title">Chaz Ortiz: 'Officially Down' with ZY</a><br />
529
+ <span>by: <a href="http://colinbane.bnqt.com/user/Colin Bane/5.html" title="Chaz Ortiz: \'Officially Down\' with ZY">Colin Bane</a></span></h4>
530
+ <div class="content">
531
+ <div class="blogBody">
532
+ <p><img style="float: left; margin: 5px;" src="http://www.zooyork.com/blog/wp-content/uploads/2009/10/thrasher-ad.jpg" height="353" width="547" />Looks like Zoo York is giving up the game of pretending Chaz Ortiz isn't a pro, after winning the 2008 Dew Tour and little events like the... uh... PlayStation Pro, and then holding his own for another year of pro competition all over the place in 2009.</p>
533
+ <p>Peep this new ZY ad: <a target="_blank" href="http://www.zooyork.com/blog/officially-down-ad-2-chaz-ortiz/">Chaz Ortiz is Officially Down</a>.</p> </div>
534
+ <div class="clearFloats"></div>
535
+
536
+ </div>
537
+ <!--/.content-->
538
+ </div>
539
+
540
+
541
+ <div class="clearFloats"></div>
542
+ <div class="pagination floatRight">
543
+ 1<a href="http://colinbane.bnqt.com/post_date/5">2</a><a href="http://colinbane.bnqt.com/post_date/10">3</a><a href="http://colinbane.bnqt.com/post_date/5">&gt</a><a href="http://colinbane.bnqt.com/post_date/455">Last &rsaquo;</a> </div>
544
+ <div class="clearFloats"></div>
545
+
546
+ <!--/.content-->
547
+
548
+
549
+
550
+
551
+
552
+ </div>
553
+ <!--/.leftPanel-->
554
+
555
+
556
+
557
+ <div class="rightPanel">
558
+ <div class="box01 recentComments">
559
+ <h1 class="defaultColor02"><span>Recent Comments</span></h1>
560
+ <div class="content">
561
+ <table cellpadding="0" cellspacing="0" class="dataContent">
562
+ <col width="39" />
563
+ <col width="*" />
564
+ <tr>
565
+ <td><a href="/blogs/detail/Chaz-Ortiz-Officially-Down-with-ZY/4980"><img src="http://img.bnqt.com/CMS/bnqt/network/colinbane.bnqt.com/media/colin-bane/0005-ae64eaf8-4ae87329-2a77-eeb08839_thumb.jpg" width="39" alt="Chaz Ortiz: \'Officially Down\' with ZY"/></td>
566
+ <td class="defaultColor02">
567
+ <p>By: hammers young</p>
568
+ <p>On:
569
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
570
+
571
+ <h4>A PHP Error was encountered</h4>
572
+
573
+ <p>Severity: Notice</p>
574
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
575
+ <p>Filename: template/container.php(14) : eval()'d code</p>
576
+ <p>Line Number: 27</p>
577
+
578
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Chaz-Ortiz-Officially-Down-with-ZY/4980.html" title="title">Chaz Ortiz: 'Officially Down' with</a>&#0133; </p>
579
+ </td>
580
+ </tr>
581
+ </table>
582
+ <table cellpadding="0" cellspacing="0" class="dataContent">
583
+ <col width="39" />
584
+ <col width="*" />
585
+ <tr>
586
+ <td><a href="/blogs/detail/Axel-Cruysberghs-Wins-2009-European-Skateboard-Championships/610"><img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/colin-bane/0005-4ca7ffb1-4a827ae3-ea27-5baeb804_thumb.jpg" width="39" alt="Axel Cruysberghs Wins 2009 European Skateboard Championships"/></td>
587
+ <td class="defaultColor02">
588
+ <p>By: cici</p>
589
+ <p>On:
590
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
591
+
592
+ <h4>A PHP Error was encountered</h4>
593
+
594
+ <p>Severity: Notice</p>
595
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
596
+ <p>Filename: template/container.php(14) : eval()'d code</p>
597
+ <p>Line Number: 27</p>
598
+
599
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Axel-Cruysberghs-Wins-2009-European-Skateboard-Championships/610.html" title="title">Axel Cruysberghs Wins 2009 Europea</a>&#0133; </p>
600
+ </td>
601
+ </tr>
602
+ </table>
603
+ <table cellpadding="0" cellspacing="0" class="dataContent">
604
+ <col width="39" />
605
+ <col width="*" />
606
+ <tr>
607
+ <td><a href="/blogs/detail/Mukee-Design-Recycled-Skateboard-Jewelry/601"><img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/colin-bane/0005-4ca7ffb1-4a827acb-1b67-3fa4749b_thumb.jpg" width="39" alt="Mukee Design: Recycled Skateboard Jewelry"/></td>
608
+ <td class="defaultColor02">
609
+ <p>By: Chris</p>
610
+ <p>On:
611
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
612
+
613
+ <h4>A PHP Error was encountered</h4>
614
+
615
+ <p>Severity: Notice</p>
616
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
617
+ <p>Filename: template/container.php(14) : eval()'d code</p>
618
+ <p>Line Number: 27</p>
619
+
620
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Mukee-Design-Recycled-Skateboard-Jewelry/601.html" title="title">Mukee Design: Recycled Skateboard </a>&#0133; </p>
621
+ </td>
622
+ </tr>
623
+ </table>
624
+ <table cellpadding="0" cellspacing="0" class="dataContent">
625
+ <col width="39" />
626
+ <col width="*" />
627
+ <tr>
628
+ <td><a href="/blogs/detail/Dew-Tour-Debuts-Womens-Comp-at-ISF-Skate-Open-Ladies-Lineup-Announced/589"><img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/colin-bane/0005-4ca7ffb1-4a827aad-8b87-661716da_thumb.jpg" width="39" alt="Dew Tour Debuts Women\'s Comp at ISF Skate Open; Ladies\' Lineup Announced"/></td>
629
+ <td class="defaultColor02">
630
+ <p>By: cheap-prada.com</p>
631
+ <p>On:
632
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
633
+
634
+ <h4>A PHP Error was encountered</h4>
635
+
636
+ <p>Severity: Notice</p>
637
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
638
+ <p>Filename: template/container.php(14) : eval()'d code</p>
639
+ <p>Line Number: 27</p>
640
+
641
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Dew-Tour-Debuts-Womens-Comp-at-ISF-Skate-Open-Ladies-Lineup-Announced/589.html" title="title">Dew Tour Debuts Women's Comp at IS</a>&#0133; </p>
642
+ </td>
643
+ </tr>
644
+ </table>
645
+ <table cellpadding="0" cellspacing="0" class="dataContent">
646
+ <col width="39" />
647
+ <col width="*" />
648
+ <tr>
649
+ <td><a href="/blogs/detail/Sneak-Peek-National-Museum-of-American-Indian-Ramp-It-Up-Skateboard-Culture-in-Native-America/552"><img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/colin-bane/0005-4ca7ffb1-4a827a3d-46e2-36f20c5a_thumb.jpg" width="39" alt="Sneak Peek: National Museum of American Indian \'Ramp It Up: Skateboard Culture in Native America\'"/></td>
650
+ <td class="defaultColor02">
651
+ <p>By: nativeskatepark</p>
652
+ <p>On:
653
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
654
+
655
+ <h4>A PHP Error was encountered</h4>
656
+
657
+ <p>Severity: Notice</p>
658
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
659
+ <p>Filename: template/container.php(14) : eval()'d code</p>
660
+ <p>Line Number: 27</p>
661
+
662
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Sneak-Peek-National-Museum-of-American-Indian-Ramp-It-Up-Skateboard-Culture-in-Native-America/552.html" title="title">Sneak Peek: National Museum of Ame</a>&#0133; </p>
663
+ </td>
664
+ </tr>
665
+ </table>
666
+ <table cellpadding="0" cellspacing="0" class="dataContent">
667
+ <col width="39" />
668
+ <col width="*" />
669
+ <tr>
670
+ <td><a href="/blogs/detail/Sneak-Peek-National-Museum-of-American-Indian-Ramp-It-Up-Skateboard-Culture-in-Native-America/552"><img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/colin-bane/0005-4ca7ffb1-4a827a3d-46e2-36f20c5a_thumb.jpg" width="39" alt="Sneak Peek: National Museum of American Indian \'Ramp It Up: Skateboard Culture in Native America\'"/></td>
671
+ <td class="defaultColor02">
672
+ <p>By: nativeskatepark</p>
673
+ <p>On:
674
+ <div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
675
+
676
+ <h4>A PHP Error was encountered</h4>
677
+
678
+ <p>Severity: Notice</p>
679
+ <p>Message: Undefined index: HTTP_USER_AGENT</p>
680
+ <p>Filename: template/container.php(14) : eval()'d code</p>
681
+ <p>Line Number: 27</p>
682
+
683
+ </div><a href="http://colinbane.bnqt.com/blogs/detail/Sneak-Peek-National-Museum-of-American-Indian-Ramp-It-Up-Skateboard-Culture-in-Native-America/552.html" title="title">Sneak Peek: National Museum of Ame</a>&#0133; </p>
684
+ </td>
685
+ </tr>
686
+ </table>
687
+ <div class="clearFloats"></div>
688
+ </div>
689
+ <!--/.content-->
690
+ </div>
691
+ <!--/.box01 recentlyAdded-->
692
+ <div class="ad02" id="OAS_Middle">
693
+
694
+ </div>
695
+
696
+ <div class="box01 tags">
697
+ <h1 class="defaultColor02"><span>Tags</span></h1>
698
+ <div class="content">
699
+ <p> <a href="/search/blogs/P-Rod"><span style="font-size: 13px !important;">P-Rod</span></a>
700
+ <a href="/search/blogs/Dayne-Brummett"><span style="font-size: 11px !important;">Dayne Brummett</span></a>
701
+ <a href="/search/blogs/Mike-Barnes"><span style="font-size: 11px !important;">Mike Barnes</span></a>
702
+ <a href="/search/blogs/Ben-Raybourn"><span style="font-size: 11px !important;">Ben Raybourn</span></a>
703
+ <a href="/search/blogs/Michael-Brooke"><span style="font-size: 11px !important;">Michael Brooke</span></a>
704
+ <a href="/search/blogs/Stu-Graham"><span style="font-size: 11px !important;">Stu Graham</span></a>
705
+ <a href="/search/blogs/Pedro-Barros"><span style="font-size: 11px !important;">Pedro Barros</span></a>
706
+ <a href="/search/blogs/Cailin-Lee"><span style="font-size: 11px !important;">Cailin Lee</span></a>
707
+ <a href="/search/blogs/Dylan-Perry"><span style="font-size: 11px !important;">Dylan Perry</span></a>
708
+ <a href="/search/blogs/Nora-Vasconcellos"><span style="font-size: 11px !important;">Nora Vasconcellos</span></a>
709
+ <a href="/search/blogs/Allen-Danze"><span style="font-size: 11px !important;">Allen Danze</span></a>
710
+ <a href="/search/blogs/Glen-E.-Friedman"><span style="font-size: 11px !important;">Glen E. Friedman</span></a>
711
+ <a href="/search/blogs/Nate-LaCoste"><span style="font-size: 11px !important;">Nate LaCoste</span></a>
712
+ <a href="/search/blogs/Bones-Brigade"><span style="font-size: 11px !important;">Bones Brigade</span></a>
713
+ <a href="/search/blogs/Colby-Carter"><span style="font-size: 11px !important;">Colby Carter</span></a>
714
+ <a href="/search/blogs/Rick-Thorne"><span style="font-size: 11px !important;">Rick Thorne</span></a>
715
+ <a href="/search/blogs/Paul-Zitzer"><span style="font-size: 11px !important;">Paul Zitzer</span></a>
716
+ <a href="/search/blogs/Phil-Hansen"><span style="font-size: 11px !important;">Phil Hansen</span></a>
717
+ <a href="/search/blogs/Paul-Cullen"><span style="font-size: 11px !important;">Paul Cullen</span></a>
718
+ <a href="/search/blogs/Timeline-Skateboards"><span style="font-size: 11px !important;">Timeline Skateboards</span></a>
719
+ <a href="/search/blogs/Cordell-Mansfield"><span style="font-size: 11px !important;">Cordell Mansfield</span></a>
720
+ <a href="/search/blogs/FUEL.TV"><span style="font-size: 11px !important;">FUEL.TV</span></a>
721
+ <a href="/search/blogs/Mark-Appleyard"><span style="font-size: 12px !important;">Mark Appleyard</span></a>
722
+ <a href="/search/blogs/Austin-Ayers"><span style="font-size: 11px !important;">Austin Ayers</span></a>
723
+ <a href="/search/blogs/Dave-Bachinsky"><span style="font-size: 12px !important;">Dave Bachinsky</span></a>
724
+ </p>
725
+ </div>
726
+ <!--/.content-->
727
+ </div>
728
+ <!--/.box01 tags-->
729
+
730
+
731
+ <div class="ad03" id="OAS_Middle1">
732
+
733
+ </div>
734
+
735
+
736
+ </div>
737
+ <!--/.rightPanel-->
738
+ <div class="clearFloats"></div>
739
+ <div id="OAS_Bottom" class="ad"></div>
740
+ </div>
741
+ <!--/masterContainer--><!--END INCLUDED CONTENT-->
742
+ <!--// Test -->
743
+
744
+ <div class="box01 moreBNQT">
745
+ <h2><span>More on BNQT</span></h2>
746
+ <div class="content">
747
+ <table cellpadding="0" cellspacing="0" border="0" width="100%">
748
+ <col width="5%" />
749
+ <col width="90%" />
750
+ <col width="5%" />
751
+ <tr>
752
+ <td align="center"><a href="javascript: void(0);" id="ho_next" title="Previous">&#9664;</a></td>
753
+ <td>
754
+
755
+ <div id="moreOnBNQT" class="horinaja">
756
+ <ul>
757
+ <li>
758
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
759
+ <tr>
760
+ <td height="113">
761
+ <a href="http://www.bnqt.com/blogs/detail/Badass-Freediver-Holds-Lungs-Breaks-Records/10229" target="_blank">
762
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb4754c-77b5-2defb986_thumb.jpg" width="165" alt="Badass Freediver Holds Lungs / Breaks Records" />
763
+ </a></td>
764
+ </tr>
765
+ <tr>
766
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
767
+ <p><a href="http://www.bnqt.com/blogs/detail/Badass-Freediver-Holds-Lungs-Breaks-Records/10229" target="blank">Badass Freediver Holds Lungs / Breaks Records</a></p>
768
+
769
+
770
+ </td>
771
+ </tr>
772
+ </table>
773
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
774
+ <tr>
775
+ <td height="113">
776
+ <a href="http://www.bnqt.com/blogs/detail/Bouldering-Champion-Gets-Grilled-by-Bear-Grylls/10230" target="_blank">
777
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb47683-cc63-1dbffa70_thumb.jpg" width="165" alt="Bouldering Champion Gets Grilled by Bear Grylls" />
778
+ </a></td>
779
+ </tr>
780
+ <tr>
781
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
782
+ <p><a href="http://www.bnqt.com/blogs/detail/Bouldering-Champion-Gets-Grilled-by-Bear-Grylls/10230" target="blank">Bouldering Champion Gets Grilled by Bear Grylls</a></p>
783
+
784
+
785
+ </td>
786
+ </tr>
787
+ </table>
788
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
789
+ <tr>
790
+ <td height="113">
791
+ <a href="http://www.bnqt.com/blogs/detail/Rob-Dyrdeks-Girlfriend-is-Smokin/8164" target="_blank">
792
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4dc0997d-45b2-f61f94db_thumb.jpg" width="165" alt="Rob Dyrdek\'s Girlfriend is Smokin\'" />
793
+ </a></td>
794
+ </tr>
795
+ <tr>
796
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
797
+ <p><a href="http://www.bnqt.com/blogs/detail/Rob-Dyrdeks-Girlfriend-is-Smokin/8164" target="blank">Rob Dyrdek's Girlfriend is Smokin'</a></p>
798
+
799
+
800
+ </td>
801
+ </tr>
802
+ </table>
803
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
804
+ <tr>
805
+ <td height="113">
806
+ <a href="http://thedailyrotter.com/blogs/detail/The-Gsport-Ratchet-Hubguard-Steven-Seagal-Tested-And-Reviewed/5090" target="_blank">
807
+ <img src="http://img.bnqt.com/CMS/bnqt/network/the-daily-rotter/media/alex-bermudez/000b-181e93bf-4b0bc3d8-f6e7-1c900116_thumb.jpg" width="165" alt="The Gsport Ratchet Hubguard: Steven Seagal Tested And Reviewed." />
808
+ </a></td>
809
+ </tr>
810
+ <tr>
811
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
812
+ <p><a href="http://thedailyrotter.com/blogs/detail/The-Gsport-Ratchet-Hubguard-Steven-Seagal-Tested-And-Reviewed/5090" target="blank">The Gsport Ratchet Hubguard: Steven Seagal Tested And Reviewed.</a></p>
813
+
814
+
815
+ </td>
816
+ </tr>
817
+ </table>
818
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
819
+ <tr>
820
+ <td height="113">
821
+ <a href="http://www.bnqt.com/blogs/detail/Would-You-Monyca-byrne-Wickey/10179" target="_blank">
822
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/would-you/0001-aefe3553-4eb0133f-87df-178649b5_thumb.jpg" width="165" alt="Would You? - Monyca byrne-Wickey" />
823
+ </a></td>
824
+ </tr>
825
+ <tr>
826
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
827
+ <p><a href="http://www.bnqt.com/blogs/detail/Would-You-Monyca-byrne-Wickey/10179" target="blank">Would You? - Monyca byrne-Wickey</a></p>
828
+
829
+
830
+ </td>
831
+ </tr>
832
+ </table>
833
+ </li>
834
+ <li>
835
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
836
+ <tr>
837
+ <td height="113">
838
+ <a href="http://www.bnqt.com/blogs/detail/Veronika-Sznajder-Would-You/10362" target="_blank">
839
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-45360772-4ecbb089-3557-bdce1614_thumb.jpg" width="165" alt="Veronika Sznajder: Would You?" />
840
+ </a></td>
841
+ </tr>
842
+ <tr>
843
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
844
+ <p><a href="http://www.bnqt.com/blogs/detail/Veronika-Sznajder-Would-You/10362" target="blank">Veronika Sznajder: Would You?</a></p>
845
+
846
+
847
+ </td>
848
+ </tr>
849
+ </table>
850
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
851
+ <tr>
852
+ <td height="113">
853
+ <a href="http://BMXwonderland.com/blogs/detail/Baco-a-Go-Go-comp-in-WISCONSIN/5072" target="_blank">
854
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bmxwonderland.com/media/justin-kosman/0006-181e93bf-4b085504-7eba-f454ec20_thumb.jpg" width="165" alt="Baco-a-Go-Go comp in WISCONSIN" />
855
+ </a></td>
856
+ </tr>
857
+ <tr>
858
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
859
+ <p><a href="http://BMXwonderland.com/blogs/detail/Baco-a-Go-Go-comp-in-WISCONSIN/5072" target="blank">Baco-a-Go-Go comp in WISCONSIN</a></p>
860
+
861
+
862
+ </td>
863
+ </tr>
864
+ </table>
865
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
866
+ <tr>
867
+ <td height="113">
868
+ <a href="http://www.bnqt.com/blogs/detail/Top-10-Skateboarding-Career-Comebacks/10197" target="_blank">
869
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/jay-r/0001-42c20dd2-4eb20df3-fd1f-8f570200_thumb.jpg" width="165" alt="Top 10 - Skateboarding Career Comebacks" />
870
+ </a></td>
871
+ </tr>
872
+ <tr>
873
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
874
+ <p><a href="http://www.bnqt.com/blogs/detail/Top-10-Skateboarding-Career-Comebacks/10197" target="blank">Top 10 - Skateboarding Career Comebacks</a></p>
875
+
876
+
877
+ </td>
878
+ </tr>
879
+ </table>
880
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
881
+ <tr>
882
+ <td height="113">
883
+ <a href="http://www.bnqt.com/blogs/detail/Watch-Naive-Internet-Fan-Get-Tased-by-Crazy-Russian/10221" target="_blank">
884
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb42b92-2de6-2b5e395f_thumb.jpg" width="165" alt="Watch Naive Internet Fan Get Tased by Crazy Russian" />
885
+ </a></td>
886
+ </tr>
887
+ <tr>
888
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
889
+ <p><a href="http://www.bnqt.com/blogs/detail/Watch-Naive-Internet-Fan-Get-Tased-by-Crazy-Russian/10221" target="blank">Watch Naive Internet Fan Get Tased by Crazy Russian</a></p>
890
+
891
+
892
+ </td>
893
+ </tr>
894
+ </table>
895
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
896
+ <tr>
897
+ <td height="113">
898
+ <a href="http://bmxunion.bnqt.com/videos/detail/The-Union-Dave-Mahoney-at-Vans-Skatepark/1244040692001" target="_blank">
899
+ <img src="http://img.bnqt.com/CMS/bnqt/network/the-union/media/bmx-union/images/0044-602a55b8-4ea96ae2-c3e0-27580db0_thumb.jpg" width="165" alt="The Union - Dave Mahoney at Vans Skatepark" />
900
+ </a></td>
901
+ </tr>
902
+ <tr>
903
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
904
+ <p><a href="http://bmxunion.bnqt.com/videos/detail/The-Union-Dave-Mahoney-at-Vans-Skatepark/1244040692001" target="blank">The Union - Dave Mahoney at Vans Skatepark</a></p>
905
+
906
+
907
+ </td>
908
+ </tr>
909
+ </table>
910
+ </li>
911
+ <li>
912
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
913
+ <tr>
914
+ <td height="113">
915
+ <a href="http://www.bnqt.com/blogs/detail/Watch-Surfer-Ride-Worlds-Biggest-Wave-Ever/10254" target="_blank">
916
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb97387-0d98-382576a2_thumb.jpg" width="165" alt="Watch Surfer Ride World\'s Biggest Wave - Ever!" />
917
+ </a></td>
918
+ </tr>
919
+ <tr>
920
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
921
+ <p><a href="http://www.bnqt.com/blogs/detail/Watch-Surfer-Ride-Worlds-Biggest-Wave-Ever/10254" target="blank">Watch Surfer Ride World's Biggest Wave - Ever!</a></p>
922
+
923
+
924
+ </td>
925
+ </tr>
926
+ </table>
927
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
928
+ <tr>
929
+ <td height="113">
930
+ <a href="http://www.bnqt.com/blogs/detail/Top-20-Snowboard-Films-For-2011-2012-Season/10083" target="_blank">
931
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/drew/0001-42c20dd2-4ea09318-1598-42dd7e63_thumb.jpg" width="165" alt="Top 20 Snowboard Films For 2011-2012 Season" />
932
+ </a></td>
933
+ </tr>
934
+ <tr>
935
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
936
+ <p><a href="http://www.bnqt.com/blogs/detail/Top-20-Snowboard-Films-For-2011-2012-Season/10083" target="blank">Top 20 Snowboard Films For 2011-2012 Season</a></p>
937
+
938
+
939
+ </td>
940
+ </tr>
941
+ </table>
942
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
943
+ <tr>
944
+ <td height="113">
945
+ <a href="http://www.bnqt.com/blogs/detail/Travis-Rice-Premieres-Art-of-Flight/9590" target="_blank">
946
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/art-of-flight/0001-413397c6-4e68dcd9-27fa-4e3d99ee_thumb.jpg" width="165" alt="Travis Rice Premieres Art of Flight" />
947
+ </a></td>
948
+ </tr>
949
+ <tr>
950
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
951
+ <p><a href="http://www.bnqt.com/blogs/detail/Travis-Rice-Premieres-Art-of-Flight/9590" target="blank">Travis Rice Premieres Art of Flight</a></p>
952
+
953
+
954
+ </td>
955
+ </tr>
956
+ </table>
957
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
958
+ <tr>
959
+ <td height="113">
960
+ <a href="http://www.bnqt.com/blogs/detail/Slater-Wins-11th-World-Title-And-Remembers-Andy-Irons/10195" target="_blank">
961
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb1d49b-b639-290e1d54_thumb.png" width="165" alt="Slater Wins 11th World Title And Remembers Andy Irons" />
962
+ </a></td>
963
+ </tr>
964
+ <tr>
965
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
966
+ <p><a href="http://www.bnqt.com/blogs/detail/Slater-Wins-11th-World-Title-And-Remembers-Andy-Irons/10195" target="blank">Slater Wins 11th World Title And Remembers Andy Irons</a></p>
967
+
968
+
969
+ </td>
970
+ </tr>
971
+ </table>
972
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
973
+ <tr>
974
+ <td height="113">
975
+ <a href="http://afroice.com/blogs/detail/Julien-Regnier-joins-Black-Crows/5114" target="_blank">
976
+ <img src="http://img.bnqt.com/CMS/bnqt/network/afroice/media/iceman/ski/0004-42c20dd2-4b15a965-fe9d-8c8df62d_thumb.png" width="165" alt="Julien Regnier joins Black Crows" />
977
+ </a></td>
978
+ </tr>
979
+ <tr>
980
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
981
+ <p><a href="http://afroice.com/blogs/detail/Julien-Regnier-joins-Black-Crows/5114" target="blank">Julien Regnier joins Black Crows</a></p>
982
+
983
+
984
+ </td>
985
+ </tr>
986
+ </table>
987
+ </li>
988
+ <li>
989
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
990
+ <tr>
991
+ <td height="113">
992
+ <a href="http://www.bnqt.com/blogs/detail/REWIND-MIKEY-TAYLOR/10143" target="_blank">
993
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/jay-r/0001-42c20dd2-4eaa14b0-3a2e-5ede8959_thumb.jpg" width="165" alt="REWIND - MIKEY TAYLOR" />
994
+ </a></td>
995
+ </tr>
996
+ <tr>
997
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
998
+ <p><a href="http://www.bnqt.com/blogs/detail/REWIND-MIKEY-TAYLOR/10143" target="blank">REWIND - MIKEY TAYLOR</a></p>
999
+
1000
+
1001
+ </td>
1002
+ </tr>
1003
+ </table>
1004
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
1005
+ <tr>
1006
+ <td height="113">
1007
+ <a href="http://www.bnqt.com/blogs/detail/Top-10-Skateboarding-Vanishing-Acts/10266" target="_blank">
1008
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/jay-r/0001-42c20dd2-4eb9fdd7-0346-c116988f_thumb.jpg" width="165" alt="Top 10 Skateboarding Vanishing Acts" />
1009
+ </a></td>
1010
+ </tr>
1011
+ <tr>
1012
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
1013
+ <p><a href="http://www.bnqt.com/blogs/detail/Top-10-Skateboarding-Vanishing-Acts/10266" target="blank">Top 10 Skateboarding Vanishing Acts</a></p>
1014
+
1015
+
1016
+ </td>
1017
+ </tr>
1018
+ </table>
1019
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
1020
+ <tr>
1021
+ <td height="113">
1022
+ <a href="http://www.bnqt.com/blogs/detail/Alana-Blanchard-Would-You/4226" target="_blank">
1023
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/cyrus/0001-42c20dd2-4aa16d4a-b6d8-69838ce5_thumb.jpg" width="165" alt="Alana Blanchard: Would You?" />
1024
+ </a></td>
1025
+ </tr>
1026
+ <tr>
1027
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
1028
+ <p><a href="http://www.bnqt.com/blogs/detail/Alana-Blanchard-Would-You/4226" target="blank">Alana Blanchard: Would You?</a></p>
1029
+
1030
+
1031
+ </td>
1032
+ </tr>
1033
+ </table>
1034
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
1035
+ <tr>
1036
+ <td height="113">
1037
+ <a href="http://www.bnqt.com/videos/detail/BNQT-BEST-OF...-SKI-RESORTS-2011-2012/1219159204001" target="_blank">
1038
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4ea1df65-0b25-60e9c4df_thumb.jpg" width="165" alt="BNQT BEST OF... SKI RESORTS 2011-2012" />
1039
+ </a></td>
1040
+ </tr>
1041
+ <tr>
1042
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
1043
+ <p><a href="http://www.bnqt.com/videos/detail/BNQT-BEST-OF...-SKI-RESORTS-2011-2012/1219159204001" target="blank">BNQT BEST OF... SKI RESORTS 2011-2012</a></p>
1044
+
1045
+
1046
+ </td>
1047
+ </tr>
1048
+ </table>
1049
+ <table cellpadding="0" cellspacing="0" class="dataContent" width="165px">
1050
+ <tr>
1051
+ <td height="113">
1052
+ <a href="http://www.bnqt.com/blogs/detail/Nicole-Dabeau-Would-You/10240" target="_blank">
1053
+ <img src="http://img.bnqt.com/CMS/bnqt/network/bnqt.com/media/editor/0001-42c20dd2-4eb8a983-2fc2-d2407046_thumb.jpg" width="165" alt="Nicole Dabeau: Would You?" />
1054
+ </a></td>
1055
+ </tr>
1056
+ <tr>
1057
+ <td class="defaultColor02 padding5" style="word-break: break-all;">
1058
+ <p><a href="http://www.bnqt.com/blogs/detail/Nicole-Dabeau-Would-You/10240" target="blank">Nicole Dabeau: Would You?</a></p>
1059
+
1060
+
1061
+ </td>
1062
+ </tr>
1063
+ </table>
1064
+ </li>
1065
+ </ul>
1066
+ <div class="clearFloats"></div>
1067
+ </div>
1068
+ </td>
1069
+ <td align="center"><a href="javascript: void(0);" id="ho_prev" title="Next">&#9654;</a></td>
1070
+ </tr>
1071
+ </table>
1072
+ </div>
1073
+ <!--/.content-->
1074
+ </div>
1075
+ <!--/.moreBNQT-->
1076
+ <script>
1077
+ document.observe("dom:loaded", function() {
1078
+ var Hori = new Horinaja('moreOnBNQT',0.6,10,false);
1079
+ });
1080
+ </script>
1081
+
1082
+ <div class="clearFloats"></div>
1083
+ <div id="masterFooter">
1084
+ <nav id="footer">
1085
+ <dl class="dataList">
1086
+ <dt><strong>content</strong></dt>
1087
+ <dd><a href="http://www.bnqt.com/" title="Home">Home</a></dd>
1088
+ <dd><a href="http://www.bnqt.com/videos/index.html" title="Videos">Videos</a></dd>
1089
+ <dd><a href="http://www.bnqt.com/photos/index.html" title="Photos">Photos</a></dd>
1090
+ <dd><a href="http://www.bnqt.com/blogs/index.html" title="Blogs">Blogs</a></dd>
1091
+ </dl>
1092
+ <!--/.dataList-->
1093
+ <dl class="dataList">
1094
+ <dt><strong>Learn More</strong></dt>
1095
+ <dd><a href="http://bnqtmediagroup.com" target="_blank" title="About BNQT">About BNQT</a></dd>
1096
+ <dd><a href="http://www.bnqt.com/jobs" target="_blank" title="Jobs">Jobs</a></dd>
1097
+ <dd><a href="http://www.bnqt.com/tos" title="Terms &amp; Contitions">Terms &amp; Conditions</a></dd>
1098
+ </dl>
1099
+ <!--/.dataList-->
1100
+ <div class="clearFloats"></div>
1101
+ </nav>
1102
+ <!--/nav#footer-->
1103
+ <div id="networkBar">
1104
+ <div id="corpInfo" class="floatLeft">
1105
+ <a href="http://bnqtmediagroup.com/" title="BNQT Media Group" target="_blank" id="logo_bmg"></a>
1106
+ <a href="http://bnqtmediagroup.com/" target="_blank">For Advertisers</a>
1107
+ <a href="http://bnqtmediagroup.com/publishers/" target="_blank">For Publishers</a>
1108
+ <a href="mailto:jasonford&#64;usatoday.com?subject=BNQT%20Media%20Group%20Media%20Kit" target="_blank">Request a Media Kit</a>
1109
+ </div>
1110
+ <!--/corpInfo-->
1111
+
1112
+
1113
+ <dl class="floatLeft">
1114
+ <dt>Lifestyle</dt>
1115
+ <dd><a href="http://hypebeast.com" target="_blank" rel="nofollow">Hypebeast.com</a></dd>
1116
+ <dd><a href="http://flightclub.com" target="_blank" rel="nofollow">Flightclub.com</a></dd>
1117
+ <dd><a href="http://booooooom.com" target="_blank" rel="nofollow">Booooooom.com</a></dd>
1118
+ <dd><a href="http://thecoolist.com" target="_blank" rel="nofollow">TheCoolist.com</a></dd>
1119
+ </dl>
1120
+ <dl class="floatLeft">
1121
+ <dt>Surf</dt>
1122
+ <dd><a href="http://surfline.com" target="_blank" rel="nofollow">Surfline.com</a></dd>
1123
+ <dd><a href="http://www.surfersvillage.com" target="_blank" rel="nofollow">Surfersvillage.com</a></dd>
1124
+ <dd><a href="http://swellinfo.com" target="_blank" rel="nofollow">SwellInfo.com</a></dd>
1125
+ <dd><a href="http://surfshot.com" target="_blank" rel="nofollow">SurfShot.com</a></dd>
1126
+ </dl>
1127
+ <dl class="floatLeft">
1128
+ <dt>Skate/Snow</dt>
1129
+ <dd><a href="http://thrashermagazine.com" target="_blank" rel="nofollow">ThrasherMag.com</a></dd>
1130
+ <dd><a href="http://slapmagazine.com" target="_blank" rel="nofollow">SlapMagazine.com</a></dd>
1131
+ <dd><a href="http://tetongravity.com" target="_blank" rel="nofollow">TetonGravity.com</a></dd>
1132
+ <dd><a href="http://yobeat.com" target="_blank" rel="nofollow">YoBeat.com</a></dd>
1133
+ </dl>
1134
+ <dl class="floatLeft">
1135
+ <dt>Moto/BMX</dt>
1136
+ <dd><a href="http://racerxonline.com" target="_blank" rel="nofollow">RacerXonline.com</a></dd>
1137
+ <dd><a href="http://roadracerx.com" target="_blank" rel="nofollow">RoadRacerX.com</a></dd>
1138
+ <dd><a href="http://thecomeupbmx.net" target="_blank" rel="nofollow">TheComeUpBMX.net</a></dd>
1139
+ <dd><a href="http://defgrip.net" target="_blank" rel="nofollow">DefGrip.net</a></dd>
1140
+ </dl>
1141
+ <dl class="floatLeft">
1142
+ <dt>Multisport</dt>
1143
+ <dd><a href="http://backcountry.com" target="_blank" rel="nofollow">Backcountry.com</a></dd>
1144
+ <dd><a href="http://freecaster.com" target="_blank" rel="nofollow">Freecaster.com</a></dd>
1145
+ <dd><a href="http://malakye.com" target="_blank" rel="nofollow">Malakye.com</a></dd>
1146
+ <dd><a href="http://bnqt.com" target="_blank" >BNQT.com</a></dd>
1147
+ </dl>
1148
+ <dl class="floatLeft">
1149
+ <dt>MMA</dt>
1150
+ <dd><a href="http://ufc.com" target="_blank" rel="nofollow">UFC.com</a></dd>
1151
+ <dd><a href="http://mmaconvert.com" target="_blank" rel="nofollow">MMAconvert.com</a></dd>
1152
+ <dd><a href="http://mmajunkie.com" target="_blank" rel="nofollow">MMAJunkie.com</a></dd>
1153
+ <dd><a href="http://middleeasy.com" target="_blank" rel="nofollow">MiddleEasy.com</a></dd>
1154
+ </dl>
1155
+ <dl class="floatLeft">
1156
+ <dt>Adventure</dt>
1157
+ <dd><a href="http://venturethere.com" target="_blank" >VentureThere.com</a></dd>
1158
+ <dd><a href="http://alpinist.com" target="_blank" rel="nofollow">Alpinist.com</a></dd>
1159
+ <dd><a href="http://trailspace.com" target="_blank" rel="nofollow">TrailSpace.com</a></dd>
1160
+ <dd><a href="http://nsmb.com" target="_blank" rel="nofollow">NSMB.com</a></dd>
1161
+ </dl>
1162
+
1163
+ <div class="clearFloats"></div>
1164
+
1165
+ <p id="copy">&copy; 2011 BNQT Media Group / USA Today Sports</p>
1166
+ </div>
1167
+ <!--/#networkBar--> </div>
1168
+ <!--/masterFooter-->
1169
+ </div>
1170
+ <!--/wrapper-->
1171
+ <div id="OAS_x01"></div>
1172
+ <div id="OAS_x02"></div>
1173
+
1174
+ <!--// Google Analytics Start -->
1175
+ <script type="text/javascript">
1176
+
1177
+ window._gaq = window._gaq || [];
1178
+
1179
+
1180
+ _gaq.push(
1181
+ ['domainTracker1._setAccount', "UA-3632331-1"],
1182
+ ['domainTracker1._trackPageview'],
1183
+ ['domainTracker1._trackPageLoadTime']
1184
+ );
1185
+
1186
+ _gaq.push(
1187
+ ['domainTracker2._setAccount', "UA-3632331-21"],
1188
+ ['domainTracker2._trackPageview'],
1189
+ ['domainTracker2._trackPageLoadTime']
1190
+ );
1191
+
1192
+ _gaq.push(
1193
+ ['domainTracker3._setAccount', "UA-11570011-6"],
1194
+ ['domainTracker3._trackPageview'],
1195
+ ['domainTracker3._trackPageLoadTime']
1196
+ );
1197
+ </script>
1198
+ <!--// Google Analytics End -->
1199
+
1200
+ <script type="text/javascript" src="/js/oas/default.js"></script>
1201
+ <!------ OAS MJX Top Ad Calls Begin ------>
1202
+ <div id="Hidden_OAS_Top" style="display: none;">
1203
+ <script language="javascript" type="text/javascript">
1204
+ <!--
1205
+ OAS_AD('Top');
1206
+ //-->
1207
+ </script>
1208
+ </div>
1209
+ <!------ OAS MJX Middle Ad Calls Begin ------>
1210
+ <div id="Hidden_OAS_Middle" style="display: none;">
1211
+ <script language="javascript" type="text/javascript">
1212
+ <!--
1213
+ OAS_AD('Middle');
1214
+ //-->
1215
+ </script>
1216
+ </div>
1217
+ <!------ OAS MJX Middle1 Ad Calls Begin ------>
1218
+ <div id="Hidden_OAS_Middle1" style="display: none;">
1219
+ <script language="javascript" type="text/javascript">
1220
+ <!--
1221
+ OAS_AD('Middle1');
1222
+ //-->
1223
+ </script>
1224
+ </div>
1225
+ <!------ OAS MJX Bottom Ad Calls Begin ------>
1226
+ <div id="Hidden_OAS_Bottom" style="display: none;">
1227
+ <script language="javascript" type="text/javascript">
1228
+ <!--
1229
+ OAS_AD('Bottom');
1230
+ //-->
1231
+ </script>
1232
+ </div>
1233
+ <!------ OAS MJX x01 Ad Calls Begin ------>
1234
+ <div id="Hidden_OAS_x01" style="display: none;">
1235
+ <script language="javascript" type="text/javascript">
1236
+ <!--
1237
+ OAS_AD('x01');
1238
+ //-->
1239
+ </script>
1240
+ </div>
1241
+ <!------ OAS MJX x02 Ad Calls Begin ------>
1242
+ <div id="Hidden_OAS_x02" style="display: none;">
1243
+ <script language="javascript" type="text/javascript">
1244
+ <!--
1245
+ OAS_AD('x02');
1246
+ //-->
1247
+ </script>
1248
+ </div>
1249
+ <!------ OAS MJX Footer Ad Calls End ------>
1250
+ <script type="text/javascript">
1251
+ /* Addition of ComSCORE beacon by Joseph Youngquist */
1252
+ var __cs_c1 = 2; // Required, and value should be 2
1253
+ var __cs_c2 = "6035223"; // Required, ID supplied by comSCORE
1254
+ var __cs_params = ["c1=", __cs_c1, "&c2=", __cs_c2].join('');
1255
+ document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") +
1256
+ ".scorecardresearch.com/beacon.js?" + __cs_params +"' %3E%3C/script%3E"));
1257
+ /* End comScore */
1258
+ </script>
1259
+ <script type="text/javascript">
1260
+ (function() {
1261
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
1262
+ ga.src = "http://www.google-analytics.com/ga.js";
1263
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
1264
+ })();
1265
+
1266
+ </script>
1267
+ </body>
1268
+ </html>