<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog &#124; Pages of Interest &#187; Cocoa</title>
	<atom:link href="http://pagesofinterest.net/blog/tag/cocoa/feed/" rel="self" type="application/rss+xml" />
	<link>http://pagesofinterest.net/blog</link>
	<description>1000% Hyperbole Free</description>
	<lastBuildDate>Sat, 04 Feb 2012 22:57:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Extracting hex value from NSColor</title>
		<link>http://pagesofinterest.net/blog/2011/12/extracting-hex-value-from-nscolor/</link>
		<comments>http://pagesofinterest.net/blog/2011/12/extracting-hex-value-from-nscolor/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 11:39:49 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSColor]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1230</guid>
		<description><![CDATA[Example project available on GitHub – CINSColor+Hex This category on NSColor allows one to get or set an NSColor&#8217;s colour using hex values. Intitialising an NSColor with a hexadecimal colour: 1 2 3 4 5 6 7 8 @try &#123; // Both shorthand and full forms of hexadecimal colours are accepted &#91;colorWell setColor:&#91;NSColor colorWithHex:@&#34;#F00&#34;&#93;&#93;; &#91;colorWell [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a> <small>Another snippet I had to write during the great Slider...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a> <small>While continuing to rebuild Slider&#8217;s background image features, I was...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/' rel='bookmark' title='Accessing Primitives From NSDictionarys in Cocoa&#8230;'>Accessing Primitives From NSDictionarys in Cocoa&#8230;</a> <small>This &#8220;gotcha&#8221; had me scratching my head for a little...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/12/extracting-hex-value-from-nscolor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cocoa Warning: Implicitly declaring C library function &#8216;objc_getClass&#8217;</title>
		<link>http://pagesofinterest.net/blog/2011/11/cocoa-warning-implicitly-declaring-c-library-function-objc_getclass/</link>
		<comments>http://pagesofinterest.net/blog/2011/11/cocoa-warning-implicitly-declaring-c-library-function-objc_getclass/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 20:12:36 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSClassFromString]]></category>
		<category><![CDATA[objc_getClass]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1202</guid>
		<description><![CDATA[In Slider 2, I needed to check for the presence for Sparkle, and only load Slider 2&#8242;s included version when Sparkle isn&#8217;t found. The code I used to do this is included below, but the point of this article is really to provide a solution to the following warning I encountered: warning: Semantic Issue: Implicitly [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2011/07/detecting-presence-of-a-framework-within-an-nsbundle-plugin/' rel='bookmark' title='Detecting Presence of a Framework Within an NSBundle (Plugin)'>Detecting Presence of a Framework Within an NSBundle (Plugin)</a> <small>Introduction Jump to Tutorial In light of Cocoa Warning: Implicitly...</small></li>
<li><a href='http://pagesofinterest.net/blog/2011/11/sliding-modal-dialogs-in-cocoa-applications-bundles/' rel='bookmark' title='Sliding Modal Dialogs in Cocoa Applications &amp; Bundles'>Sliding Modal Dialogs in Cocoa Applications &#038; Bundles</a> <small>Example project available on GitHub &#8211; CIModalSheetDialog One thing I...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/' rel='bookmark' title='Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa'>Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa</a> <small>Another stumbling block on the road to Slider completion was...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/11/cocoa-warning-implicitly-declaring-c-library-function-objc_getclass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sliding Modal Dialogs in Cocoa Applications &amp; Bundles</title>
		<link>http://pagesofinterest.net/blog/2011/11/sliding-modal-dialogs-in-cocoa-applications-bundles/</link>
		<comments>http://pagesofinterest.net/blog/2011/11/sliding-modal-dialogs-in-cocoa-applications-bundles/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 21:15:32 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Class]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1163</guid>
		<description><![CDATA[Example project available on GitHub &#8211; CIModalSheetDialog One thing I wanted to be able to use during the development of Slider 2 was modal dialogs that slide out from the top of Rapid Weaver. This was troublesome for me as Slider 2 is a bundle that runs within Rapid Weaver &#8211; not as a standalone [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2011/08/usable-method-for-disabling-an-nstabviewitem/' rel='bookmark' title='More Usability-Oriented Method for Disabling an NSTabViewItem'>More Usability-Oriented Method for Disabling an NSTabViewItem</a> <small>Jump to tutorial I was unable to find a way...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/return-an-nsmutablestring-as-nsstring-without-error-11-cocoa/' rel='bookmark' title='Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa'>Return an NSMutableString as NSString Avoiding &#8220;Uncaught Error 11&#8243; with Cocoa</a> <small>Another stumbling block on the road to Slider completion was...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/' rel='bookmark' title='Accessing Primitives From NSDictionarys in Cocoa&#8230;'>Accessing Primitives From NSDictionarys in Cocoa&#8230;</a> <small>This &#8220;gotcha&#8221; had me scratching my head for a little...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/11/sliding-modal-dialogs-in-cocoa-applications-bundles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Informative NSLog alternative!</title>
		<link>http://pagesofinterest.net/blog/2011/09/more-informative-nslog-alternative/</link>
		<comments>http://pagesofinterest.net/blog/2011/09/more-informative-nslog-alternative/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 10:13:59 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Recommendation]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Logging]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1165</guid>
		<description><![CDATA[After becoming used PHP&#8217;s very many debugging and error logging tools, I started to find NSLog somewhat lacking&#8230; When I finally bothered to search for an alternative, and ended up with CCLog, A Variation on NSLog(). CCLog shows much more information, quoting the developer: My preferred output would be capable of doing this: Show on [...]
No related posts.]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/09/more-informative-nslog-alternative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting Presence of a Framework Within an NSBundle (Plugin)</title>
		<link>http://pagesofinterest.net/blog/2011/07/detecting-presence-of-a-framework-within-an-nsbundle-plugin/</link>
		<comments>http://pagesofinterest.net/blog/2011/07/detecting-presence-of-a-framework-within-an-nsbundle-plugin/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 02:04:54 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Framework]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1124</guid>
		<description><![CDATA[Introduction Jump to Tutorial In light of Cocoa Warning: Implicitly declaring C library function ‘objc_getClass’, this tutorial has been updated. Recently, it was brought to my attention that my method of including a particular framework (Sparkle) inside a plugin was wrong &#8211; the way I was doing it (blindly including the framework as if my [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2011/11/cocoa-warning-implicitly-declaring-c-library-function-objc_getclass/' rel='bookmark' title='Cocoa Warning: Implicitly declaring C library function &#8216;objc_getClass&#8217;'>Cocoa Warning: Implicitly declaring C library function &#8216;objc_getClass&#8217;</a> <small>In Slider 2, I needed to check for the presence...</small></li>
<li><a href='http://pagesofinterest.net/blog/2012/01/limit-nsnotifications-to-notify-within-nsbundle-instances-only/' rel='bookmark' title='Limit NSNotifications to Notify Within NSBundle Instances Only'>Limit NSNotifications to Notify Within NSBundle Instances Only</a> <small>NSNotifications are wonderful. So long as when using them within...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/06/using-png-transparency-the-jquery-colour-change-plugin/' rel='bookmark' title='Using PNG Transparency + the jQuery Colour Change Plugin'>Using PNG Transparency + the jQuery Colour Change Plugin</a> <small>A tutorial describing how to achieve the "colour change on...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2011/07/detecting-presence-of-a-framework-within-an-nsbundle-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting the size of an NSFont</title>
		<link>http://pagesofinterest.net/blog/2010/12/getting-the-size-of-an-nsfont/</link>
		<comments>http://pagesofinterest.net/blog/2010/12/getting-the-size-of-an-nsfont/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 07:41:10 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSFont]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1059</guid>
		<description><![CDATA[You&#8217;d think this would work right &#91;NSFont fontSize&#93; Well that didn&#8217;t work for me. This did: &#91;&#91;&#91;&#40;NSFont*&#41;&#91;option objectForKey:kFont&#93; fontDescriptor&#93; objectForKey:NSFontSizeAttribute&#93; floatValue&#93; May this post save your some of the frustration I experienced! Related posts: Accessing Primitives From NSDictionarys in Cocoa&#8230; This &#8220;gotcha&#8221; had me scratching my head for a little... Extracting hex value from NSColor [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2009/11/accessing-primitives-from-nsdictionarys-in-cocoa/' rel='bookmark' title='Accessing Primitives From NSDictionarys in Cocoa&#8230;'>Accessing Primitives From NSDictionarys in Cocoa&#8230;</a> <small>This &#8220;gotcha&#8221; had me scratching my head for a little...</small></li>
<li><a href='http://pagesofinterest.net/blog/2011/12/extracting-hex-value-from-nscolor/' rel='bookmark' title='Extracting hex value from NSColor'>Extracting hex value from NSColor</a> <small>Example project available on GitHub – CINSColor+Hex This category on...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/12/getting-the-size-of-an-nsfont/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subclassing NSTextField to Allow Only Numbers</title>
		<link>http://pagesofinterest.net/blog/2010/11/subclassing-nstextfield-to-allow-only-numbers/</link>
		<comments>http://pagesofinterest.net/blog/2010/11/subclassing-nstextfield-to-allow-only-numbers/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 02:43:36 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[NSTextField]]></category>
		<category><![CDATA[ObjC]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=1033</guid>
		<description><![CDATA[Example project available on GitHub &#8211; CINumberField Yes, I know that one may use NSNumberFormatter to achieve a similar result &#8211; but what I don&#8217;t like about about that solution is this: If a user types non-numeric characters into the NSTextField and attempts to tab away from the field, they get the default error sound [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2011/08/usable-method-for-disabling-an-nstabviewitem/' rel='bookmark' title='More Usability-Oriented Method for Disabling an NSTabViewItem'>More Usability-Oriented Method for Disabling an NSTabViewItem</a> <small>Jump to tutorial I was unable to find a way...</small></li>
<li><a href='http://pagesofinterest.net/blog/2011/11/sliding-modal-dialogs-in-cocoa-applications-bundles/' rel='bookmark' title='Sliding Modal Dialogs in Cocoa Applications &amp; Bundles'>Sliding Modal Dialogs in Cocoa Applications &#038; Bundles</a> <small>Example project available on GitHub &#8211; CIModalSheetDialog One thing I...</small></li>
<li><a href='http://pagesofinterest.net/blog/2012/01/listing-methods-at-runtime-in-objective-c/' rel='bookmark' title='Listing Methods at Runtime in Objective C'>Listing Methods at Runtime in Objective C</a> <small>Before getting into creating my next Rapid Weaver plugin, I...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2010/11/subclassing-nstextfield-to-allow-only-numbers/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Rotate NSImage in an NSImageView</title>
		<link>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/</link>
		<comments>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 23:41:34 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[Snippet - 小片]]></category>
		<category><![CDATA[NSImage]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=755</guid>
		<description><![CDATA[As soon as I implemented this I realised how much of a pain it would be to copy out the arrow images, rotate them in an external program, then copy them back in. So I put some buttons next to the arrow image wells that allow the user to rotate the arrows within Slider itself.
<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a> <small>Another snippet I had to write during the great Slider...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a> <small>While continuing to rebuild Slider&#8217;s background image features, I was...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/11/the-mutations-of-sliders-tab-option-pane/' rel='bookmark' title='The Mutations of Slider&#8217;s Tab Option Pane'>The Mutations of Slider&#8217;s Tab Option Pane</a> <small>During the past week, I&#8217;ve been working on Slider&#8217;s new...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag and Drop Reordering of NSTableView&#8217;s Rows</title>
		<link>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/</link>
		<comments>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 13:47:59 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSTableView]]></category>
		<category><![CDATA[Objctive C]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=754</guid>
		<description><![CDATA[I just had to re-implement drag-and-drop-reordering of Slider cells. I was lucky enough to find my post on the Cocoa-dev list &#8211; I just had to copy-paste the code. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2011/12/extracting-hex-value-from-nscolor/' rel='bookmark' title='Extracting hex value from NSColor'>Extracting hex value from NSColor</a> <small>Example project available on GitHub – CINSColor+Hex This category on...</small></li>
<li><a href='http://pagesofinterest.net/blog/2011/07/detecting-presence-of-a-framework-within-an-nsbundle-plugin/' rel='bookmark' title='Detecting Presence of a Framework Within an NSBundle (Plugin)'>Detecting Presence of a Framework Within an NSBundle (Plugin)</a> <small>Introduction Jump to Tutorial In light of Cocoa Warning: Implicitly...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/03/free-ajax-loading-gif-generator/' rel='bookmark' title='Free AJAX Loading GIF Generator'>Free AJAX Loading GIF Generator</a> <small>Using the Ajaxinfo GIF generator, one may choose the colour,...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/12/drag-and-drop-reordering-of-nstableviews-rows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Prevent Noisy NSBitmapImageReps</title>
		<link>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/</link>
		<comments>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:00:34 +0000</pubDate>
		<dc:creator>Michael Robinson</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Objective C]]></category>
		<category><![CDATA[NSBitmapImageRep]]></category>

		<guid isPermaLink="false">http://pagesofinterest.net/blog/?p=737</guid>
		<description><![CDATA[Images generated for Slider&#8217;s background and tabs contained a lot of noise &#8211; random ugly pixels throughout the images. I was unsure why this was happening, so I asked the Cocoa-Dev mailing list. Rob Keniger kindly replied with the following solution: &#8220;An NSBitmapImageRep is not guaranteed to be empty when you create it and in [...]<p style="margin-top:20px;">Related posts:<ol>
<li><a href='http://pagesofinterest.net/blog/2009/10/tile-an-nsimage-within-an-nsbezierpath/' rel='bookmark' title='Tile an NSImage Within an NSBezierPath'>Tile an NSImage Within an NSBezierPath</a> <small>Another snippet I had to write during the great Slider...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/10/fill-a-path-with-a-scaled-image-ignoring-image-proportions/' rel='bookmark' title='Fill a Path With A Scaled Image, Ignoring Image Proportions'>Fill a Path With A Scaled Image, Ignoring Image Proportions</a> <small>While continuing to rebuild Slider&#8217;s background image features, I was...</small></li>
<li><a href='http://pagesofinterest.net/blog/2009/12/rotate-nsimage-in-an-nsimageview/' rel='bookmark' title='Rotate NSImage in an NSImageView'>Rotate NSImage in an NSImageView</a> <small>As soon as I implemented this I realised how much...</small></li>
</ol>]]></description>
		<wfw:commentRss>http://pagesofinterest.net/blog/2009/11/how-to-prevent-noisy-nsbitmapimagereps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta name="generator" content="RapidWeaver" />
		<link rel="icon" href="http://pagesofinterest.net/favicon.ico" type="image/x-icon" />
		<link rel="shortcut icon" href="http://pagesofinterest.net/favicon.ico" type="image/x-icon" />
		

        				<title>Tag Archive for &quot;&quot; | Blog | Pages of Interest</title>
  
		        
		<link rel="stylesheet" type="text/css" media="print" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/consolidated-print-79.css" />
		<link rel="stylesheet" type="text/css" media="screen" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/consolidated-screen-79.css" />
		
		
		
		
		
                
        <link rel="icon" type="image/png" href="http://pagesofinterest.net/favicon.png" />        

		<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/libs.js?1328448743"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/javascript.js?1328448743"></script>
		<script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/site.js?1328448743"></script>
		<!--[if IE]><script type="text/javascript" src="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/scripts/html5.js?1328448743"></script>
		<link rel="stylesheet" type="text/css" media="screen" href="http://pagesofinterest.net/rw_common/themes/n_spire_pagesofinterest/css/ie.css" />
		<![endif]-->
		
	    
	    
