<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>My Fixed Gear</title>
	<atom:link href="http://www.myfixedgear.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myfixedgear.net</link>
	<description>Track, Fixed Gear and Single Speed Bike Gallery</description>
	<pubDate>Wed, 10 Mar 2010 22:03:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>raleigh professional track 1975</title>
		<link>http://www.myfixedgear.net/raleigh-professional-track-1975</link>
		<comments>http://www.myfixedgear.net/raleigh-professional-track-1975#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/raleigh-professional-track-1975</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/raleigh_professional_track_1975/reg/1.jpg" alt="" title="" />
			</div>
		
New project

Submitted by james
]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/raleigh_professional_track_1975/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>New project
</p>
<p><i>Submitted by james</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/raleigh-professional-track-1975/feed</wfw:commentRss>
		</item>
		<item>
		<title>carlton track 1975</title>
		<link>http://www.myfixedgear.net/carlton-track-1975</link>
		<comments>http://www.myfixedgear.net/carlton-track-1975#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:02:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/carlton-track-1975</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/carlton_track_1975/reg/1.jpg" alt="" title="" />
			</div>
		
Zeus and campagnolo. Restored.Nearly finished.

Submitted by james
]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/carlton_track_1975/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>Zeus and campagnolo. Restored.Nearly finished.
</p>
<p><i>Submitted by james</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/carlton-track-1975/feed</wfw:commentRss>
		</item>
		<item>
		<title>gazelle 1972 track bike</title>
		<link>http://www.myfixedgear.net/gazelle-1972-track-bike</link>
		<comments>http://www.myfixedgear.net/gazelle-1972-track-bike#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:02:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/gazelle-1972-track-bike</guid>
		<description><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:192px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/gazelle_1972_track_bike/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/gazelle_1972_track_bike/reg/2.jpg" alt=" 2" title=" 2"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>


Full campagnolo.Cinelli stem.

Submitted by james
]]></description>
			<content:encoded><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:192px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/gazelle_1972_track_bike/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/gazelle_1972_track_bike/reg/2.jpg" alt=" 2" title=" 2"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>

<p></p>
<p>Full campagnolo.Cinelli stem.
</p>
<p><i>Submitted by james</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/gazelle-1972-track-bike/feed</wfw:commentRss>
		</item>
		<item>
		<title>Yes. It is another Kilo TT</title>
		<link>http://www.myfixedgear.net/yes-it-is-another-kilo-tt</link>
		<comments>http://www.myfixedgear.net/yes-it-is-another-kilo-tt#comments</comments>
		<pubDate>Tue, 09 Mar 2010 22:37:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/yes-it-is-another-kilo-tt</guid>
		<description><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:192px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/Yes_It_is_another_Kilo_TT/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/Yes_It_is_another_Kilo_TT/reg/2.jpg" alt=" 2" title=" 2"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>


Open Pros
Nitto RB21 Bars
Brooks Professional
Sanded Frame
Clear Coated with Enamel.
Maxies Supper Club Stick.
South Boston Booyaa!

Submitted by Andre
]]></description>
			<content:encoded><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:192px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/Yes_It_is_another_Kilo_TT/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/Yes_It_is_another_Kilo_TT/reg/2.jpg" alt=" 2" title=" 2"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>

<p></p>
<p>Open Pros<br />
Nitto RB21 Bars<br />
Brooks Professional<br />
Sanded Frame<br />
Clear Coated with Enamel.<br />
Maxies Supper Club Stick.</p>
<p>South Boston Booyaa!
</p>
<p><i>Submitted by Andre</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/yes-it-is-another-kilo-tt/feed</wfw:commentRss>
		</item>
		<item>
		<title>Yes. It is a Kilo TT</title>
		<link>http://www.myfixedgear.net/yes-it-is-a-kilo-tt</link>
		<comments>http://www.myfixedgear.net/yes-it-is-a-kilo-tt#comments</comments>
		<pubDate>Mon, 08 Mar 2010 21:18:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/yes-it-is-a-kilo-tt</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/Yes_It_is_a_Kilo_TT/reg/1.jpg" alt="" title="" />
			</div>
		
