<?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>Fairweather Zealot &#187; CSS</title>
	<atom:link href="http://www.martytdx.com/zealot/archives/category/design/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.martytdx.com/zealot</link>
	<description>All the Rants that Beer and Birding Can Buy</description>
	<lastBuildDate>Thu, 29 Dec 2011 17:40:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>CSS3 Attribute Selectors Query</title>
		<link>http://www.martytdx.com/zealot/archives/2008/09/10/css3-attribute-selectors-query</link>
		<comments>http://www.martytdx.com/zealot/archives/2008/09/10/css3-attribute-selectors-query#comments</comments>
		<pubDate>Wed, 10 Sep 2008 13:33:47 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS selectors]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=729</guid>
		<description><![CDATA[The other day I was working on an internal UX Guidelines website and instituting one of the very things that I was advocating when I ran into a problem. Essentially, I was implementing the code to create a file type icon at the end of links so that all PDFs would show a PDF icon, [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I was working on an internal UX Guidelines website and instituting one of the very things that I was advocating when I ran into a problem.  Essentially, I was implementing the code to create a file type icon at the end of links so that all PDFs would show a PDF icon, all SWFs would have a Flash icon and all external links would have an external link icon, using the CSS3 attribute selectors.<span id="more-729"></span></p>
<p><code>a[href$='.E'] </code> &#8211; finds all <code>a</code> elements that <strong>end</strong> with a particular string, such as .pdf or .swf<br />
<code>a[href^='http']</code> &#8211; finds all <code>a</code> elements that <strong>start</strong> with a particular string, in this case &#8216;http&#8217; (internal links are relative, so they don&#8217;t include the full <abbr title="universal resource identifier">URI</abbr></p>
<p>The result looks something like this (links won&#8217;t work):</p>
<div class="example">
<p>This is an example of a <a href="sample.pdf">link to a PDF DOCUMENT</a>.</p>
<p>This is an example of a <a href="sample.swf">link to a FLASH APP</a>.</p>
<p>This is an example of an <a href="#">internal link</a>.</p>
<p>This is an example of an <a href="http://www.cnn.com">external link</a>.</p>
</div>
<p>The CSS behind it was also pretty simple:</p>
<pre><code>
a[href$='.pdf'] { display:inline-block;
	padding-right:20px;
	line-height:18px;
	background:transparent url(adobereader_icon.png) center right no-repeat;
	}</code></pre>
<pre><code>a[href$='.swf'] { display:inline-block;
	padding-right:20px;
	line-height:18px;
	background:transparent url(adobe_flash_icon.png) center right no-repeat;
	}</code></pre>
<pre><code>a[href^='http'] { display:inline-block;
	padding-right:20px;
	line-height:18px;
	background:transparent url(ext_link_icon.png) center right no-repeat;
	}
</code></pre>
</p>
<p>The problem came when I wanted to identify an external link that was <em>also</em> a PDF.  I needed to come up with something that would identify <strong>both</strong> pieces in the URI and put in a combo icon.  There is a precedent to do this using the same attribute selectors:<br />
<code>p[class*='blue green']</code> selects all links with a class of BOTH &#8220;blue&#8221; and &#8220;green&#8221;, but not if they only have one or the other.  </p>
<p>But this wasn&#8217;t working with the href when I tried all of these (and many more):<br />
<code>a[href*='http pdf']</code><br />
<code>a[href*='http' 'pdf']</code><br />
<code>a[href*='http'+'pdf']</code></p>
<h2>A solution</h2>
</p>
<p>Finally, I stumbled upon a solution that uses the new <code>:not</code> selector.  This selector allows you to select elements which &#8211; obviously &#8211; do <strong>not</strong> match the attribute/string selected.  So, I came up with a pattern that basically says give all PDFs the PDF icon but NOT if the element <em>also</em> includes the <code>http</code> at the start of the URL.  Together, the code looked like this:</p>
<p>
<pre><code>a[href$='.pdf']:not([href^='http']) { display:inline-block;
	padding-right:20px;
	line-height:18px;
	background:transparent url(images/icons/page_white_acrobat.png) center right no-repeat;
	}</code></pre>
<pre><code>a[href^='http'] { display:inline-block;
	padding-right:20px;
	line-height:18px;
	background:transparent url(images/icons/ext_link_icon.png) center right no-repeat;
	}</code></pre>
</p>
<p>And the final result looked like this:</p>
<div class="example">
<p>This is an example of a <a href="sample.pdf">link to a PDF DOCUMENT</a>.</p>
<p>This is an example of a <a href="sample.swf">link to a FLASH APP</a>.</p>
<p>This is an example of an <a href="#">internal link</a>.</p>
<p>This is an example of an <a href="http://www.cnn.com">external link</a>.</p>
<p>This is an example of an <a href="http://www.domain.com/example.pdf">external PDF document</a>.</p>
</div>
<p><strong>Success!</strong></p>
<h2>Caveats</h2>
<p>One strange thing that I noticed is that this only works when the CSS is in a particular order (I&#8217;m assuming based on precedence).  The <code>:not</code> attribute <em>has to</em> be at the top; the general PDF code at the bottom.  When I had the order (top to bottom): <strong>External PDF > PDF > SWF > external link</strong>, it didn&#8217;t work.  Once I changed it to <strong>External PDF > SWF > external link > PDF</strong>, it did.  Kind of odd, but I&#8217;ll deal with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2008/09/10/css3-attribute-selectors-query/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The IA/UX Rogue Wave is Coming&#8230;</title>
		<link>http://www.martytdx.com/zealot/archives/2008/04/18/the-iaux-rogue-wave-is-coming</link>
		<comments>http://www.martytdx.com/zealot/archives/2008/04/18/the-iaux-rogue-wave-is-coming#comments</comments>
		<pubDate>Fri, 18 Apr 2008 16:25:21 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/archives/2008/04/18/the-iaux-rogue-wave-is-coming</guid>
		<description><![CDATA[I wanted to get some more work done on my ID posts, but had to take a quick tangent for a couple of things. I&#8217;ve realized lately that I&#8217;ve really been getting behind on my reading of blogs in my industry, so I&#8217;ve been taking the opportunity to spend some catching up on some of [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to get some more work done on my ID posts, but had to take a quick tangent for a couple of things.  I&#8217;ve realized lately that I&#8217;ve really been getting behind on my reading of blogs in my industry, so I&#8217;ve been taking the opportunity to spend some catching up on some of my favorites including <a href="http://www.456bereastreet.com" title="456 Berea Street" target="_blank">456bereastreet</a> and <a href="http://www.cameronmoll.com" title="Authentic Boredom" target="_blank">authentic boredom</a>.  <span id="more-617"></span>It was on the latter site that I started a <em>really</em> cool article about creating a <a href="http://cameronmoll.com/archives/2008/02/the_highly_extensible_css_interface_the_series/" title="Highly Extensible CSS Interface on Authentic Boredom: CameronMoll.com">Highly Extensible CSS Interface</a>.  The article was great not only for its own content (which was valuable enough), but for the related links which clued me in on (further proving that I&#8217;ve been negligent in my reading).  You&#8217;ll find those links at the bottom of the page.</p>
<p>I think working on the <a href="zeropercentcards.com" title="Zero Percent Cards.com">ZPC.com</a> site made me realize how little design and coding had been doing &#8211; being rusty and struggling for ideas was a bit of an unpleasant surprise.  Then going out into the blogosphere and learning a bunch of new developments that I hadn&#8217;t even heard about yet pushed it home further.  I&#8217;m currently about 2,800 emails behind on the <acronym title="Interaction Design Association">IxDA</acronym> mailing list, and &#8211; at last count &#8211; 345 articles behind on my <a href="http://www.netvibes">RSS feeds</a>.</p>
<p>Shari will be away this weekend, and while I&#8217;m meeting up with my buddy Matt tonight for some beers and doing some early morning birding tomorrow, I think I&#8217;m going to do some work to get caught up on everything out there.  Read my IxDA feeds, clear out the old posts on <a href="http://www.netvibes.com">Netvibes</a> and read the articles in my &#8220;To Read&#8221; folders.  I could do with some IA/UX type stuff &#8211; and God knows that I need to get caught up on the happenings out in the world.</p>
<h2 class="dailylinks">IA/UX Out in the World</h2>
<ul>
<li><a href="http://meyerweb.com/eric/thoughts/2008/01/15/resetting-again/" title="Resetting Again - Meyerweb">Reset.css: Great information on using a stylesheet to reset conflicting browser defaults</a></li>
<li><a href="http://accessites.org/site/2006/07/big-red-angry-text/" title="BRAT: Big Red Angry Text">Big Red Angry Text: Calling out deprecated code examples in noticeable ways</a> &#8211; interesting perspective, kind of like the old &#8216;You sill use IE6, you suck&#8217; messages of 2 years ago.  Oh, and the site itself is full of good information.</li>
<li><a href="http://authorjet.com/news.php" title="Authorjet">Authorjet: Rapid HTML Wireframing without Dreamweaver</a> &#8211; cool idea that I&#8217;m going to play with this weekend.</li>
<li><a href="http://blog.wired.com/monkeybites/2008/03/html-5-suppor-1.html">Opera leads the pack in HTML 5 support &#8211; Wired.com</a></li>
<li><a href="http://www.w3.org/TR/html5-diff/">HTML 5 differences from HTML 4 &#8211; W3C</a> &#8211; Looks great.  Now can we actually get it as a real standard instead of a never-ending proposal?</li>
<li><a href="http://www.youtube.com/watch?v=a0qMe7Z3EYg" title="Design">Design Coding Rap Video</a> &#8211; just when you thought it was safe to back into Dreamweaver.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2008/04/18/the-iaux-rogue-wave-is-coming/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do the Disabled Really Buy Sporting Goods?</title>
		<link>http://www.martytdx.com/zealot/archives/2006/06/28/usabilityaccessibility-do-the-disabled-really-buy-sporting-goods</link>
		<comments>http://www.martytdx.com/zealot/archives/2006/06/28/usabilityaccessibility-do-the-disabled-really-buy-sporting-goods#comments</comments>
		<pubDate>Wed, 28 Jun 2006 17:02:42 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/archives/2006/06/28/usabilityaccessibility-do-the-disabled-really-buy-sporting-goods</guid>
		<description><![CDATA[While speaking to usability issues on a Sporting Goods E-commerce site, someone asked, "Do blind people actually buy sporting goods?". So, I decided to look into the question - do the disabled really buy sporting goods, or more specifically, do they buy them online?]]></description>
			<content:encoded><![CDATA[<p>While working on a website we are redesigning, I was seeing some minor usability/accessibility issues that I was concerned about.  I brought up those issues, mentioning that the site would be significantly less functional in some cases to those with disabilities, such as the vision-impaired and physically handicapped persons for whom using a mouse is difficult.  That was when someone asked, &#8220;Do blind people actually buy sporting goods?&#8221;.</p>
<p>In their defense, the speaker asked the question in good faith, and they were thinking of <strong>snowboards, golf clubs</strong> and <strong>footballs</strong> when they said it.  It took me only a second to respond perhaps not, and to ask if they had considered sweatpants, baseball caps, knee braces and more.  Suddenly, it was more pertinent, and I decided to look into the question &#8211; <em>do the disabled really buy sporting goods</em>, or more specifically, do they buy them online?<span id="more-293"></span></p>
<h2>Online sporting goods and the disabled</h2>
<p>The obvious answers are yes and yes.  The less obvious answer is yes, but not without significant hassle and difficulty.  I surveyed a number of major e-commerce sporting goods sites, as well as a number of smaller ones.  I also searched for sporting goods sites that catered to the disabled, either via the products or to service that segment of the population with &#8216;normal&#8217; sporting goods items.</p>
<h3>Findings</h3>
<p>I found 15 stores in total: 6 general retail stores, 4 specialized stores/merchants and 5 specific-target stores (those that either provided products for the disabled or were geared toward the disabled).  And the findings were disappointing to say the least.</p>
<table>
<tr>
<th>Study</th>
<th>Major Retailers</th>
<th>Specialty Retailers</th>
<th>Targeted Stores</th>
</tr>
<tr>
<td>Number of Stores</td>
<td>6</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Table-based</td>
<td>6</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<td>CSS Used</td>
<td>6</td>
<td>4</td>
<td>2</td>
</tr>
<tr>
<td>Aural Stylesheet</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>Access Keys</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>508(c) Compliance</td>
<td>0</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<td>508(c) Failures</td>
<td>4<sup>1</sup></td>
<td>4<sup>2</sup></td>
<td>2<sup>3</sup></td>
</tr>
<tr>
<td>JavaScript Off*</td>
<td>1</td>
<td>2</td>
<td>0/1</td>
</tr>
<tr>
<td>CSS Off*</td>
<td>6</td>
<td>2</td>
<td>0/2</td>
</tr>
<tr>
<td>Images Off*</td>
<td>0</td>
<td>2</td>
<td>1</td>
</tr>
<tr>
<td>Resizable Font</td>
<td>2</td>
<td>4</td>
<td>5</td>
</tr>
</table>
<fieldset>
<legend>Key</legend>
<p> *: Stores that worked with this function turned off<br />
<sup>1</sup>: <em>no alt tags, no alternative to multimedia, no <code>&lt;noscript&gt;</code> tags, no skip links provided</em>)<br />
<sup>2</sup>: <em>no alt tags, no alternative to multimedia, no <code>&lt;noscript&gt;</code> tags, no skip links provided</em>)<br />
<sup>3</sup>: <em>no alt tags, no skip links provided</em>)  </fieldset>
<p>The results: I would say that the fact that almost every site functioned with CSS disabled was good, but in many cases it was simply because they were tabled-based sites that really couldn&#8217;t break (one argument for tables).  However, tables are not supposed to be for layout, but that&#8217;s another rant.  Strangely, however, the non-table-based site failed miserably when CSS was disabled, as well.The major retailers failed in some basic U/A concerns, most notably the lack of <code>alt</code> text (which is a simple inclusion).  The fact that most of them have no way to resize text is a failing since some of the sites use very small text sizes to start with.  The specialized retailer sites really did no better, and in some ways were worse.  I have to say that these weren&#8217;t small companies, so I know that expertise and funding isn&#8217;t exactly a huge problem &#8211; yet they are horribly designed for accessibility.The smallest retailers &#8211; the ones who focused on goods for or marketing to the disabled, faired poorly &#8211; made even worse in that they knew who there audience was and still missed essential checks for those same users.  In many cases, the sites themselves are woefully designed.  To be fair, these are retailers constrained by small budgets for redesigns, but again you would think that sites that are geared toward the disabled would have better accessibility.  While two of these sites actually passed the 508(c) standards, one of those did so because their site was built with technology not even tested any longer in 508(c), so got a free ride.One of the biggest problems overall &#8211; and more prevalent as the scale of the site increased &#8211; was the heavy reliance on JavaScript (in all forms, including AJAX) for pizzazz and enhanced functionality.  There&#8217;s nothing wrong with that and in fact if you disable JavaScript (which 6-8% of users do), you have to do so understanding that you are going to lose much of the experience that these sites offer.  However, that shouldn&#8217;t mean that you can&#8217;t navigate the site, can&#8217;t find products on the site, and especially can&#8217;t add items to your cart or purchase a product.  These scripts should enhance the underlying code of these functions, not replace them.</p>
<p>While the 508(c) standard states &#8220;equivalent functions&#8221;, in my decidedly unscientific tests, I didn&#8217;t fail a site because a user couldn&#8217;t see a nicer picture, use a dropdown nav (as long as other navigation still functioned), or watch videos with JavaScript.  I <strong>did</strong> record a failure if they couldn&#8217;t navigate or &#8211; as happens all too often, add an item to their cart &#8211; functions essential to an e-commerce site.  I took the same approach to images: if you go to an e-commerce site featuring this type of products with images turned off, you have to expect a degradation of your user experience.  However, alt tags <em>should</em> replace much of the content¹, and sites failed when the entire navigation disappeared with the images.</p>
<p>So, the results were disappointing top to bottom, which leads to 2 questions: what <em>is</em> a disabled person supposed to do, and what can the retailers &#8211; at all levels &#8211; do to help them?</p>
<h2>Is it worth it?</h2>
<p>One may wonder what the call for accessibility is for a sporting goods site.  While usability and accessibility should be considered for ALL sites &#8211; as recommended by the federal guideline 508(c) in the U.S. &#8211; there are also valid business reasons for considering usability and accessibility.</p>
<ol>
<li><strong>There are sporting goods stores which cater directly to the disabled to service this underserved market.</strong>  Example: <a href="http://www.grovergear.com/">GroverGear.com</a> (Ironically, this site fails most accessibility tests, since it focuses on paraplegics, not those with other disabilities).</li>
<li><strong>The disabled can buy sports equipment, and often will do so online to avoid the trip to the store.</strong>  For those with lower paraplegia, using the web is not a difficulty.  However, those with upper body disabilities often use methods other than a mouse to navigate the web.  Navigation should take this into account.</li>
<li><strong>While perhaps not participating in physical sports, the visually-impaired can still buy &#8220;sportswear&#8221; as well.</strong></li>
<li><strong>Not all purchases would be for the purchaser. </strong> Some, like any other shopper, would be gifts for others.Example: <strong>Kidsportsinc.com</strong>: This user was rating their expereince on this site, and while it doesn&#8217;t address the accessibility of the site, it shows a disabled user buying sports equipment.<br />
<blockquote><p><strong>Excellent </strong>- December 28, 2005<br />
<strong>Reviewer:</strong> a Kidsportsinc.com customer via post-transaction survey<br />
<strong>Reviewer&#8217;s rating: </strong>     5 stars<br />
<strong>Price:</strong>  5 bars<br />
<strong>Shipping Options:</strong>      5 bars<br />
<strong>Delivery:  </strong>    5 bars<br />
<strong>Ease of Purchase: </strong> 5 bars<br />
<strong>Customer Service:</strong>  5 bars<br />
This was my 1rst purchase from this kidsportsinc, &amp; it was one of the best online shopping experiences I have ever had (Ive had some real nightmares with other merchants, including this Christmas). Im disabled &amp; cant drive, so I do do most of my shopping online. Therefore, I deal with tons of different online merchants, &amp; I do a lot of price comparisons before ordering. I ordered 2 Deluxe Hoops to Go portable basketball systems right before Christmas (Tons of places were out of stock on this item, &amp; my son &amp; grandchildren really wanted this for Christmas). The price was $10 &#8211; $30 lower than other sites, &amp; they delivered before the promised date. Ill definitely purchase from them again. Thanks kidsportsinc for great products, prices &amp; service. Ill recomend you to everyone I know. <strong>Donna R. from IL. &#8230;</strong><br />
<cite>from <a href="http://shopping.yahoo.com/merchrating/user_rv.html?merchant_id=1022345&amp;sort_method=mostrecent&amp;from=11">Yahoo Shopping</a></cite></p></blockquote>
</li>
<li><strong>Standards/usability/accessibility isn&#8217;t just for the disabled.</strong></li>
</ol>
<h2>Addressing the issue</h2>
<p>In my research, I discovered three very important facts about sports e-commerce and the disabled:</p>
<ul>
<li>None of the major e-commerce sports retailers are very accessible.</li>
<li>There are very few sites online for the disabled to purchase sports equipment that is a) geared toward the disabled or b) have sites geared toward disabled users.</li>
<li>Those sites that do target the disabled tend to be (ironically) very far from usable/accessible by today&#8217;s standards</li>
</ul>
<p>So, what can be done?  Well, basic usability and accessibility standards are a great start &#8211; things like <code>alt</code> tags, <em>skip links</em>, etc.  Other fixes are a bit larger in scope, particularly for an industry that builds its reputation on the look and feel of its displays (think Nike, Under Armour, any golf company).  Gracefully degrading code for non-JavaScript users, aural style sheets for the visually impaired and the like are great things to think about, but harder to implement.</p>
<p>I&#8217;d love to think that complete overhauls to the sites were an option but that&#8217;s unlikely, at least in the short term.  But some relatively simple fixes <em>could</em> be put into place to greatly improve the sites:</p>
<ul>
<li>Adding <code>alt</code> tags (the correct ones) to all applicable images</li>
<li>creating print and aural stylesheets &#8211; which can be done to the existing sites, and you don&#8217;t even need to change the site beyond adding the calls to the new stylesheets.</li>
<li>Make fonts resizable with ems or keyword sizes.</li>
<li>Add access key functionality for important functions, especially to bypass JavaScript</li>
<li>Make sure that critical functions (like <strong>Add to Cart</strong>) still work even without JavaScript</li>
</ul>
<p>These are just the beginning of the fixes, some small and some large.  But all are critical to making these sites actually usable for people with a variety of disabilities.</p>
<hr /><strong>notes »<br />
</strong><strong>¹</strong> in many cases, alt text for product images does not exist, however, the name of the item was next to the image so the alt text was somewhat redundant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2006/06/28/usabilityaccessibility-do-the-disabled-really-buy-sporting-goods/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest and Greatest</title>
		<link>http://www.martytdx.com/zealot/archives/2005/12/23/latest-and-greatest</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/12/23/latest-and-greatest#comments</comments>
		<pubDate>Fri, 23 Dec 2005 13:34:51 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=165</guid>
		<description><![CDATA[Well, it&#8217;s been a long two weeks &#8211; tons of different projects to work on both &#8216;officially&#8217; and freelancing. Here&#8217;s a sampling: A dosage calculator program that was used for ZLB Behring&#8217;s Humate-P website. The first thing was the JavaScript calculator itself, then a chart for those who didn&#8217;t have JavaScript enabled or wanted to [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s been a long two weeks &#8211; tons of different projects to work on both &#8216;officially&#8217; and freelancing.  Here&#8217;s a sampling:</p>
<div id="pix">A dosage calculator program that was used for ZLB Behring&#8217;s <a href="http://www.humatep.com">Humate-P</a> website.  The first thing was the JavaScript calculator itself, then a chart for those who didn&#8217;t have JavaScript enabled or wanted to see more at one time.  I have also been working on redesigning several pharmaceutical sites, including an intranet and some tangent sites, and a holiday newsletter (I created the background imagery and animation).</p>
<p><a href="/postimages/dosage.jpg" rel="lightbox[165]"><img alt="Dosage Calculat0r" src="http://www.martytdx.com/zealot/postimages/dosage_sm.jpg" /></a> <a href="http://www.martytdx.com/zealot/postimages/calc_chart.jpg" rel="lightbox[165]"><img alt="Calculator Chart" src="http://www.martytdx.com/zealot/postimages/calc_chart_sm.jpg" /></a> <a href="http://www.martytdx.com/design/blog/posts/intranet.jpg" rel="lightbox[165]"><img alt="Pharm Intranet" src="http://www.martytdx.com/design/blog/posts/intranet_sm.jpg" /></a> <a href="http://www.martytdx.com/design/blog/posts/albumin_compare.jpg" rel="lightbox[165]"><img alt="Albumin.org" src="http://www.martytdx.com/design/blog/posts/albumin_sm.jpg" /></a></div>
<div id="pix">Some other freelance projects that I just finished.</p>
<p><a href="http://www.martytdx.com/design/blog/posts/mystique_winter05.jpg" rel="lightbox[165]"><img alt="Mystique" src="http://www.martytdx.com/design/blog/posts/mystique_winter05_sm.jpg" /></a> <a href="http://www.martytdx.com/design/blog/posts/gdm.jpg" rel="lightbox[165]"><img alt="Global Direct Site" src="http://www.martytdx.com/design/blog/posts/gdm_sm.jpg" /></a></div>
<p>I have a few more things that I am still working on, but it&#8217;s been a LOT of work and variety of projects at once lately.  And I still need to get going on 2006 work!</p>
<p><strong>Links You Don&#8217;t Want to Miss Â»</strong></p>
<ul>
<li><a href="http://www.thekidfrombrooklyn.com/">The Kid from Brooklyn</a> &#8211; <em>He&#8217;s a bit rough, but mildly amusing &#8211; in that abusive, crass, cursing, New York-sort-of-way</em></li>
<li><a href="http://movies.crooksandliars.com/Countdown-RightB.mov">Keith Olbermann vs. the Right Brothers</a></li>
<li><a href="http://www.npr.org/templates/story/story.php?storyId=5011464">NPR : The Laws of War: &#8216;Treat Them With Humanity&#8217;</a></li>
<li><a href="http://www.4guysfromviewpoint.com/?p=76">4 Guys From Viewpoint Â» If WWII was an MMORPG</a></li>
<li><a href="http://www.sendstation.com/us/products/earbuddy/">SendStation &#8211; Products &#8211; earBuddy</a></li>
<li><a href="http://msnbc.msn.com/id/10334157/displaymode/1107/s/2/framenumber/1/var1/btn_0">Before and after Katrina</a></li>
<li><a href="http://www.jibjab.com/Movies/MoviePlayer.aspx?contentid=122&#038;adp=1">Big BoxMart</a></li>
<li><a href="http://www.jibjab.com/Movies/MoviePlayer.aspx?contentid=123&#038;adp=1">Better 2-0-5</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/12/23/latest-and-greatest/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://movies.crooksandliars.com/Countdown-RightB.mov" length="3250381" type="video/quicktime" />
		</item>
		<item>
		<title>I Know This Is Hard to Believe&#8230;</title>
		<link>http://www.martytdx.com/zealot/archives/2005/11/17/i-know-this-is-hard-to-believe</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/11/17/i-know-this-is-hard-to-believe#comments</comments>
		<pubDate>Thu, 17 Nov 2005 23:08:40 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=164</guid>
		<description><![CDATA[You know, there are times when I hate IE. I mean, I hate IE in general, but there are times when I REALLY hate I.E. I&#8217;m doing a freelance site that has gone one forever and a day, but I&#8217;m 99.5% done now &#8211; and have found an error that is really pissing me off. [...]]]></description>
			<content:encoded><![CDATA[<p>You know, there are times when I hate IE.  I mean, I hate IE in general, but there are times when I REALLY hate I.E.  I&#8217;m doing a freelance site that has gone one <em>forever and a day</em>, but I&#8217;m 99.5% done now &#8211; and have found an error that is really pissing me off.<span id="more-164"></span></p>
<p>I have a right-column <code>DIV</code> that I use for images, quotes, etc.  The right column div has a section of 3 sub-divs within it which in turn have background images to create a fancy-schmancy box:</p>
<pre><code>
/* CSS */
#rtcolboxtop {
position:relative;
background-image:url(images/callbox_top.gif);
background-repeat:no-repeat;
background-position:top left;
width:250px;
text-align:center;
}
#rtcolbox {
background-image:url(images/callbox_sides.gif);
background-repeat:repeat-y;
background-position:top left;
width:250px;
text-align:center;
}
#rtcolboxbottom {
background-image:url(images/callbox_bottom.gif);
background-repeat:no-repeat;
background-position:bottom left;
width:250px;
text-align:center;
}
</code></pre>
<p>In Firefox, everything is hunky-dorey, but in IE6 when you hover over the link, the whole middle section (<code>#rtcolbox</code>) shifts over:</p>
<p><img class="photo" src="http://www.martytdx.com/zealot/postimages/ie_shift.jpg" /> <img class="photo" src="http://www.martytdx.com/zealot/postimages/ie_shift2.jpg" /></p>
<p>After a series of tweaks to find out where the problem lay, I figured out it was this two lines of code in the CSS:</p>
<pre><code>a.linkage:link, a.linkage:visited {text-decoration:none;
color:#369;
font-weight:bold;
border-bottom:1px solid #79A0C7;}
a.linkage:hover, a.linkage:active {text-decoration:none;
color:#369;
font-weight:bold;
border-bottom:1px solid #336699;}
</code></pre>
<p>In particular, it was the a.linkage:hover state <code>border-bottom</code> color change that was causing the  problem; if the color stayed the same as the link and visited states, then everthing was great.  But switch the color and the shift occurred.</p>
<p>I&#8217;ve found a lot of people mentioning similar things, including <a href="http://www.webmasterworld.com/forum83/4970.htm">this post</a> and the <a href="http://www.communitymx.com/content/article.cfm?cid=C37E0">Holly Hack</a>, but none of the solutions proposed seemed to help.  In the end, I just used the <strong>* html selector</strong> hack to give IE the same color bottom-border, and better browsers the changing color.</p>
<p>What bugs me (no pun intended) is just why the heck this is happening and how do I stop it without having to write special code for IE (which is the client&#8217;s preferred browser, unfortunately).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/11/17/i-know-this-is-hard-to-believe/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random.</title>
		<link>http://www.martytdx.com/zealot/archives/2005/09/22/random</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/09/22/random#comments</comments>
		<pubDate>Thu, 22 Sep 2005 13:28:58 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=147</guid>
		<description><![CDATA[Hectic. Random. Chaos. Such is life at times. I&#8217;ve got too many things I&#8217;m trying to do and not nearly enough time to do them all &#8211; even with help from trusted friends. I&#8217;m still exhausted, but I think working out is going to be helping that &#8211; it feels good to exercise again &#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Hectic. Random. Chaos. </p>
<p>Such is life at times.  I&#8217;ve got too many things I&#8217;m trying to do and not nearly enough time to do them all &#8211; even with help from trusted friends.  I&#8217;m still exhausted, but I think working out is going to be helping that &#8211; it feels good to exercise again &#8230; not to mention I&#8217;ll finally have a chance to get through all of those books/magazines that have been stacking up in the meantime (reading while working out used to be my number one time to read).</p>
<p>One of my projects at work has been really trying me &#8211; I&#8217;m a JavaScript newbie, and this script <em>should be</em> fairly easy but it&#8217;s driving me up a wall.  <a href="http://www.furiousball.com/inmydiatribe/">Van</a> did much of the grunt work giving me the basic script but my ineptitude at adapting it has been a hair-pulling experience.  But we finally got it &#8211; and I was even able to make changes when I got them back from the client a few days ago.  It&#8217;s not a bad site, overall &#8211; just took more time than I wanted/had to spend.</p>
<p>The house from Hell is coming together nicely now &#8211; although we are considering getting out of the rental business.  After this debacle, I just don&#8217;t like the idea of being 75 minutes from the place, where I can&#8217;t keep an eye on it or have to spend lots of time to go down and fix little things.   And with the market the way that it is in Newark, it might be better to sell and look for a fixer-upper closer to home.</p>
<p><strong>Daily Links &#187;</strong></p>
<ul>
<li><a href="http://print.google.com/print?id=Vimx2y5WKpMC&#038;lpg=PA7&#038;dq=Christopher+Moore&#038;prev=http://print.google.com/print%3Fie%3DUTF-8%26q%3DChristopher%2BMoore%26btnG%3DSearch&#038;pg=PA7&#038;sig=cFLvGwabnivrfXIRhHFBqdm9jko">Google&#8217;s Library Project &#8211; <em>Check out 3 pages on one of my favorite books online!</em></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/09/22/random/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigation Consternation</title>
		<link>http://www.martytdx.com/zealot/archives/2005/07/06/navigation-consternation</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/07/06/navigation-consternation#comments</comments>
		<pubDate>Wed, 06 Jul 2005 13:12:12 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=110</guid>
		<description><![CDATA[I'm in the middle of a contract where we will creating a site that incorporates several departments presentation needs to a varied number of customers.  In short, <b>Department A</b> needs to be able to present information to <i>Customer Type A</i> and <i>Customer Type B</i>, while <b>Department B</b> needs to be able to present information to <i>Customer Type C</i>, as well as some information which is share by all Customer types.  The data varies between global information without any account specificity, and user-specific transactional data.  ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the middle of a contract where we will creating a site that incorporates several departments presentation needs to a varied number of customers.  In short, <b>Department A</b> needs to be able to present information to <i>Customer Type A</i> and <i>Customer Type B</i>, while <b>Department B</b> needs to be able to present information to <i>Customer Type C</i>, as well as some information which is share by all Customer types.  The data varies between global information without any account specificity, and user-specific transactional data.  </p>
<p>The navigation consists of a global &#8216;frame&#8217; from the parent company (header, footer and left-nav style).  Between them is our content (<code>&lt;div id="container"&gt;</code>), which in turn has two divs, <code>leftcol</code> and <code>rightcol</code> (I know, so original).  We are basing the left navigation &#8211; the main navigational element &#8211; on the parent site, although we are tweaking the style slightly, customizing the menu items to our site specifics, and most of all making it compliant by removing tables and image-based &#8216;text&#8217; links.  The main content of the page would fit in the right column div, often being fed from another part of the company&#8217;s database.</p>
<p>The main navigation isn&#8217;t a problem.  I&#8217;m using nested lists to create a primary and secondary navigation to mimic the table-based rollovers that the parent site has.  The problem is that when we reach certain portions of the site, I would need to go to a <strong><em>tertiary</em></strong> level of navigation.  Not necessarily a problem in and of itself, although it does pose space problems within the width of the left column div.</p>
<p>Still, it was my recommendation as the most advisable method to go, following this general pattern:</p>
<p><code><br />
&lt;ul&gt;<br />
&lt;li&gt;HEADER 1&lt;/li&gt;<br />
&lt;li&gt;HEADER 2&lt;/li&gt;<br />
	&lt;ul&gt;&lt;li&gt;page 1&lt;/li&gt;<br />
	&lt;li&gt;page 2&lt;/li&gt;<br />
	&lt;li&gt;CURRENT PAGE&lt;/li&gt;<br />
		&lt;ul&gt;&lt;li&gt;Option 1&lt;/li&gt;<br />
		&lt;li&gt;Option 2&lt;/li&gt;<br />
		&lt;li&gt;Option 3&lt;/li&gt;&lt;/ul&gt;<br />
	&lt;li&gt;page 4&lt;/li&gt;&lt;/ul&gt;<br />
&lt;li&gt;HEADER 3&lt;/li&gt;<br />
&lt;li&gt;HEADER 4&lt;/li&gt;<br />
&lt;li&gt;HEADER 5&lt;/li&gt;<br />
&lt;/ul&gt;<br />
</code></p>
<p>Simple, aside from spacing problems (32-character option names don&#8217;t fit very well).  However, the client team wanted to use a set of navigation for that particular page, all within the right column DIV.  So, suddenly, we&#8217;re left with left navigation, and <em>not-quite-as-far-left navigation</em>.  I tried to explain the fact that having to left-justified navigations would most likely be confusing to the user, and that incorporating the navigation into overall navigation would perhaps be more advisable.  They weren&#8217;t so sure, because they wanted to make sure that the topic navigation was in the face of the user.</p>
<p>After some discussions, it was then suggested that perhaps top navigation within the right DIV (the &#8216;frame&#8217;, if you will) would make more sense.  At first, I wasn&#8217;t so sure because having two navigational areas &#8211; one top and one left &#8211; isn&#8217;t always the best idea.  However, most situations also use this with TOP = primary/global nav, while LEFT = secondary/subject nav &#8211; <em>not the other way around</em>.  In the end, I created three comps:</p>
<p>1. <a href="http://www.martytdx.com/design/blog/posts/tertiarynav.jpg" rel="lightbox[110]">Integrated Left Navigation</a><br />
2. <a href="http://www.martytdx.com/design/blog/posts/dualnav.jpg" rel="lightbox[110]">Dual Left Navigation</a><br />
3. <a href="http://www.martytdx.com/design/blog/posts/tabnav.jpg" rel="lightbox[110]">Left and Top Navigation</a>.</p>
<p>So, the result?  Strangely enough, to me at least, the last choice seems to be the consensus winner.  While I had my concerns about offering two separate navigation elements (well, four if you include the header and footer links &#8211; but don&#8217;t get me started there), it seems to work pretty well.  Creating the &#8216;Inner Nav&#8217; using a top tab-based navigation, if offers a way for the user to focus on the navigation inherent to that particular user-specific system (in this case &#8220;Orders&#8221;) as opposed to the more global (and generic) navigation on the left side.  All of the items that the customer might need to use from within that Order space would be within that inner navigational space &#8211; and when they are done, they simply use the global navigation to the left to visit other portions of the site.</p>
<p>From what I know about usability, it seems to fly in the face of good design, but in this case it seems to make the most sense, and actually appears to work fairly well.  I&#8217;m sure the usability folks will have plenty of words on the subject, but at this point, I&#8217;m having trouble finding it.</p>
<p><strong>Daily Links &#187;</strong></p>
<ul>
<li><a href="http://www.clooneynews.com/playboy.htm">George Clooney interview</a> &#8211; <em>I actually gained a lot of respect for this guy, despite <strong>Batman and Robin</strong>.</em></li>
<li><a href="http://www.delawareonline.com/apps/pbcs.dll/article?AID=/20050706/NEWS01/507060327/1006">Record Bluefin Tuna</a></li>
<li><a href="http://www.cableyoyo.com/">CableYoYo</a> &#8211; <em>cool invention for &#8216;cordless&#8217; items</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/07/06/navigation-consternation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MBofA</title>
		<link>http://www.martytdx.com/zealot/archives/2005/06/30/mbofa</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/06/30/mbofa#comments</comments>
		<pubDate>Thu, 30 Jun 2005 13:31:53 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/http:/www.martytdx.com/zealot/archives/2005/06/30/mbofa</guid>
		<description><![CDATA[Well, they denied it despite the numerous rumors that Wachovia was going to buy them. But the rumors were at least half true: MBNA has been bought by Bank of America for $35.1B. I can&#8217;t say that I&#8217;m surprised &#8211; the bank has been ripe for a merger or takeover for quite a while. The [...]]]></description>
			<content:encoded><![CDATA[<p>Well, they denied it despite the numerous rumors that <strong>Wachovia</strong> was going to buy them.  But the rumors were at least half true:  <strong>MBNA</strong> has <a href="http://wireservice.wired.com/wired/story.asp?section=Breaking&#038;storyId=1056650&#038;tw=wn_wire_story">been bought</a> by <strong>Bank of America</strong> for $35.1B.  </p>
<p>I can&#8217;t say that I&#8217;m surprised &#8211; the bank has been ripe for a merger or takeover for quite a while.  The fact that they are going to do another job cut after their much-publicized severance package deal earlier this year is not going to sit well with those still around.  It&#8217;s a shame because many people stayed thinking that they would be protected &#8211; I hope that they still are.</p>
<p>As for me, I&#8217;m hoping to enjoy a bounce-back in my stock after the <a href="http://quote.bloomberg.com/apps/news?pid=10000006&#038;sid=aaRuCi2aeCzA&#038;refer=home">fall it took in April</a>.  Unfortunately, the people who are going to benefit from this most are also the same people who have put the company in this position in the first place &#8211; the new executive management.  As usual, the little guys are going to get hurt.</p>
<p>I have liked the way that B of A does business, though &#8211; maybe this will end up being a good thing for those who remain, and for cardholders who have chafed at MBNA&#8217;s recent strategies.  Stay tuned&#8230;</p>
<p><strong>Be sure to check out &#187;</strong></p>
<ul>
<li><a href="http://www.notablewords.com/">Notable Words</a> &#8211; <em>quoting the best of the blogs</em></li>
<li><a href="http://www.textism.com/tools/textile/">Textile </a>- The Human HTML editor</li>
<li><a href="http://www.nickrigby.com/article/25/drop-down-menus-horizontal-style-pt-3">Horizontal Drop-Down Menus</a> &#8211; <cite>NickRigby.com</cite></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/06/30/mbofa/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE glitch #999,999,001</title>
		<link>http://www.martytdx.com/zealot/archives/2005/06/21/ie-glitch-999999001</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/06/21/ie-glitch-999999001#comments</comments>
		<pubDate>Wed, 22 Jun 2005 02:55:29 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/?p=102</guid>
		<description><![CDATA[I&#8217;m helping create the design for the customer service site a pharmaceutical company, and right now I&#8217;m mocking up the splash page. I have to stay within the guidelines of their overall company website (use their header and footer, keep navigation style the same), but I was playing with the login box. Everything is hunky-dorey [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m helping create the design for the customer service site a pharmaceutical company, and right now I&#8217;m mocking up the splash page.  I have to stay within the guidelines of their overall company website (use their header and footer, keep navigation style the same), but I was playing with the login box.  Everything is hunky-dorey in Firefox, but <acronym title="Internet Explorer">IE</acronym> mucks it up.</p>
<div id="form">
<img src="http://www.martytdx.com/design/blog/posts/form_firefox.jpg" alt="firefox screenshot" title="form display in Firefox" /><br />Form Display in Firefox<br />
<img src="http://www.martytdx.com/design/blog/posts/form_ie.jpg" alt="IE screenshot" title="form display in IE" /><br />Form Display in IE
</div>
<p>As you can see, the form elements are moved to the right in IE, despite how it is coded in both <acronym title="Extensive Hypertext Markup Language">XHTML</acronym> and <acronym title="Cascading Style Sheets">CSS</acronym>:</p>
<h4>XHTML</h4>
<p><code>&lt;form&gt;<br />
		&lt;fieldset&gt;&lt;legend&gt;Login&lt;/legend&gt;<br />
		username&lt;br /&gt;&lt;input name="username" type="text" tabindex="1" title="username" dir="ltr" value="" size="18" maxlength="24" /&gt;<br />
		login &lt;br /&gt;&lt;input name="pw" type="password" tabindex="2" title="password" value="" size="10" maxlength="10" /&gt;<br />
		&lt;/fieldset&gt;<br />
	&lt;/form&gt;</code></p>
<h4>CSS</h4>
<p><code><br />
fieldset {<br />
color:#CC0000;<br />
font:0.7em arial,helvetica,sans-serif;<br />
font-weight:bold;<br />
width:60%;<br />
}<br />
</code></p>
<p>I just can&#8217;t figure this one out &#8211; I&#8217;ve tried moving the <code><br /></code> tags (which actually aren&#8217;t necessary and I&#8217;ll be removing anyway), changing size, removing parts, adding parts, but no change.  I just can&#8217;t figure out what IE is doing here.</p>
<h3>in other news&#8230;</h3>
<p>&#8226; Congrats to <a href="http://www.jodyferry.com">Jody</a> on winning <a href="http://www.cameronmoll.com/archives/000348.html">Screen Grab Confab IV</a> on <a href="http://www.cameronmoll.com">Cameron Moll&#8217;s</a> website.  Way to go, Jody.  I&#8217;m more than just a little jealous, by the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/06/21/ie-glitch-999999001/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tinicum</title>
		<link>http://www.martytdx.com/zealot/archives/2005/04/06/tinicum</link>
		<comments>http://www.martytdx.com/zealot/archives/2005/04/06/tinicum#comments</comments>
		<pubDate>Wed, 06 Apr 2005 05:41:14 +0000</pubDate>
		<dc:creator>Marty</dc:creator>
				<category><![CDATA[Birding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Play]]></category>

		<guid isPermaLink="false">http://www.martytdx.com/zealot/http:/www.martytdx.com/zealot/archives/2005/04/06/tinicum</guid>
		<description><![CDATA[My wife and I decided to take a few days to play hooky with my extra time right now (well, extra in that I don't have a 9-5 job to attend; I still have projects to work on).  ANYHOO, tomorrow it is a trip to <strong>Cape May</strong> but today it was what was supposed to be a 2-hour trip to <strong>John Heinz National Wildlife Refuge</strong> (AKA Tinicum) to check out the local waterfowl migration.]]></description>
			<content:encoded><![CDATA[<p>My wife and I decided to take a few days to play hooky with my extra time right now (well, extra in that I don&#8217;t have a 9-5 job to attend; I still have projects to work on).  ANYHOO, tomorrow it is a trip to <strong>Cape May</strong> but today it was what was supposed to be a 2-hour trip to <strong>John Heinz National Wildlife Refuge</strong> (AKA Tinicum) to check out the local waterfowl migration.  </p>
<p>Our luck wasn&#8217;t that great to start, as we mostly saw a buttload of <strong><a href="http://www.flickr.com/photos/sharid/8575644/">tree swallows</a></strong> when we started.  Still, Shari got a chance to take quite a few good shots, and we were off.  We had both brought our cameras &#8211; her with the the <strong><em>Nikon D70</em></strong> digital (which is why she HAS her pictures), and my with my <strong><em>Nikon N80</em></strong> film camera, which is why I don&#8217;t have mine yet.  And there are a lot of cool pictures to wait for.</p>
<p>She got some awesome shots of a <a href="http://www.flickr.com/photos/sharid/8564590/">Golden-Crowned Kinglet</a>, a <a href="http://www.flickr.com/photos/sharid/8564433/">garter snake</a>, a <a href="http://www.flickr.com/photos/sharid/8564836/">great blue heron</a> and a bunch of other stuff.  I&#8217;m hoping that mine are nearly as good.  Even if they aren&#8217;t, we got to see some cool stuff.  I added 3 new species to my life list (&#8220;geek alert!&#8221;):</p>
<ul>
<li>Palm Warbler</li>
<li>Rusty Blackbird</li>
<li>Northern Rough-winged Swallow</li>
</ul>
<p>Shari added those, plus a few others like the <strong>Eastern Phoebe</strong> and <strong>Common Merganser</strong>.  But the unrecorded highlights were seeing a <strong>Bald Eagle</strong> and a nesting <strong>Great Horned Owl</strong>.  Oh, that and carrying my wimpy wife through the flooded trail on my back because she didn&#8217;t want to get her sneakers muddy.  Just kidding &#8211; it was pretty flooded, and that water was colder and deeper than I expected.  It was hard to sneak up on things after with me squish-squishing away.  Oh well, I just hope that my boots dry out by tomorrow for the hike at Cape May!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.martytdx.com/zealot/archives/2005/04/06/tinicum/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

