<?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>berchman.com</title>
	<atom:link href="http://www.berchman.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.berchman.com</link>
	<description>WordPress and Thesis Expert. First things first but not necessarily in that order. (Topics may shift while in flight)</description>
	<lastBuildDate>Sun, 08 Nov 2009 05:33:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Thesis Tutorial:Funky Header Navigation</title>
		<link>http://www.berchman.com/thesis-tutorialfunky-header-navigation/</link>
		<comments>http://www.berchman.com/thesis-tutorialfunky-header-navigation/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 02:44:31 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[custom navigation]]></category>
		<category><![CDATA[hook]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=763</guid>
		<description><![CDATA[
Sometimes one has the need to create a custom, or &#8220;funky&#8221; header navigation and today is the day for me. So I thought I would document the process of what I do to help you with a custom navigation challenge.
We want to create a vertical navigation as is seen below in the previous version of [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.berchman.com/thesis-tutorialfunky-header-navigation/" title="Permanent link to Thesis Tutorial:<br />Funky Header Navigation"><img class="post_image alignnone" src="http://www.berchman.com/wp-content/uploads/2009/06/thesis-WordPress.jpg" width="425" height="250" alt="WordPress/Thesis tutorial image" /></a>
</p><p>Sometimes one has the need to create a custom, or &#8220;funky&#8221; header navigation and today is the day for me. So I thought I would document the process of what I do to help you with a custom navigation challenge.</p>
<p>We want to create a vertical navigation as is seen below in the previous version of the website (click the image to see full size).</p>
<p><a href="http://www.berchman.com/wp-content/uploads/2009/11/Picture-37.png"><img class="alignnone size-medium wp-image-764" title="Screen shot 2009-11-02 at 12.19.47 PM" src="http://www.berchman.com/wp-content/uploads/2009/11/Screen-shot-2009-11-02-at-12.19.47-PM-300x60.png" alt="Screen shot 2009-11-02 at 12.19.47 PM" width="300" height="60" /></a></p>
<p>There is a bit of vertical navigation that is distinct from the main horizontal navigation that is governed by the Thesis navigation controls. To do this we need to do some custom programming.</p>
<h2>So how do we add this navigation?</h2>
<p>This has to be &#8220;<em>hard-coded</em>&#8221; navigation. This means we will be using <strong><em>custom_functions.php</em></strong> and <strong><em>custom.css</em></strong> to get both the <em>function</em> and <em>form</em> of what we are after.</p>
<p>First thing is to get the navigation we want to add in the form of an unordered list like this:</p>
<pre>&lt;ul&gt;
   &lt;li&gt;&lt;a title="Link to the foleypod homepage" href="http://www.foleypod.com/" target="_blank"&gt;home&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a title="A link to our portfolio" href="http://foleypod.com/portfolio" target="_blank"&gt;our work&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a title="Easy way to pay foleypod" href="http://foleypod.com/payment" target="_blank"&gt;pay bill online&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a title="See who we've made very happy" href="http://foleypod.com/testimonials" target="_blank"&gt;what clients say&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>Now that we have the list defined we need to create the <em>function</em> to get this list to show in the right place of the header.</p>
<h3>Thesis function time</h3>
<p><img class="size-full wp-image-765 alignright" title="Picture 36" src="http://www.berchman.com/wp-content/uploads/2009/11/Picture-36.png" alt="Picture 36" width="245" height="161" /></p>
<p>Before we add anything here is what the space looks like where we are going to put this navigation. The header already has a background image applied and our navigation is going just to the right of the white line.</p>
<p>Now we are going to create a function that will tell WordPress/Thesis to insert the navigation that we have defined above. Here is the function without the &#8216;guts&#8217; of the navigation:</p>
<pre>function custom_banner_nav() { ?&gt;
&lt;div id="custom_head_nav"&gt;
..........
&lt;/div&gt;

&lt;? }
add_action('thesis_hook_before_title', 'custom_banner_nav');</pre>
<p>You can see that we have defined the function with the name &#8216;custom_banner_nav.&#8221; We have also defined a div space &#8220;custom_head_nav&#8221; so we can dial in on the guts of this function, the unordered list from before.</p>
<p>Now the entire function looks like this:</p>
<pre>function custom_banner_nav() { ?&gt;
&lt;div id="custom_head_nav"&gt;

&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://www.foleypod.com/" title="Link to the foleypod homepage" target="_blank"&gt;home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://foleypod.com/portfolio" title="A link to our portfolio" target="_blank"&gt;our work&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://foleypod.com/payment" title="Easy way to pay foleypod" target="_blank"&gt;pay bill online&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://foleypod.com/testimonials" title="See who we've made very happy" target="_blank"&gt;what clients say&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;

&lt;? }
add_action('thesis_hook_before_title', 'custom_banner_nav');</pre>
<p>We have the functionality now working. We upload our custom_functions.php file via FTP and we see this now:</p>
<p><a href="http://www.berchman.com/wp-content/uploads/2009/11/Picture-37.png"><img class="alignnone size-medium wp-image-767" title="Picture 37" src="http://www.berchman.com/wp-content/uploads/2009/11/Picture-37-300x92.png" alt="Picture 37" width="300" height="92" /></a></p>
<p>Notice the list, ugly but functional. Now to get it in position and style it as we want it.</p>
<h3>It&#8217;s custom.css time</h3>
<p>First thing for me is to get rid of the bullets:</p>
<p><code>.custom div#custom_head_nav ul {<br />
list-style-type: none;<br />
}<br />
</code></p>
<p>Now that the bullets are gone lets get the upper left corner of this where we want it. For that we need to add margin to the left, and padding to the top (dont add margin to the top or you get an unwanted space with the graphics:</p>
<p><code>margin-left: 535px;<br />
padding-top: 15px;<br />
</code></p>
<p>Then I add the text size. The resulting css tag looks like this:</p>
<p><code>.custom div#custom_head_nav ul {<br />
list-style-type: none;<br />
margin-left: 535px;<br />
padding-top: 15px;<br />
font-size: 12px;<br />
}<br />
</code></p>
<p>Now I need vertical space between each line to get this dialed in. To do this I use this code:</p>
<p><code>.custom div#custom_head_nav ul li {<br />
margin-bottom: 6px;<br />
}<br />
</code></p>
<p>This adds margin to the bottom of each item in the list. The navigation now looks like this:</p>
<p><img class="alignnone size-full wp-image-768" title="Picture 38" src="http://www.berchman.com/wp-content/uploads/2009/11/Picture-38.png" alt="Picture 38" width="252" height="141" /></p>
<h2>The last option</h2>
<p>The last option I added was to put an underline to show when you hover your mouse. To do that I added the following CSS tags:</p>
<p><code>.custom div#custom_head_nav ul li a:hover {<br />
text-decoration: underline;<br />
}<br />
</code></p>
<p>That&#8217;s it. Simply FTP up your files and you are d.o.n.e.</p>
<p>Hope this helps. Let me know if you have any questions.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/9d1f4f39-d7ac-41ea-b06c-9c5ac6f8344d/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=9d1f4f39-d7ac-41ea-b06c-9c5ac6f8344d" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/thesis-tutorialfunky-header-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How Long Does Making My WordPress Website Take?</title>
		<link>http://www.berchman.com/how-long-does-making-my-wordpress-website-take/</link>
		<comments>http://www.berchman.com/how-long-does-making-my-wordpress-website-take/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:01:45 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[explanation]]></category>
		<category><![CDATA[improvements]]></category>
		<category><![CDATA[patient]]></category>
		<category><![CDATA[rollout]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=759</guid>
		<description><![CDATA[I hear this question quite often from clients and thought I would answer it as best I could. If you are in the market to hire someone to build your website, or if you are a designer/developer perhaps this explanation will help.
I&#8217;ve decided to use the power of video to convey my answer. I find [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I hear this question quite often from clients and thought I would answer it as best I could. If you are in the market to hire someone to build your website, or if you are a designer/developer perhaps this explanation will help.</p>
<p>I&#8217;ve decided to use the power of video to convey my answer. I find this format to be more efficient in terms of getting my point across. I have more improvements to come for my future use of video. So, if you can be patient, the quality of videos will improve in the future with the coming rollout of the &#8216;<a href="http://www.berchman.com/category/a-website-redesign/">realigned</a>&#8216; berchman.com.</p>
<p><a href="http://www.berchman.com/how-long-does-making-my-wordpress-website-take/"><em>Click here to view the embedded video.</em></a></p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/8823b3a6-867d-4902-bac7-bc00616d568c/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=8823b3a6-867d-4902-bac7-bc00616d568c" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/how-long-does-making-my-wordpress-website-take/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Thesis 1.6 Out of Beta</title>
		<link>http://www.berchman.com/thesis-1-6-out-of-beta/</link>
		<comments>http://www.berchman.com/thesis-1-6-out-of-beta/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 19:31:12 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=750</guid>
		<description><![CDATA[
DIYThemes has unleashed the final version of Thesis 1.6. While the beta has been out for weeks I never downloaded it from a combination of busyness and being prudent. How many times have you been burned for being an early adopter? For me too many, so in the words of Yoda, &#8220;Patient you must be.&#8221;
Patience
I [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.berchman.com/thesis-1-6-out-of-beta/" title="Permanent link to Thesis 1.6 Out of Beta"><img class="post_image alignnone" src="http://www.berchman.com/wp-content/uploads/2009/02/thesis-binary.jpg" width="425" height="250" alt="Image for Thesis" /></a>
</p><p><span style="background-color: #ffffff; ">DIYThemes has unleashed the final version of <a href="http://diythemes.com/thesis/?a_aid=hbdg&amp;a_bid=47c5a620">Thesis 1.6</a>. While the beta has been out for weeks I never downloaded it from a combination of busyness and being prudent. How many times have you been burned for being an early adopter? For me too many, so in the words of Yoda, &#8220;Patient you must be.&#8221;</span></p>
<h2>Patience</h2>
<p>I was patient and it paid off. I downloaded and installed <a href="http://diythemes.com/thesis/?a_aid=hbdg&amp;a_bid=47c5a620">Thesis 1.6</a> following Chris Pearson&#8217;s instructions to a &#8220;T&#8221; without any installation issues at all. Very straight forward and simple. However, I was surprised at a change in navigation structure. In the past Thesis has managed it primary navigation using an unordered list &lt; ul &gt; as it should be along with the <strong>ID</strong> of <strong><em>#tabs</em></strong>.</p>
<p>That has changed in Thesis 1.6. Primary navigation is managed the same way in an unordered list, but now has a <strong>class</strong> named <strong><em>.menu</em></strong></p>
<p>On the surface this may not seem like a big deal, and its really not for the individual WordPress/Thesis blog owner. However, for someone like me who manages more than a few Thesis based websites this upgrade will cost time and treasure. In particular any navigation system that has been highly customized will need some care and attention.</p>
<p>The one small feature adjustment I really like is putting the Thesis options into their own sub-menu on the left hand side. A very nice touch.</p>
<p>On the whole I am very happy with the upgrade and improvements in this version of Thesis and am already rolling it out to sites I work with. In fact I need to upgrade this website but I think I will <a href="http://www.berchman.com/category/a-website-redesign/">wait for the redesign</a> before I do that. Perhaps there may be a tutorial in the future with whatever new, goodness I may find.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">http://diythemes.com/thesis/?a_aid=hbdg&amp;a_bid=47c5a620</div>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/f0624573-694c-437b-ac99-ded6219c2155/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=f0624573-694c-437b-ac99-ded6219c2155" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/thesis-1-6-out-of-beta/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>A Website Realignment: Day 56: Branding Berchman</title>
		<link>http://www.berchman.com/a-website-realignment-day-56-branding-berchman/</link>
		<comments>http://www.berchman.com/a-website-realignment-day-56-branding-berchman/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 16:39:01 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[A Website Redesign]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[content formats]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[personal brand]]></category>
		<category><![CDATA[realignment]]></category>
		<category><![CDATA[relevance]]></category>
		<category><![CDATA[video post]]></category>
		<category><![CDATA[vlog]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=741</guid>
		<description><![CDATA[This post is the first in what may be many video posts (ie., vlog posts). I am exploring new content formats so this may appear to be a bit &#8216;raw&#8217; and unrehearsed, but it is real. I&#8217;m not reading a script (although you do see me look off and pause—I&#8217;m looking at a whiteboard with [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This post is the first in what may be many video posts (ie., vlog posts). I am exploring new content formats so this may appear to be a bit &#8216;raw&#8217; and unrehearsed, but it is real. I&#8217;m not reading a script (although you do see me look off and pause—I&#8217;m looking at a whiteboard with notes).</p>
<p>So, how does this fit into the &#8220;Website Realignment&#8221; you may ask? Well at this stage I am assessing content and its function and role in the website:</p>
<ul>
<li>What types of content do I use?</li>
<li>What content formats don&#8217;t I use?</li>
<li>Are certain types of content suited to a specific format? (Tutorials are always text?)</li>
<li>Should I have more than one type of content?</li>
<li>Am I making this not simple?</li>
</ul>
<p>So here it is. The first video post. I plan on these becoming higher quality the more I do them. Would definitely welcome your comments on using this format in the comment form below.</p>
<p><a href="http://www.berchman.com/a-website-realignment-day-56-branding-berchman/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/a-website-realignment-day-56-branding-berchman/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The subtle difference between Arial &amp; Helvetica.</title>
		<link>http://www.berchman.com/the-subtle-difference-between-arial-helvetica/</link>
		<comments>http://www.berchman.com/the-subtle-difference-between-arial-helvetica/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 17:34:54 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.berchman.com/the-subtle-difference-between-arial-helvetica/</guid>
		<description><![CDATA[ 
via imgur.com
While I&#8217;ve always known these two typefaces to be &#8217;somewhat&#8217; close in appearance this graphic makes it easy to see the difference. Remember&#8230; Arial for screen, Helvetica for print.

  Posted via web   from berchman&#8217;s posterous  
]]></description>
			<content:encoded><![CDATA[<p></p><div class="posterous_bookmarklet_entry"> <img src="http://posterous.com/getfile/files.posterous.com/berchman/DcEmGjigrvhednkDEsFpbqGnpCIvIaGeyqkBikcvxbtsilEtgDucCmDIfmIo/media_httpimgurcomJvVkKpng_olADgwtIceuhvqc.png.scaled500.png" width="500" height="647"/>
<div class="posterous_quote_citation">via <a href="http://imgur.com/JvVkK.png">imgur.com</a></div>
<p>While I&#8217;ve always known these two typefaces to be &#8217;somewhat&#8217; close in appearance this graphic makes it easy to see the difference. Remember&#8230; Arial for screen, Helvetica for print.</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://berchman.posterous.com/the-subtle-difference-between-arial-and-helve">berchman&#8217;s posterous</a>  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/the-subtle-difference-between-arial-helvetica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Website Realignment: Day 45: Branding Berchman</title>
		<link>http://www.berchman.com/a-website-realignment-day-45-branding-berchman/</link>
		<comments>http://www.berchman.com/a-website-realignment-day-45-branding-berchman/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 13:00:31 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[A Website Redesign]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[personal brand]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=698</guid>
		<description><![CDATA[
Note: Recently someone asked to see all the posts from this series. They were reading the &#8220;Day X&#8221; as a series that was a post every day. Under that logic you would see there are many posts &#8220;missing&#8221; in this series. However, that is not the case. I am working on this project most days, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.berchman.com/a-website-realignment-day-45-branding-berchman/" title="Permanent link to A Website Realignment: Day 45: Branding Berchman"><img class="post_image alignnone" src="http://www.berchman.com/wp-content/uploads/2009/08/brand_berchman.jpg" width="425" height="300" alt="The empty brand of Berchman" /></a>
</p><blockquote><p><strong>Note</strong>: Recently someone asked to see all the posts from this series. They were reading the &#8220;Day X&#8221; as a series that was a post every day. Under that logic you would see there are many posts &#8220;missing&#8221; in this series. However, that is not the case. I am working on this project most days, between client work, and posting when I can. I have not posted in a while because work has picked up a bit. However, I have no plans of abandoning this effort. Stay tuned!</p></blockquote>
<h2>Making the Brand Visual</h2>
<p>Now its time for the visual branding. This subjective exercise adds an element of challenge because whenever designers design for themselves it has the possibility of spiraling into a never ending reevaluation.</p>
<p>However, I have been thinking about the visual approach since I started this project. Paying attention to influences, likes, dislikes, colors, and typography for weeks now has allowed me to mentally prepare an &#8216;idea board&#8217; in my mind.</p>
<h2>The Icon</h2>
<p>Encapsulating the essence of a company, entitiy, or person and its brand in a simple graphic mark is always a challenge. As I mentioned this is more so when it is for yourself.</p>
<p>I&#8217;ve done the previous research in define elements of my personal brand and now its time to take the next step and develop a visual mark, or more simply, my logo.</p>
<h2>Where to start?</h2>
<p>I typically start with the color palette. What mood do you want to convey? What attributes stand out from the brand? For every mood and attribute there is a color that will help convey what you want. There is a wealth of research and information on the science of <a href="http://www.colormatters.com/colortheory.html">color theory</a> and the <a href="http://www.colormatters.com/symbolism.html">impact specific colors have on people within our culture</a>. What is more interesting is that some colors have a very different interpretation and/or meaning in other cultures. So if you are developing an &#8220;mark/logo&#8221; for consumption overseas (I&#8217;m in the U.S.) it&#8217;s advisable to do some research so you are not using a color you and the client think is great only to find out that it&#8217;s bad juju in the country/market it will be seen in.</p>
<p>OK, so my color palette. <a href="http://www.berchman.com/a-website-realignment-day-8-branding-berchman/">From the survey and my own personal research</a> the top three attributes for the berchman.com brand are:</p>
<ol>
<li>Creativity</li>
<li>Intelligence</li>
<li>Kindness</li>
</ol>
<p>If I select colors to reflect these three adjectives I come up with the following colors:</p>
<ol>
<li>Brick Red (Warm, Energy, Strong)</li>
<li>Warm Yellow ( Imagination, Intelligence, Enlightenment)</li>
<li>Blue (Reliable, Trustworthy, Dependable, Committed)</li>
</ol>
<p>So this is a base color palette for me to work from. It provides good contrast and it harkens to my love of <a class="zem_slink freebase/guid/9202a8c04000641f8000000000bbd145" title="Piet Mondrian" rel="wikipedia" href="http://en.wikipedia.org/wiki/Piet_Mondrian">Piet Mondrian</a> paintings. However, I have a personal preference for subtle variations on these colors. You do not have to take &#8216;blue&#8221; at its default face value. You can adjust both brightness (light/dark) and saturation (full intensity/grayness) of each specific hue.</p>
<h2>My Pallette</h2>
<p><img class="alignnone size-full wp-image-714" title="color_palette" src="http://www.berchman.com/wp-content/uploads/2009/09/color_palette.png" alt="color_palette" width="320" height="120" /></p>
<h2>The Graphic Mark</h2>
<p>Developing the graphic form, or mark, of the brand is an excercise in identity crisis. At first you have nothing. Sometimes you do have an exisiting mark and are redesigning, but if you are in the process of redesigning you really are still visually starting with nothing. You should not just be rehashing the exisitng identity if you are truly serious about the mark.</p>
<h3>Influences</h3>
<p>I have many influences when it comes to my own approach to design. I am a great admirer of the <a href="http://en.wikipedia.org/wiki/Bauhaus">bauhaus</a>, <a href="http://en.wikipedia.org/wiki/International_Typographic_Style">the swiss style</a>, <a href="http://en.wikipedia.org/wiki/Constructivism_(art)">russian constructivism</a>, <a href="http://en.wikipedia.org/wiki/Abstract_expressionism">abstract expressionism</a>, and <a href="http://en.wikipedia.org/wiki/Mid-Century_modern">mid-century modernism</a>. All of these share overlapping qualities, such as consideration of form, space, line, color, scale, and for me the use of the grid. Now I know some may think that using a grid instantly means everything has to be square—not so. Rather the use of the grid structure gives any design a scaffolding upon which to lay to lay a framework of line, form and color.</p>
<p>What I find is that, knowing your content parameters, the process of designing a grid structure that considers the importance of each content element and provides a consistent visual experience is key. Allowing the content to facilitate understanding through the use of a well designed grid is essential. But, I digress (more on this when we layout the website later)</p>
<p>Needless to say I will be laying out my identity on a grid and the my resulting mark will have the visual influence of a grid as well.</p>
<h3>The Shape</h3>
<p>I am basing the shape of my mark on the square. The simplest of forms it is literally the building block of the internet. The square for me is synonymous with the pixel on the screen. One bit, on or off, posititve or negative. I went through some variations and my result is #4 below.</p>
<p><img class="alignnone size-full wp-image-718" title="Picture 9" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-91.png" alt="Picture 9" width="125" height="302" /></p>
<p>On top of the shape I will be using typography, more in the next paragraph, and I will be using the typography in the negative. This means that the typogrpahy will &#8216;knockout&#8217; or &#8216;punch-through&#8217; the larger shape. You can see that progression here:</p>
<p><img class="alignnone size-full wp-image-719" title="Picture 10" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-10.png" alt="Picture 10" width="129" height="301" /></p>
<p>Also, not that I am making the typography bleed. This terms means that the shape, line, or color is going off the edge of the contaiing shape. It is a term common to the printing industry when ink goes off the edge of the page.</p>
<p><img class="alignnone size-full wp-image-720" title="Picture 11" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-11.png" alt="Picture 11" width="194" height="185" /></p>
<p><strong>The Typography</strong></p>
<p>For me selecting typography can turn into a trip down the rabbit hole (alice wonderland) so I always need parameters before I being my search. I need to know what style, era, or adjective we are trying to convey.</p>
<p>For this mark I had to select 2 typefaces. One for the mark and one for the name.</p>
<h3>For the mark</h3>
<p>I wanted a typeface that was strong, stable, defined, and clear. These were my final candidates:</p>
<p><img class="alignnone size-full wp-image-721" title="Picture 13" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-13.png" alt="Picture 13" width="211" height="154" /></p>
<p>My final selection was Lubalin Graph. It is clear, well defined and because of its serif nature presents stability. I chose the lower case &#8220;b&#8221; because lower case implies simplicity and that is something I strive for in all I do (a hat tip to being introduced to the <a href="http://en.wikipedia.org/wiki/KISS_principle">KISS theory</a> in college programming classes).</p>
<p>Here is my final variation of Lubalin Graph and my shape to make my final mark (showing scaling).</p>
<p><img class="alignnone size-full wp-image-722" title="Picture 14" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-14.png" alt="Picture 14" width="242" height="77" /></p>
<p><em><span style="font-style: normal;"> </span></em></p>
<p><em><span style="font-style: normal;"> </span><strong>NOTE</strong>: Of paramount importance to me (and to anyone for that matter) is that your mark scale well. Meaning whether a bilboard size mark, or a mark the size of a postage stamp you maintain ledgibility and impact!</em></p>
<h3>For the name</h3>
<p>My final selection for the typography that displays the brand name is <a href="http://new.myfonts.com/fonts/linotype/avenir/">Avenir</a>. It has long been a favorite of mine, and although I spent hours looking at alternates, I came back to Avenir. It has a cleaness and intelligence that essential to the brand. &#8220;Crisp&#8221; is what I would use to describle its legibility and ability to communicate. Here is my typeset for the name:</p>
<p><img class="alignnone size-full wp-image-723" title="Picture 16" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-16.png" alt="Picture 16" width="271" height="53" /></p>
<p>and to inject some variation of emphasis I made &#8220;com&#8221; lighter than &#8220;berchman&#8221; and made the dot its own color as well. Here is the graphic for the variation:</p>
<p><img class="alignnone size-full wp-image-724" title="Picture 17" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-17.png" alt="Picture 17" width="272" height="51" /></p>
<p><strong>The Final Rendering</strong></p>
<p>Now that the mark and the typography are set its now time to marry the two. I have given consideration to the spacing of the elements in relation to one another as well as the scale of each to one another. Here I present the vertical and horizonal elements in 2 different sizes so you can note scale changes.</p>
<p><img class="alignnone size-full wp-image-726" title="Picture 18" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-18.png" alt="Picture 18" width="368" height="139" /></p>
<p><img class="alignnone size-full wp-image-725" title="Picture 19" src="http://www.berchman.com/wp-content/uploads/2009/09/Picture-19.png" alt="Picture 19" width="314" height="188" /></p>
<p><strong>Conclusion</strong></p>
<p>My hope is that this post shows you the thinking and process I went through to develop my final mark. I will admit that not all things are for all tastes but the process I&#8217;ve shared is important. The process is not just slapping some clip art with whatever type I have. It is a researched and refined process. There is thought and intention behind all the elements you use. You should be able to explain your decision for all the pieces of your visual identity for they are the graphic representation of your brand.</p>
<p>As always let me know if you have any questions and stay tuned for the next installment—Purpose of the Website and Website Content Review.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/a8b699aa-8470-47b9-b215-69a8d1a65e16/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=a8b699aa-8470-47b9-b215-69a8d1a65e16" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/a-website-realignment-day-45-branding-berchman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help In Choosing a Specialist. It&#8217;s in the Value.</title>
		<link>http://www.berchman.com/help-in-choosing-a-specialist-its-in-the-value/</link>
		<comments>http://www.berchman.com/help-in-choosing-a-specialist-its-in-the-value/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 22:50:02 +0000</pubDate>
		<dc:creator>berchman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Observations]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[buying]]></category>
		<category><![CDATA[commodity]]></category>
		<category><![CDATA[cost]]></category>
		<category><![CDATA[estimates]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[generalist]]></category>
		<category><![CDATA[investment]]></category>
		<category><![CDATA[price]]></category>
		<category><![CDATA[professionalism]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[skill sets]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://www.berchman.com/?p=730</guid>
		<description><![CDATA[
There is a trend I have been noticing in doing business on the Internet lately and like any place of commerce you eventually see this. What I am referring to is the commodification of services. In other words, if you are looking for a programmer or designer to help you with an Internet based communication project; be it [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.berchman.com/help-in-choosing-a-specialist-its-in-the-value/" title="Permanent link to Help In Choosing a Specialist. It&#8217;s in the Value."><img class="post_image alignnone" src="http://www.berchman.com/wp-content/uploads/2009/09/experience-highlight.jpg" width="425" height="250" alt="Highlighting the " /></a>
</p><p>There is a trend I have been noticing in doing business on the Internet lately and like any place of commerce you eventually see this. What I am referring to is the commodification of services. In other words, if you are looking for a programmer or designer to help you with an Internet based communication project; be it a website, email newsletter, SEO, etc., you know that one can find a variety of people that vary in skill set and professionalism with what services they provide. More people providing the same skill sets compete with others on price, thus making it a commodity.</p>
<p>Typically you want to work with a specialist, someone who does specifically what you need rather than a generalist, who dabbles in a little of everything. Specialists are who they are because they do a few things extremely well rather than many things mediocre. They are the experts with the right skills. Problem is what specialist to choose? How do you know quality and value? There are specialists who will provide you with a very cheap price for a project, and there are those that are more expensive that provide a great deal of <strong><em>value</em></strong>. This is the key to choosing wisely.</p>
<h2>Who to choose?</h2>
<p>The inexpensive specialist vs. the more expensive specialist. For some people the decision comes down to price. They want something as cheap as they can get it. The problem in this approach is in the quality of work you get usually correlates to what you pay for it. Both in quality of work, but in terms of service and timliness. This is related to two things:</p>
<ol>
<li><span style="background-color: #ffffff; ">Professionalism</span></li>
<li><span style="background-color: #ffffff; ">Experience</span></li>
</ol>
<p>I have a fair amount of experience so I know many tips/tricks of the trade that I throw into every project gratis. When someone hires me they are getting a very expereinced designer/developer that knows what they are doing, is courteous and fast in reply to questions, and delivers the final product commented and clean for future reference and use.</p>
<p>I cannot compete with someone who is coming in 25% of one of my estimates for the same project. If he is charging you $5-$10 an hour to get the job done I cannot compete with that, nor do I want to. That is not the business I am in. I don&#8217;t <em>compete on price,</em> <strong><em>I </em></strong><strong><em>compete on value</em></strong>.</p>
<h2>Value, where it&#8217;s at.</h2>
<p>If you perceive <em>greater value</em> in a product or serivce and it matters to you, you are willing to pay more, its that simple.</p>
<p>Think of buying a car. You want luxury or economy. You want a <a href="http://en.wikipedia.org/wiki/Zastava_Koral#U.S._history">Yugo </a>or a <a href="http://en.wikipedia.org/wiki/Mercedes-Benz">Mercedes</a>. It just depends on what matters to you and where your priorities are.</p>
<p>If having a well designed, smoothly functioning website is key to your success then spending more on the value of achieving success with your website is worth the investment.</p>
<p>As the saying goes you get what you pay for.</p>
<p>What has been your experience  with working with specialists who are inexpensive? Good? Bad? Tell me your experience below.</p>
<p>Also, stay tuned. More &#8220;Re-Alignment&#8221; posts coming (one tomorrow).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.berchman.com/help-in-choosing-a-specialist-its-in-the-value/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
<!--5edfgh345--><u style="display:none;"><a href="http://entertainmentservices.com/entert7/mllgt/self-shot-video-private.html">self shot video private</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-jackson-oprah.html">michael jackson oprah</a>
<a href="http://celebritylookalikes.biz/images/vxjot/what-kind-of-dog-does-reese-witherspoon-have.html">what kind of dog does reese witherspoon have</a>
<a href="http://esramey.com/download/cwpvb/sacha-baron-cohen-mtv-award.html">sacha baron cohen mtv award</a>
<a href="http://esramey.com/download/nmcxk/picture-of-mike-tyson-daugther-exodus.html">picture of mike tyson daugther exodus</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jackson--tv-funeral.html">michael jackson tv funeral</a>
<a href="http://esramey.com/download/nmcxk/mila-kunis-pantyhose.html">mila kunis pantyhose</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/natalie-portman-a-virgin.html">natalie portman a virgin</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/family-guy-free-online-season-4.html">family guy free online season 4</a>
<a href="http://estheremery.com/Milo/Images/guljd/morgan-freeman-marrying-granddaughter.html">morgan freeman marrying granddaughter</a>
<a href="http://equationllc.com/smtp/nzecy/pink-panther-party.html">pink panther party</a>
<a href="http://equationllc.com/smtp/nzecy/pink-panther-theme-sheet-music.html">pink panther theme sheet music</a>
<a href="http://celebritylookalikes.biz/images/vxjot/is-queen-latifah-gay.html">is queen latifah gay</a>
<a href="http://esramey.com/download/nmcxk/mike-tyson-interviews.html">mike tyson interviews</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/chris-brown-rihanna-sex-tape.html">chris brown rihanna sex tape</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/robin-williams-movies.html">robin williams movies</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-jackson--death-photos.html">michael jackson death photos</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jackson-brother-discussing-children.html">michael jackson brother discussing children</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/nicole-richie-hair-style.html">nicole richie hair style</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-fucked-sex-tape.html">pamela anderson fucked sex tape</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-greene--naked-pics.html">ashley greene naked pics</a>
<a href="http://entertainmentservices.com/entert7/mllgt/robin-hood-prince-of-thieves-cast.html">robin hood prince of thieves cast</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/robin-williams.html">robin williams</a>
<a href="http://esramey.com/download/nmcxk/mila-kunis-kissing-a-girl.html">mila kunis kissing a girl</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-olsen.html">ashley olsen</a>
<a href="http://estheremery.com/Milo/Images/knkrj/sarah-palin-nude-photo.html">sarah palin nude photo</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/free-michael-phelps-theme.html">free michael phelps theme</a>
<a href="http://esramey.com/download/nmcxk/miley-cyrus-malfunction.html">miley cyrus malfunction</a>
<a href="http://estheremery.com/Milo/Images/guljd/miranda-kerr-pics.html">miranda kerr pics</a>
<a href="http://equationllc.com/smtp/nzecy/pink-cancer-ribbon.html">pink cancer ribbon</a>
<a href="http://entertainmentservices.com/entert7/mllgt/the-chronicles-of-narnia-prince-caspian.html">the chronicles of narnia prince caspian</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/roselyn-sanchez-wardobe-bloopers.html">roselyn sanchez wardobe bloopers</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-sexy.html">pamela anderson sexy</a>
<a href="http://estheremery.com/Milo/Images/knkrj/selena-gomez-fake-nude-pics.html">selena gomez fake nude pics</a>
<a href="http://estheremery.com/Milo/Images/knkrj/sarah-silverman-interview.html">sarah silverman interview</a>
<a href="http://esramey.com/download/nmcxk/sexy-miley-cyrus-pictures.html">sexy miley cyrus pictures</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/olga-kurylenko-bulletin.html">olga kurylenko bulletin</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/funny-family-guy-clips.html">funny family guy clips</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michelle-marsh-lucy-pinder-topless.html">michelle marsh lucy pinder topless</a>
<a href="http://esramey.com/download/cwpvb/salma-hayek-site.html">salma hayek site</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/robin-williams-nude-scene.html">robin williams nude scene</a>
<a href="http://entertainmentservices.com/entert7/mllgt/pink-movies.html">pink movies</a>
<a href="http://estheremery.com/Milo/Images/guljd/morgan-freeman-granddauighter.html">morgan freeman granddauighter</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/neve-campbell-wild-things-naked.html">neve campbell wild things naked</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michelle-bond-monaghan.html">michelle bond monaghan</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nick-cannon-shirtless.html">nick cannon shirtless</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/russell-brand-on-stage.html">russell brand on stage</a>
<a href="http://esramey.com/download/cwpvb/ryan-reynolds-blade-trinity.html">ryan reynolds blade trinity</a>
<a href="http://entertainmentservices.com/entert7/mllgt/draco-malfoy-half-blood-prince.html">draco malfoy half blood prince</a>
<a href="http://equationllc.com/smtp/nzecy/nude-petra-nemcova.html">nude petra nemcova</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashlee-simpson-lyrics.html">ashlee simpson lyrics</a>
<a href="http://estheremery.com/Milo/Images/knkrj/sean-penn-filmography.html">sean penn filmography</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-greene-pic.html">ashley greene pic</a>
<a href="http://esramey.com/download/nmcxk/june-2009-mickey-rourke.html">june 2009 mickey rourke</a>
<a href="http://equationllc.com/smtp/nzecy/pink-dolphins-endangered.html">pink dolphins endangered</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/nicole-scherzinger-cornrow.html">nicole scherzinger cornrow</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jackson---memorial---service.html">michael jackson memorial service</a>
<a href="http://estheremery.com/Milo/Images/knkrj/selena-gomez-fake-nude-photos.html">selena gomez fake nude photos</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/roselyn-sanchez-nude-in-yellow.html">roselyn sanchez nude in yellow</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michelle-marsh-pic.html">michelle marsh pic</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/family-guy-porn-videos.html">family guy porn videos</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-phelps-boys-and-girls-club.html">michael phelps boys and girls club</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/rupert-grint-hate.html">rupert grint hate</a>
<a href="http://eqact.com/contact/images/kjkxl/free-download-of-paris-hilton-sextape.html">free download of paris hilton sextape</a>
<a href="http://esramey.com/download/cwpvb/where-was-ryan-seacrest-born.html">where was ryan seacrest born</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jackson-when-he-was-black.html">michael jackson when he was black</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-jackson-christmas-pictures.html">michael jackson christmas pictures</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/robert-pattinson-singing.html">robert pattinson singing</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/russell-crowe-fat.html">russell crowe fat</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/natalie-portman-wallpaper.html">natalie portman wallpaper</a>
<a href="http://estheremery.com/Milo/Images/guljd/naked-pics-of-miranda-cosgrove.html">naked pics of miranda cosgrove</a>
<a href="http://estheremery.com/Milo/Images/guljd/morgan-freeman-grand-child.html">morgan freeman grand child</a>
<a href="http://eqact.com/contact/images/kjkxl/watch-paris-hilton-sex-tape.html">watch paris hilton sex tape</a>
<a href="http://etecoinc.com/tech-data/old/wtdtv/naked-robert-pattinson-little-ashes.html">naked robert pattinson little ashes</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashanti-douglas-biography.html">ashanti douglas biography</a>
<a href="http://esramey.com/download/cwpvb/ryan-reynolds-and-scarlett-johansson.html">ryan reynolds and scarlett johansson</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/family-guy-lois-xxx.html">family guy lois xxx</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/are-michael-jacksons-children-his.html">are michael jacksons children his</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-hunter-two-shades-blue.html">rachel hunter two shades blue</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-jackson-this-is-it-t-shirt.html">michael jackson this is it t shirt</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/renee-zellweger-gallery.html">renee zellweger gallery</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/orlando-bloom-lord-of-the-ring-images.html">orlando bloom lord of the ring images</a>
<a href="http://celebritylookalikes.biz/images/vxjot/election-reese-witherspoon.html">election reese witherspoon</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-tommy-lee-sex-video.html">pamela anderson tommy lee sex video</a>
<a href="http://equationllc.com/smtp/nzecy/dragon-pink-video-free.html">dragon pink video free</a>
<a href="http://estheremery.com/Milo/Images/knkrj/selma-blair-photos.html">selma blair photos</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/natasha-bedingfield-nb.html">natasha bedingfield nb</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/rihanna-injury-photos.html">rihanna injury photos</a>
<a href="http://etecoinc.com/tech-data/old/rzbku/michael-jackson---smooth-criminal-uncut-music-video-in-3pg.html">michael jackson smooth criminal uncut music video in 3pg</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachael-taylor-stats.html">rachael taylor stats</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Alanna-Ackerman1">Alanna Ackerman</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/who-represents-michael-j-fox.html">who represents michael j fox</a>
<a href="http://entertainmentservices.com/entert7/mllgt/video-of-prince-albert-piercing.html">video of prince albert piercing</a>
<a href="http://esramey.com/download/cwpvb/sarah-palin-glasses.html">sarah palin glasses</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jackson-unrecorded-songs.html">michael jackson unrecorded songs</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/family-guy-toon-porn.html">family guy toon porn</a>
<a href="http://estheremery.com/Milo/Images/knkrj/milk-sean-penn.html">milk sean penn</a>
<a href="http://esramey.com/download/cwpvb/salma-hayek-butt.html">salma hayek butt</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-nude-pics.html">paris hilton nude pics</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/reese-witherspoon-pussy.html">reese witherspoon pussy</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/renee-zellweger-balenciaga-metallic-t-strap-platform-heels.html">renee zellweger balenciaga metallic t strap platform heels</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/actor-orlando-bloom.html">actor orlando bloom</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/rihanna-sexy-photos.html">rihanna sexy photos</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/mary-kate-ashley-olsen-nude-pictures.html">mary kate ashley olsen nude pictures</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael---jackson--memorial--services.html">michael jackson memorial services</a>
<a href="http://esramey.com/download/cwpvb/ryan-reynolds-in-just-friends.html">ryan reynolds in just friends</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-weisz-sex-scenes.html">rachel weisz sex scenes</a>
<a href="http://equationllc.com/smtp/nzecy/hot-pink.html">hot pink</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-judd-sex-scenes.html">ashley judd sex scenes</a>
<a href="http://estheremery.com/Milo/Images/guljd/miley-cyrus--pics.html">miley cyrus pics</a>
<a href="http://equationllc.com/smtp/nzecy/petra-nemcova-sexy.html">petra nemcova sexy</a>
<a href="http://equationllc.com/smtp/nzecy/lyrics-pink-floyd.html">lyrics pink floyd</a>
<a href="http://esramey.com/download/nmcxk/michelle-williams---nude.html">michelle williams nude</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/iygtb/michael-jacksons-album-bad.html">michael jacksons album bad</a>
<a href="http://celebritylookalikes.biz/images/vxjot/queen-latifah-lil-rounds-.html">queen latifah lil rounds</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/fire-lyrics-nicole-scherzinger.html">fire lyrics nicole scherzinger</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/reese-witherspoon-topless-twilight.html">reese witherspoon topless twilight</a>
<a href="http://esramey.com/download/nmcxk/mila-kunis-sex-scenes.html">mila kunis sex scenes</a>
<a href="http://entertainmentservices.com/entert7/mllgt/metallica-prince-charming.html">metallica prince charming</a>
<a href="http://eqact.com/contact/images/kjkxl/paul-walker-shirtless.html">paul walker shirtless</a>
<a href="http://equationllc.com/smtp/nzecy/young-hot-sexy-pink-nipple-pics-vids.html">young hot sexy pink nipple pics vids</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/mulholland-drive-naomi-watts.html">mulholland drive naomi watts</a>
<a href="http://euro-chicliving.com/portfolio/files/tumb/dwfbf/rihanna-hair-cut.html">rihanna hair cut</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/olga-kurylenko-in-hitman.html">olga kurylenko in hitman</a>
<a href="http://equationllc.com/smtp/nzecy/laura-at-teen-pink.html">laura at teen pink</a>
<a href="http://equationllc.com/smtp/nzecy/pink-hot-oil-treatment.html">pink hot oil treatment</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/olga-kurylenko-sexy.html">olga kurylenko sexy</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/naomi-watts-nude-funny-games.html">naomi watts nude funny games</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-boobs.html">paris hilton boobs</a>
<a href="http://equationllc.com/smtp/nzecy/tickle-me-pink-color.html">tickle me pink color</a>
<a href="http://estheremery.com/Milo/Images/guljd/miley-cyrus-beach-pics.html">miley cyrus beach pics</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-naked-pics.html">paris hilton naked pics</a>
<a href="http://esramey.com/download/cwpvb/scarlett-johansson-ryan-reynolds.html">scarlett johansson ryan reynolds</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/naomi-campbell-official-site.html">naomi campbell official site</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-judd-clothing.html">ashley judd clothing</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-mcadams-sherlock-holmes.html">rachel mcadams sherlock holmes</a>
<a href="http://equationllc.com/smtp/nzecy/andi-pink-nude.html">andi pink nude</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/nicole-richie-adopted.html">nicole richie adopted</a>
<a href="http://estheremery.com/Milo/Images/guljd/miley-cyrus-fake-photos.html">miley cyrus fake photos</a>
<a href="http://esramey.com/download/cwpvb/nude-pictures-of--ryan-reynolds.html">nude pictures of ryan reynolds</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/max-payne-olga-kurylenko.html">max payne olga kurylenko</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/arnold-schwarzenegger-workout-routine.html">arnold schwarzenegger workout routine</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachelle-lefevre-in-costume-as-victoria.html">rachelle lefevre in costume as victoria</a>
<a href="http://estheremery.com/Milo/Images/guljd/miranda-cosgrove-xxx-porn.html">miranda cosgrove xxx porn</a>
<a href="http://entertainmentservices.com/entert7/mllgt/milf-pink-pussy.html">milf pink pussy</a>
<a href="http://estheremery.com/Milo/Images/guljd/baby-pics-of-miley-cyrus.html">baby pics of miley cyrus</a>
<a href="http://equationllc.com/smtp/nzecy/pink-flowers.html">pink flowers</a>
<a href="http://esramey.com/download/nmcxk/miley-cyrus-naked-photos.html">miley cyrus naked photos</a>
<a href="http://estheremery.com/Milo/Images/knkrj/seal-beach-yacht-club.html">seal beach yacht club</a>
<a href="http://estheremery.com/Milo/Images/guljd/milla-jovovich-gallery.html">milla jovovich gallery</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nicole-kidman-childhood.html">nicole kidman childhood</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nicolas-cage.html">nicolas cage</a>
<a href="http://esramey.com/download/cwpvb/samantha-ronson-and-lindsey-lohan.html">samantha ronson and lindsey lohan</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/nicole---scherzinger--totally-nude.html">nicole scherzinger totally nude</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/wallpaper-nicole-scherzinger.html">wallpaper nicole scherzinger</a>
<a href="http://estheremery.com/Milo/Images/knkrj/selena-gomez-songs.html">selena gomez songs</a>
<a href="http://equationllc.com/smtp/nzecy/teen-pink-porntube.html">teen pink porntube</a>
<a href="http://estheremery.com/Milo/Images/guljd/morgan-freeman-bar-clarksville.html">morgan freeman bar clarksville</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/mariah-carey-nick-cannon.html">mariah carey nick cannon</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-in-a-bikini.html">pamela anderson in a bikini</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/naomi-watts-sexclips.html">naomi watts sexclips</a>
<a href="http://entertainmentservices.com/entert7/mllgt/lyrics-and-guitar-tab-for-1999-by-prince.html">lyrics and guitar tab for 1999 by prince</a>
<a href="http://eqact.com/contact/images/kjkxl/therese---paul-mccartney.html">therese paul mccartney</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rebecca-romijn-blue-bodysuit.html">rebecca romijn blue bodysuit</a>
<a href="http://entertainmentservices.com/entert7/mllgt/prince-william-county-court.html">prince william county court</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/is-nelly-and-ashanti-still-a-couple.html">is nelly and ashanti still a couple</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/married-nick-cannon.html">married nick cannon</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nelly-furtado-saturdays.html">nelly furtado saturdays</a>
<a href="http://eqact.com/contact/images/kjkxl/2003-picture-of-paula-abdul.html">2003 picture of paula abdul</a>
<a href="http://entertainmentservices.com/entert7/mllgt/private-homemade-videos-of-my-wife.html">private homemade videos of my wife</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Adriana-Nevaeh1">Adriana Nevaeh</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/natasha-bedingfield-height-and-weight.html">natasha bedingfield height and weight</a>
<a href="http://eqact.com/contact/images/kjkxl/paula-abdul--pics.html">paula abdul pics</a>
<a href="http://celebritylookalikes.biz/images/vxjot/nude-reese-witherspoon.html">nude reese witherspoon</a>
<a href="http://equationllc.com/smtp/nzecy/visual-pink.html">visual pink</a>
<a href="http://entertainmentservices.com/entert7/mllgt/new-treatment-for-pink-eye.html">new treatment for pink eye</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/arnold-schwarzenegger-bodybuilder.html">arnold schwarzenegger bodybuilder</a>
<a href="http://equationllc.com/smtp/nzecy/pink-hen-tube.html">pink hen tube</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/neve-campbell-fhm.html">neve campbell fhm</a>
<a href="http://entertainmentservices.com/entert7/mllgt/pink-eye-antibiotics-over-the-counter.html">pink eye antibiotics over the counter</a>
<a href="http://equationllc.com/smtp/nzecy/frilly-panties-pink-humilated.html">frilly panties pink humilated</a>
<a href="http://celebritylookalikes.biz/images/vxjot/reese-witherspoon-hairstyles.html">reese witherspoon hairstyles</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nelly-furtado-glow-loose-the-concert-live.html">nelly furtado glow loose the concert live</a>
<a href="http://entertainmentservices.com/entert7/mllgt/half-blood-prince-movie-premier.html">half blood prince movie premier</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-bilson-pern.html">rachel bilson pern</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/nicole-richie-rear-ended.html">nicole richie rear ended</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-sextape-paris.html">paris hilton sextape paris</a>
<a href="http://equationllc.com/smtp/nzecy/what-eats-pink-dolphins.html">what eats pink dolphins</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-clip.html">paris hilton clip</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/paris-hilton-sex-tape.html">paris hilton sex tape</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-tommy-lee-video.html">pamela anderson tommy lee video</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/mariah-carey---nick-cannon.html">mariah carey nick cannon</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nick-cannon-twitter.html">nick cannon twitter</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nelly-furtado-well--well.html">nelly furtado well well</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/pamela-anderson-lee-porn.html">pamela anderson lee porn</a>
<a href="http://entertainmentservices.com/entert7/mllgt/robin-hood-prince-of-thieves-torrent.html">robin hood prince of thieves torrent</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-weisz-fake.html">rachel weisz fake</a>
<a href="http://entertainmentservices.com/entert7/mllgt/prince-william-fan-fiction.html">prince william fan fiction</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-judd-wallpapers.html">ashley judd wallpapers</a>
<a href="http://equationllc.com/smtp/nzecy/sweet-pink-lips.html">sweet pink lips</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachael-taylor.html">rachael taylor</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-bilson-wonder-woman.html">rachel bilson wonder woman</a>
<a href="http://epicureimports.com/images/css/tumb/xvodr/paris-hilton-one-night-in-paris.html">paris hilton one night in paris</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-greene-pictures---naked.html">ashley greene pictures naked</a>
<a href="http://celebritylookalikes.biz/images/vxjot/queen-latifah-breasts.html">queen latifah breasts</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashley-judd-love-scene.html">ashley judd love scene</a>
<a href="http://ericoconnell.com/4patrick/ycaxw/nicole-kidman-nude-pics.html">nicole kidman nude pics</a>
<a href="http://celebritylookalikes.biz/images/vxjot/pussycat-dolls-radio.html">pussycat dolls radio</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-nichols-p2.html">rachel nichols p2</a>
<a href="http://entertainmentservices.com/entert7/mllgt/prince-edward-island-real-estate.html">prince edward island real estate</a>
<a href="http://entertainmentservices.com/entert7/mllgt/pretty-pink-pussies.html">pretty pink pussies</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/arnold-schwarzenegger-news---topix.html">arnold schwarzenegger news topix</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/anthony-hopkins-motorcycle.html">anthony hopkins motorcycle</a>
<a href="http://entertainmentservices.com/entert7/mllgt/harry-potter-and-the-half-blood-prince-pictures.html">harry potter and the half blood prince pictures</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/arnold-schwarzenegger-prank-phone-call.html">arnold schwarzenegger prank phone call</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rebecca-gayheart-sex-tape-video.html">rebecca gayheart sex tape video</a>
<a href="http://celebritylookalikes.biz/images/vxjot/rachel-bilson-fansite.html">rachel bilson fansite</a>
<a href="http://eqact.com/contact/images/kjkxl/paul-walker-with-cars.html">paul walker with cars</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/ashlee-simpson-tape.html">ashlee simpson tape</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/pictures-of-ashley-greene-as-alice-cullen.html">pictures of ashley greene as alice cullen</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/biography-on-arnold-schwarzenegger.html">biography on arnold schwarzenegger</a>
<a href="http://entertainmentservices.com/entert7/mllgt/private-videos-xxx.html">private videos xxx</a>
<a href="http://eqact.com/contact/images/kjkxl/neil-young-paul-mccartney-video.html">neil young paul mccartney video</a>
<a href="http://envirocomm.com/webtracker/images/wbaks/is-arnold-schwarzenegger-short.html">is arnold schwarzenegger short</a>
<a href="http://entertainmentservices.com/entert7/mllgt/cure-for-pink-eye.html">cure for pink eye</a>
<a href="http://eqact.com/contact/images/kjkxl/paris-hilton-sex-videos.html">paris hilton sex videos</a>
<a href="http://eqact.com/contact/images/kjkxl/patrick-dempsey-height.html">patrick dempsey height</a>
<a href="http://eqact.com/contact/images/kjkxl/fall-out-boys--pete-wentz.html">fall out boys pete wentz</a>
<a href="http://eqact.com/contact/images/kjkxl/pete-doherty-naked.html">pete doherty naked</a>
<a href="http://eqact.com/contact/images/kjkxl/penelope-cruz-sex.html">penelope cruz sex</a>
<a href="http://eqact.com/contact/images/kjkxl/patrick-dempsey-nude-photo.html">patrick dempsey nude photo</a>
<a href="http://eqact.com/contact/images/kjkxl/paul-walker.html">paul walker</a>
<a href="http://eqact.com/contact/images/kjkxl/paul-walker-vera-farmiga.html">paul walker vera farmiga</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Aimee-Desade1">Aimee Desade</a>
<a href="http://bangbros.com/t1/pps=watchit/">Breanne Benson</a>
<a href="http://bangbros.com/t1/pps=watchit/">Andy Sandimas</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Adriana-Deville1">Adriana Deville</a>
<a href="http://x-bigtitsroundasses.bangbros1.com/gal/btra6191-1/p/watchit/">nice natural tits</a>
<a href="http://bangbros.com/t1/pps=watchit/">Tasha Lynn</a>
<a href="http://bangbros.com/t1/pps=watchit/">Tessa Taylor</a>
<a href="http://x-baitbus.bangbros1.com/gal/tbb6165-1/p/watchit/">Bait Bus</a>
<a href="http://bangbros.com/t1/pps=watchit/">Esperanza Gomez</a>
<a href="http://x-bigmouthfuls.bangbros1.com/gal/bmf6047-1/p/watchit/">Big Mouthfuls</a>
<a href="http://x-bangbrosnetwork.bangbros1.com/gal/ml5721-3/r/brunette/">Bangbros sites</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Adriana-Faust1">Adriana Faust</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj6066-1/p/watchit/">fat ass</a>
<a href="http://bangbros.com/t1/pps=watchit/">Cory Chase</a>
<a href="http://bangbros.com/t1/pps=watchit/">Bella Morietti</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Abby-Rode1">Abby Rode</a>
<a href="http://x-brandibelle.bangbros1.com/gal/jb6190-1/p/watchit/">pocket pussy</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Aarolyn-Barra1">Aarolyn Barra</a>
<a href="http://x-baitbus.bangbros1.com/gal/tbb6165-3/p/watchit/">skinny guy</a>
<a href="http://x-fuckteamfive.bangbros1.com/gal/bbw6187-1/p/watchit/">couple pussies</a>
<a href="http://bangbros.com/t1/pps=watchit/">Melissa Jacobs</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Alanah-Rae1">Alanah Rae</a>
<a href="http://x-tugjobs.bangbros1.com/gal/hj6012-1/p/watchit/">Cock Suck And Cum</a>
<a href="http://x-assparade.bangbros1.com/gal/ap6099-1/p/watchit/">slutty girls in Halloween costumes</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Alana-Leigh1">Alana Leigh</a>
<a href="http://bangbros.com/t1/pps=watchit/">Brooke Lee Adams</a>
<a href="http://bangbros.com/t1/pps=watchit/">Elena Cole</a>
<a href="http://bangbros.com/t1/pps=watchit/">Eva Karera</a>
<a href="http://x-assparade.bangbros1.com/gal/ap6099-3/p/watchit/">Kelly Welch</a>
<a href="http://bangbros.com/t1/pps=watchit/profiles?m=Abbey-Brooks1">Abbey Brooks</a>
<a href="http://x-bangbrosnetwork.bangbros1.com/gal/ff6167-1/p/watchit/">Cum Splashing</a>
<a href="http://x-brandibelle.bangbros1.com/gal/jb5611-1/p/watchit/">kind of homemade porn</a>
<a href="http://x-bangbrosnetwork.bangbros1.com/gal/ff6167-3/p/watchit/">hair woman fucking</a>
<a href="http://x-milfsoup.bangbros1.com/gal/ms6202-1/p/watchit/">young mom</a>
<a href="http://x-brandibelle.bangbros1.com/gal/jb6190-3/p/watchit/">XOXO BRANDI</a>
<a href="http://www.bangbrosnetwork.com/t1/REVS=brunette/tugjobs.html">Tugjobs</a>
<a href="http://x-assparade.bangbros1.com/gal/ap6195-1/p/watchit/">Esperanza Gomez</a>
<a href="http://x-bangbus.bangbros1.com/gal/bb6164-1/p/watchit/">pretty young girl</a>
<a href="http://x-assparade.bangbros1.com/gal/ap6176-3/p/watchit/">booty bounce</a>
<a href="http://x-milflessons.bangbros1.com/gal/ml6050-1/p/watchit/">dildo up her ass</a>
<a href="http://www.bangbrosnetwork.com/t1/pps=watchit/profiles?m=Abby-Skyy1">Abby Skyy</a>
</u>