Open Pros
Nitto RB21 Bars
Brooks Professional
Sanded Frame
Clear Coated with Enamel.
Submitted by Andre Beriau
]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/Yes_It_is_a_Kilo_TT/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>Open Pros<br />
Nitto RB21 Bars<br />
Brooks Professional<br />
Sanded Frame<br />
Clear Coated with Enamel.</p>
<p><i>Submitted by Andre Beriau</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/yes-it-is-a-kilo-tt/feed</wfw:commentRss>
		</item>
		<item>
		<title>Bianchi Pista Pimped out</title>
		<link>http://www.myfixedgear.net/bianchi-pista-pimped-out</link>
		<comments>http://www.myfixedgear.net/bianchi-pista-pimped-out#comments</comments>
		<pubDate>Sun, 07 Mar 2010 16:55:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/bianchi-pista-pimped-out-2</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/Bianchi_Pista_Pimped_out_2/reg/1.jpg" alt="" title="" />
			</div>
		
2009 Bianchi pista soon. Solid silver rims with vintage 1870’s pearl inlay from the rare pearls from Hagata bay Japan. the spokes are made from steel from the World Trade Center in honor of the dead victims of 9-11. The tires are cast from authentic Amazonian Brazilian rubber supplied by the Bonti Tribe. I broke [...]]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/Bianchi_Pista_Pimped_out_2/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>2009 Bianchi pista soon. Solid silver rims with vintage 1870’s pearl inlay from the rare pearls from Hagata bay Japan. the spokes are made from steel from the World Trade Center in honor of the dead victims of 9-11. The tires are cast from authentic Amazonian Brazilian rubber supplied by the Bonti Tribe. I broke open the welds and re-did them with silver from a silver mine in the hills outside Mandoza Argentina in honor of the 120 miners that died there in a collapse in 1982. All ball bearings have been resized and fitted from the engines from the Enola Gay (the Bomber used to drop the bomb on Hiroshima). The brake pads are made from the felt of a vintage Stetson derby reputedly owned by Charlie Chaplin (but we have no way of knowing for sure). The handle bar is a riser crafted out of the steel from a section of the Titanic propeller that was especially brought up by a boutique bike parts company in California. The grease was extracted from Polar bear fat but dont worry. They were not killed by hunters but there bodies were found as they drown swimming between melted ice flows (they did not die in vane). AND the saddle is made from the scrotum of a Sperm whale (very comfortable). Im off on my round the world ride. BTW, I turn 70 next month. I almost forgot: Chris King headset and Campy brakes.</p>
<p><em>Submitted by JQNYC</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/bianchi-pista-pimped-out/feed</wfw:commentRss>
		</item>
		<item>
		<title>pistaiolo</title>
		<link>http://www.myfixedgear.net/pistaiolo</link>
		<comments>http://www.myfixedgear.net/pistaiolo#comments</comments>
		<pubDate>Sat, 06 Mar 2010 16:31:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/pistaiolo</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/pistaiolo/reg/1.jpg" alt="" title="" />
			</div>
		
total custom steell niobio columbus

Submitted by roberto bressan
]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/pistaiolo/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>total custom steell niobio columbus
</p>
<p><i>Submitted by roberto bressan</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/pistaiolo/feed</wfw:commentRss>
		</item>
		<item>
		<title>Yellow and Blue Motobecane Part 2</title>
		<link>http://www.myfixedgear.net/yellow-and-blue-motobecane-part-2</link>
		<comments>http://www.myfixedgear.net/yellow-and-blue-motobecane-part-2#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:11:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/yellow-and-blue-motobecane-part-2</guid>
		<description><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:480px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/2.jpg" alt=" 2" title=" 2"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/3.jpg" alt=" 3" title=" 3"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/4.jpg" alt=" 4" title=" 4"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/5.jpg" alt=" 5" title=" 5"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>



Submitted by Pindie
]]></description>
			<content:encoded><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:480px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/2.jpg" alt=" 2" title=" 2"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/3.jpg" alt=" 3" title=" 3"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/4.jpg" alt=" 4" title=" 4"></li>
<li><img src="/wp-content/photos/Yellow_and_Blue_Motobecane_Part_2/reg/5.jpg" alt=" 5" title=" 5"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>

<p></p>
</p>
<p><i>Submitted by Pindie</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/yellow-and-blue-motobecane-part-2/feed</wfw:commentRss>
		</item>
		<item>
		<title>RiGi Bici-Corta Track</title>
		<link>http://www.myfixedgear.net/rigi-bici-corta-track</link>
		<comments>http://www.myfixedgear.net/rigi-bici-corta-track#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:10:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/rigi-bici-corta-track</guid>
		<description><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/RiGi_Bici-Corta_Track/reg/1.jpg" alt="" title="" />
			</div>
		
This is a RiGi Bici Corta.
It is a bit weird since it has had braceons for gears, but it has the geometry of the track version, and it has trackends that look original.
It has very steep angles (around 80 degrees) and is very short, it&#8217;s really funny on short rides in the city.
Normally I&#8217;d run [...]]]></description>
			<content:encoded><![CDATA[
			<div style="text-align:center">
				<img src="/wp-content/photos/RiGi_Bici-Corta_Track/reg/1.jpg" alt="" title="" />
			</div>
		<p></p>
<p>This is a RiGi Bici Corta.</p>
<p>It is a bit weird since it has had braceons for gears, but it has the geometry of the track version, and it has trackends that look original.</p>
<p>It has very steep angles (around 80 degrees) and is very short, it&#8217;s really funny on short rides in the city.</p>
<p>Normally I&#8217;d run with drops, but the frame is a bit too small for me, and the risers work fine with it&#8217;s hooligan-handling <img src='http://www.myfixedgear.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Since the photo was taken the saddle has been replaced by a stripped Flite, and the cranks have been replaced by more oldskool-looking Stronglight trackcranks.
</p>
<p><i>Submitted by Hans Joergensen</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/rigi-bici-corta-track/feed</wfw:commentRss>
		</item>
		<item>
		<title>WMD</title>
		<link>http://www.myfixedgear.net/wmd</link>
		<comments>http://www.myfixedgear.net/wmd#comments</comments>
		<pubDate>Thu, 04 Mar 2010 09:54:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myfixedgear.net/wmd</guid>
		<description><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:384px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/WMD/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/WMD/reg/2.jpg" alt=" 2" title=" 2"></li>
<li><img src="/wp-content/photos/WMD/reg/3.jpg" alt=" 3" title=" 3"></li>
<li><img src="/wp-content/photos/WMD/reg/4.jpg" alt=" 4" title=" 4"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>


I like my bike. It&#8217;s fast and it has a bell.

Submitted by DPG
]]></description>
			<content:encoded><![CDATA[

<script type="text/javascript">
	
	jQuery(function($) {
		// remove alt and titles from thumbnails cos of weird fading otherwise, noscript users will still see them
		$('.gallery_demo_unstyled li img').each(function() {
			$(this).attr("title", "");
			$(this).attr("alt", "");
		});
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				//if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				//}
				//caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.4);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Next image >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.4';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.4); } // don't fade out if the parent is active
				)
			}
		});
	});
	
</script>
	
<style media="screen,projection" type="text/css">
	
	*{margin:0;padding:0}
	.caption { display:none }
	
	/* gallery_demo is the ul - calculate the width here to center "n * (thumb_width + border + margin)" */
	.gallery_demo { width:384px; margin:5px auto 0 auto; text-align:center; }
	.gallery_demo li { width:90px; height:70px; border:1px solid #000; margin: 0 2px; background:#000; }
	
	/* ff format fix */
	.gallery_demo_unstyled li img { height:70px; } 
	
	#main_image { margin:0 auto 0 auto; height:460px; width:600px; background:#fff; text-align:center; display:table-cell; vertical-align:middle }	
	#main_image img { max-width:600px; max-height:460px; vertical-align:middle; }
	
	/*
	.nav { padding-top:15px; clear:both; font-family:sans-serif; letter-spacing:3px; font-variant:small-caps; text-align:center }
	*/
	.nav { padding:5px 0 15px 0; clear:both; text-align:center; }
</style>
	
<div id="main_image"></div>
<ul class="gallery_demo_unstyled">

<li class="active"><img src="/wp-content/photos/WMD/reg/1.jpg" alt=" 1" title=" 1"></li>
<li><img src="/wp-content/photos/WMD/reg/2.jpg" alt=" 2" title=" 2"></li>
<li><img src="/wp-content/photos/WMD/reg/3.jpg" alt=" 3" title=" 3"></li>
<li><img src="/wp-content/photos/WMD/reg/4.jpg" alt=" 4" title=" 4"></li>
</ul>

<!-- restyle gallery for users without js -->
<noscript>
	<style media="screen,projection" type="text/css">
		.gallery_demo_unstyled li img { height:auto; }
		.nav { display:none; }
		#main_image { display:none; }
	</style>
</noscript>

<p class="nav"><a class="dammit" href="#" onclick="$.galleria.prev(); return false;">&laquo; Previous</a> | <a href="#" onclick="$.galleria.next(); return false;">Next &raquo;</a></p>

<p></p>
<p>I like my bike. It&#8217;s fast and it has a bell.
</p>
<p><i>Submitted by DPG</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myfixedgear.net/wmd/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
