<?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>Shane Strong &#187; Lansing Web Development</title>
	<atom:link href="http://www.shanestrong.com/tag/lansing-web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shanestrong.com</link>
	<description>Lansing WordPress Web Developer Search Engine Optimization Website Consultant Theme Developer Magento Developer Lansing Michigan</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:23:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>jQuery Hover</title>
		<link>http://www.shanestrong.com/lansing-web-design/jquery-hover</link>
		<comments>http://www.shanestrong.com/lansing-web-design/jquery-hover#comments</comments>
		<pubDate>Fri, 24 Jul 2009 03:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=1003</guid>
		<description><![CDATA[As a developer I hate the fact that Internet Explorer is not up to date with their web browser. For instance the w3 has approved that you can use the :hover selector on anything not just a tags. Now most browsers do support the :hover selector but IE. Why they can&#8217;t catch up with times [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer I hate the fact that Internet Explorer is not up to date with their web browser.  For instance the w3 has approved that you can use the :hover selector on anything not just a tags.  Now most browsers do support the :hover selector but IE.  Why they can&#8217;t catch up with times and be like everyone else is beyond my comprehension.  Well one really useful thing to fix this problem is jQuery Hover.  You can use jQuery Hover to give any object a hover state and it will work in IE and all other browsers.  Also you can have jQuery pull out the a tags href from inside any element.  For instance if you have some blocks with different information that you want to link to a certain page all you will have to do is make a box and call the a tags href.</p>
<h3>jQuery Hover State</h3>
<p>So to show you how to do this I am going to use my site under my main post on the homepage I have some of my recent post.  Now I want to have the full post area to have a jQuery hover state that changes the background.  So I would do this.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing when 
    //going outside the object area
    function out(event) {
	    $(this).css(&quot;background&quot;, &quot;&quot;);
	}
});</pre></div></div>

<h3>jQuery Hover with a click event</h3>
<p>If you want jQuery to do a hover state only then that will work for you but if you want to get the a tags href, so that when you click on the object area it will take you to that page.  You would have to add this after your jQuery hover code.  So now your jQuery code should be.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">$(document).ready(function() {
    //call the jQuery Hover Over and Out
    $('#YOURID').hover(over, out);
    //Tell the browser to change the background when hovered over
    function over(event) {
        $(this).css(&quot;background&quot;, &quot;url('Path To Your Image')&quot;);
	$(this).css(&quot;cursor&quot;, &quot;pointer&quot;);
    }
    //tell the browser to change the background to nothing 
    //when going outside the object area
    function out(event) {
	$(this).css(&quot;background&quot;, &quot;&quot;);
    }
    //This adds the click event to your object and tells it where to go
    $('#YOURID').click(function() {
	window.location=$(this).find(&quot;a&quot;).attr(&quot;href&quot;);
    });
});</pre></div></div>

<p>This is very useful to get around the IE problem and if someone checks your site they can see that you know jQuery.  If you need any help with this just let me know.  I would be more than willing to help.</p>
<h3>Website Design , Development, and SEO Marketing</h3>
<p>If you by chance need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact Chosen. Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you. </p>
<h3>Sponsors</h3>
<p>Get your <a target="_blank" href="http://www.lusterforever.com/department/charm-bracelet-10036.cfm">charm bracelets</a> in time for the new year. LusterForever.com features a complete collection of such bracelets.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=jQuery%20Hover%20-%20http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&title=jQuery%20Hover"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;notes=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;annotation=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;bodytext=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-1003'), event, 'post-1003')" onMouseOver="more(this,'post-1003')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-1003')" id="sociable-post-1003" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=jQuery%20Hover&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;cat_id=6&amp;tag_id=31&amp;Remark=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;Title=jQuery%20Hover"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;selection=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;t=jQuery%20Hover&amp;s=As%20a%20developer%20I%20hate%20the%20fact%20that%20Internet%20Explorer%20is%20not%20up%20to%20date%20with%20their%20web%20browser.%20%20For%20instance%20the%20w3%20has%20approved%20that%20you%20can%20use%20the%20%3Ahover%20selector%20on%20anything%20not%20just%20a%20tags.%20%20Now%20most%20browsers%20do%20support%20the%20%3Ahover%20selector%20but%20"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=jQuery%20Hover&body=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-1003',true)" class="close">























		  <img onclick="hide_sociable('post-1003',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="jQuery Hover - http://www.shanestrong.com/lansing-web-design/jquery-hover (via #sociablesite)" data-url="http://www.shanestrong.com/lansing-web-design/jquery-hover" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/lansing-web-design/jquery-hover&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fjquery-hover&amp;title=jQuery%20Hover'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/lansing-web-design/jquery-hover"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/lansing-web-design/jquery-hover" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/lansing-web-design/jquery-hover" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=1003&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/lansing-web-design/jquery-hover/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Build A Website Traffic Jam</title>
		<link>http://www.shanestrong.com/seo/build-a-website-traffic-jam</link>
		<comments>http://www.shanestrong.com/seo/build-a-website-traffic-jam#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:05:35 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=935</guid>
		<description><![CDATA[Most people look at their website and go why am I not getting traffic to it. Well if you just look at the site it won&#8217;t build any traffic. My question to you is would you like to have a traffic jam on your website. I would because that means my site is getting so [...]]]></description>
			<content:encoded><![CDATA[<p>Most people look at their website and go why am I not getting traffic to it.  Well if you just look at the site it won&#8217;t build any traffic.  My question to you is would you like to have a traffic jam on your website.  I would because that means my site is getting so much traffic I am going to have to upgrade my servers.  Wouldn&#8217;t that be great so much traffic that your server crashes.  Most people have no idea on how to create traffic to their site let alone just doing that basics to gain traffic.  Well I am going to give you a breakdown of some of the basics to building traffic.  Just so you know building traffic takes time and sometimes money.</p>
<h3>Traffic Meta Breakdown</h3>
<p>Back in the day all traffic came from your meta tags and your keywords.  Don&#8217;t get me wrong these are still very useful but they don&#8217;t build you as much traffic because of the millions of website out there.  To give you an example I would love to be the number 1 site on Google for web design well that really isn&#8217;t practical it is possible but when you search <strong>web design</strong> you get 343,000,000 that is how many pages are being crawled with the words <strong>web design</strong>.  Now I am not saying don&#8217;t try to get to the top of the list.  Defiantly try but try for something a little smaller like for instance I am from Michigan and so I am trying to get top for <strong>Lansing Web Design</strong> and <strong>Michigan Web Design</strong>.  If you search Lansing Web Design I am close to the top.  Now if I use keywords like that and try to focus on a smaller scale my site will rise on the bigger scale.<br />
Your keyword meta tag is important but you have two other tags that are even more important your title meta tag and description meta tag.  Your title meta tag is different from your normal title tag because it is what the browsers look at first and way a lot of their decisions on.  The regular title tag is also very important it should be used everywhere that it is possible.</p>
<h3>Best Ways To Produce Traffic</h3>
<p>Here is a list of some really good ways to build traffic to your site.<br />
1) Submitting &#8211; You must submit your site to search engines.<br />
2) Use a favicon.ico<br />
3) Depending on what your site is about submit it to other sites with that kind of material.<br />
4) Have a lot of content.  This still has to be good content.  Pictures really bring in lots of traffic.<br />
5) Use your META tags effectively. <a target="_blank" href="http://webnet77.com/webstuff/optimize.html">META help</a><br />
6) Advertise with google or other advertising companies.<br />
7) Use Social Media by talking about your site.</p>
<p>Probably the fastest way to get traffic to your site is pay per click.  Yes it is going to cost you but in the long run of things it will be worth it.  Some people think that after doing these things your site will just magically appear at the top of Google or Yahoo but it won&#8217;t.  Building a vast amount of traffic takes time and some times money.</p>
<h3><a target="_blank" href="http://chosendevelopment.com">Website Design , Development, and SEO Marketing</a></h3>
<p>If you by change need web design, web development, search engine optimization, or marketing done to one of your sites you can get in contact with me or you can contact <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a>. <a target="_blank" href="http://www.chosendevelopment.com">Chosen</a> is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm. We are a small business but are growing in the Lansing Area for our Web Design and Development skills. We have done work for clients and companies. We prefer client work but we also take contract work. We have worked with most of the biggest web companies in the Lansing Area and all the way out to California. We would love to hear from you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Build%20A%20Website%20Traffic%20Jam%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&title=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;notes=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;annotation=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;bodytext=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-935'), event, 'post-935')" onMouseOver="more(this,'post-935')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-935')" id="sociable-post-935" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Build%20A%20Website%20Traffic%20Jam&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;cat_id=6&amp;tag_id=31&amp;Remark=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;Title=Build%20A%20Website%20Traffic%20Jam"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;selection=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;t=Build%20A%20Website%20Traffic%20Jam&amp;s=Most%20people%20look%20at%20their%20website%20and%20go%20why%20am%20I%20not%20getting%20traffic%20to%20it.%20%20Well%20if%20you%20just%20look%20at%20the%20site%20it%20won%27t%20build%20any%20traffic.%20%20My%20question%20to%20you%20is%20would%20you%20like%20to%20have%20a%20traffic%20jam%20on%20your%20website.%20%20I%20would%20because%20that%20means%20my%20si"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Build%20A%20Website%20Traffic%20Jam&body=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-935',true)" class="close">























		  <img onclick="hide_sociable('post-935',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Build A Website Traffic Jam - http://www.shanestrong.com/seo/build-a-website-traffic-jam (via #sociablesite)" data-url="http://www.shanestrong.com/seo/build-a-website-traffic-jam" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/seo/build-a-website-traffic-jam&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fbuild-a-website-traffic-jam&amp;title=Build%20A%20Website%20Traffic%20Jam'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/seo/build-a-website-traffic-jam"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/seo/build-a-website-traffic-jam" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/seo/build-a-website-traffic-jam" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=935&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/seo/build-a-website-traffic-jam/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Choosing A CMS</title>
		<link>http://www.shanestrong.com/chosen/choosing-a-cms</link>
		<comments>http://www.shanestrong.com/chosen/choosing-a-cms#comments</comments>
		<pubDate>Thu, 02 Jul 2009 07:52:10 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Shane]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=916</guid>
		<description><![CDATA[Website Planning What is it that you are looking for in your site? What would you like your site to do? How often are you planning on updating your site? Would you like to have the ability to change your site? Well these are some of the questions that we ask a client that comes [...]]]></description>
			<content:encoded><![CDATA[<h3>Website Planning</h3>
<p>What is it that you are looking for in your site?  What would you like your site to do?  How often are you planning on updating your site?  Would you like to have the ability to change your site?  Well these are some of the questions that we ask a client that comes to us wanting a site.  Most people don&#8217;t understand that their is much more to a site then just having a idea of &#8220;I need a site&#8221; or &#8220;my company needs a site.&#8221;  With these questions that I have asked it starts me thinking would it be better for my client to have a CMS or not.  A CMS is a Content Management System it is used to give the buyer the ability to make small changes to the site pages in case they may need to change some text or something little.  Once I find out that my client may need a CMS then comes the point of giving the client a CMS that will work with their needs.  For instance if a client came to me and said that they would like a site that has a blog area that they could update daily.  The first thing that comes to my mind is WordPress.  Let alone WordPress is very user friendly it has so many capabilities and plugins that are free.  If my client came to me and said that they would like a site that they would only have to change about every 6 months or more.  I would probably look at either building the site with static information or using a smaller CMS.  My personal preference would be Frog CMS.  It is easy to learn and is easy to customize because of its small size.  Their are a lot of different opinions on what is the best CMS.  I don&#8217;t really think their is a &#8220;best&#8221; I feel that it really depends on the situation and the developers preference.  A short list of some of the free CMS&#8217;s out their:</p>
<h3>Most Known</h3>
<ul>
<li><a target="_blank" href="http://www.wordpress.org">WordPress</a></li>
<li><a target="_blank" href="http://drupal.org/">Drupal</a></li>
<li><a target="_blank" href="http://www.joomla.org/">Joomla</a></li>
</ul>
<h3>Not So Known</h3>
<ul>
<li><a target="_blank" href="http://www.madebyfrog.com/">Frog CMS</a></li>
<li><a target="_blank" href="http://www.mediawiki.org/wiki/MediaWiki">Media Wiki</a></li>
<li><a target="_blank" href="http://typo3.com/">Typo3 CMS</a></li>
<li><a target="_blank" href="http://moodle.org/">Moodle</a></li>
<li><a target="_blank" href="http://www.boonex.com/products/dolphin/">Dolphin</a></li>
<li><a target="_blank" href="http://www.pligg.com/">Pligg CMS</a></li>
<li><a target="_blank" href="http://www.movabletype.org/">Movable Type</a></li>
<li><a target="_blank" href="http://www.xoops.org/">Xoops</a></li>
<li><a target="_blank" href="http://www.geeklog.net/">Geeklog</a></li>
<li><a target="_blank" href="http://e107.org/news.php">e107</a></li>
<li>Mambo</li>
<li><a target="_blank" href="http://nucleuscms.org/">Nucleus CMS</a></li>
</ul>
<h3>My Opinion</h3>
<p>This is just a few of the vast amount of CMS&#8217;s out their that you can choose from.  Note that all of these are free open source CMS&#8217;s.  I have mt own opinion about these CMS&#8217;s and I believe even though Drupal and Joomla are two of the biggest CMS&#8217;s they are two of the most complicated.  I personally would stick with WordPress for blog sites and for smaller sites I would go with Frog CMS but this is my personal opinion.  I would say defiantly try out multiple CMS&#8217;s to see what you build a preference to.  If you have tried out any of the CMS&#8217;s on the list or any that are not on the list please feel free to leave a comment about them.</p>
<h3>Web Design And Development</h3>
<p>If you by change need web design or web development done to one of your sites you can get in contact with me or you can contact <a target="_blank" href="http://chosendevelopment.com" title="Chosen">Chosen</a>.  Chosen is a Lansing based Web Development, Web Design, Web Hosting, and Web Marketing firm.  We are small but are growing in the Lansing Area for our Web Design and Development skills.  We have done work for clients and companies.  We prefer client work but we also take contract work.  We have worked with most of the biggest web companies in the Lansing Area and all the way out to California.  We would love to hear from you.  </p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Choosing%20A%20CMS%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&title=Choosing%20A%20CMS"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;notes=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;annotation=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;bodytext=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-916'), event, 'post-916')" onMouseOver="more(this,'post-916')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-916')" id="sociable-post-916" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Choosing%20A%20CMS&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;cat_id=6&amp;tag_id=31&amp;Remark=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;Title=Choosing%20A%20CMS"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;selection=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;t=Choosing%20A%20CMS&amp;s=Website%20Planning%0D%0AWhat%20is%20it%20that%20you%20are%20looking%20for%20in%20your%20site%3F%20%20What%20would%20you%20like%20your%20site%20to%20do%3F%20%20How%20often%20are%20you%20planning%20on%20updating%20your%20site%3F%20%20Would%20you%20like%20to%20have%20the%20ability%20to%20change%20your%20site%3F%20%20Well%20these%20are%20some%20of%20the%20question"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Choosing%20A%20CMS&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-916',true)" class="close">























		  <img onclick="hide_sociable('post-916',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Choosing A CMS - http://www.shanestrong.com/chosen/choosing-a-cms (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/choosing-a-cms" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/choosing-a-cms&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchoosing-a-cms&amp;title=Choosing%20A%20CMS'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/choosing-a-cms"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/choosing-a-cms" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/choosing-a-cms" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=916&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/choosing-a-cms/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WordPress Functions</title>
		<link>http://www.shanestrong.com/wordpress-help/wordpress-functions</link>
		<comments>http://www.shanestrong.com/wordpress-help/wordpress-functions#comments</comments>
		<pubDate>Tue, 23 Jun 2009 19:21:59 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Theme Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[WordPress Theme Developer]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=879</guid>
		<description><![CDATA[WordPress is the top in Blogging Content Management Systems by far with its vast following and well known product. Not to mention WordPress has some of the best functionality for the end user. I have talked a little in the past about WordPress and how to set in up and how to create parts. Well [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is the top in <strong>Blogging Content Management Systems</strong> by far with its vast following and well known product.  Not to mention WordPress has some of the best functionality for the end user.  I have talked a little in the past about WordPress and how to set in up and how to create parts.  Well now I really want to get into the heavier insides of WordPress.  Things that maybe the majority of end users will not understand.</p>
<h3>Most Valuable Function</h3>
<p>I am going to start off this functions post talking about probably the most heavily used WordPress function called <strong>bloginfo</strong>.  This is a really useful function if you can understand it.  It is quite easy to start the function because it is built in to WordPress all you have to do is call the function and give it what parameters you would like it to have.  The code to call this function looks something like this &lt; ?php bloginfo(&#8216;YOUR PARAMETERS&#8217;); ?&gt;.  As you can see it is quite easy to call this function but in order to understand what you can do with this function is another hurdle.</p>
<h3>List of the Parameters</h3>
<ul class="half">
<li>admin_email</li>
<li>atom_url</li>
<li>charset</li>
<li>comments_atom_url</li>
<li>comments_rss2_url</li>
<li>description</li>
<li>home</li>
<li>html_type</li>
<li>language</li>
<li>name</li>
<li>pingback_url</li>
<li>rdf_url</li>
</ul>
<ul class="half">
<li>rss2_url</li>
<li>rss_url</li>
<li>siteurl</li>
<li>stylesheet_directory</li>
<li>stylesheet_url</li>
<li>template_directory</li>
<li>template_url</li>
<li>text_direction</li>
<li>url</li>
<li>version</li>
<li>wpurl</li>
</ul>
<p>Well that looks like a long list of stuff but a lot of those come in handy quite often.  I am not going to go into what they all do but I will talk to you about a couple of them so that you have some idea of what you can do with them.</p>
<h3>Most Common Parameters</h3>
<p>The first one that I am going to talk about is the url.  Well to me this one is self explanatory what this does for your site is echos out the url of the site.  So if your site is http://www.example.com then the bloginfo function for url would echo out your url.  So if you needed to do an a tag and you wanted to echo out your url all you would have to do is say  now a lot of people would look at that and say why wouldn&#8217;t I just write my url in their instead.  Well if you write your url in there it will only work for your url and so if you are creating a theme then you wouldn&#8217;t be able to sell this theme.  now I am going to move on to another parameter known as name.  All that this does is echos out what you called your blog and you can change this inside the admin section of WordPress.  So a practical use for this would be putting it inside of the a tag that we just used so it would look like this &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;.  That way if you named your blog EXAMPLE the link would say EXAMPLE.  The last parameter that I am going to talk about is description this is also known as your tag line.  You can also set this up inside of the admin section of your blog.  This comes in handy quite often in the header and footer sections of a site.  Mainly because almost every company has a tag line or MATO that they try to emphasize on.  So by saying &lt;?php bloginfo(&#8216;description&#8217;); ?&gt; you can plaster your MATO all over your site.  Well that is my last example for you I really hope that you start messing around with the other parameters because they can come in really great use to you and your site.</p>
<h3>Additional Help &#8211; Chosen LLC</h3>
<p>If you are in need of some help with your WordPress site or any other web related issues you can either contact me or you can go to the Chosen Development site for more help.  We are based out of Saint Johns, Michigan and we specialize in Design and Development we do seminars in the Lansing Area on all different types of web information.  Chosen is a growing company of about 8 people 4 full time and 4 part time.  We would love to hear from you about possible Design or Development work and if you are from the Lansing Area we would be willing to meet with you.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Wordpress%20Functions%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;t=Wordpress%20Functions"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&title=Wordpress%20Functions"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;notes=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;annotation=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;bodytext=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-879'), event, 'post-879')" onMouseOver="more(this,'post-879')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-879')" id="sociable-post-879" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;t=Wordpress%20Functions"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;t=Wordpress%20Functions"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Wordpress%20Functions&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;cat_id=6&amp;tag_id=31&amp;Remark=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;Title=Wordpress%20Functions"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;selection=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;t=Wordpress%20Functions&amp;s=Wordpress%20is%20the%20top%20in%20Blogging%20Content%20Management%20Systems%20by%20far%20with%20its%20vast%20following%20and%20well%20known%20product.%20%20Not%20to%20mention%20Wordpress%20has%20some%20of%20the%20best%20functionality%20for%20the%20end%20user.%20%20I%20have%20talked%20a%20little%20in%20the%20past%20about%20Wordpress%20and%20"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Wordpress%20Functions&body=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-879',true)" class="close">























		  <img onclick="hide_sociable('post-879',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Wordpress Functions - http://www.shanestrong.com/wordpress-help/wordpress-functions (via #sociablesite)" data-url="http://www.shanestrong.com/wordpress-help/wordpress-functions" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/wordpress-help/wordpress-functions&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fwordpress-help%2Fwordpress-functions&amp;title=Wordpress%20Functions'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/wordpress-help/wordpress-functions"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/wordpress-help/wordpress-functions" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/wordpress-help/wordpress-functions" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=879&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/wordpress-help/wordpress-functions/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>About Shane Strong</title>
		<link>http://www.shanestrong.com/shane/about-shane-strong</link>
		<comments>http://www.shanestrong.com/shane/about-shane-strong#comments</comments>
		<pubDate>Tue, 12 May 2009 07:39:36 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Shane]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=792</guid>
		<description><![CDATA[One thing that you really don&#8217;t see on most blogs is a really good place to get to know the owner. Well this is because there really isn&#8217;t a easy way to do this. Yeah you have your about page and maybe people can contact the owner and get to know them. Well I know [...]]]></description>
			<content:encoded><![CDATA[<p>One thing that you really don&#8217;t see on most blogs is a really good place to get to know the owner.  Well this is because there really isn&#8217;t a easy way to do this.  Yeah you have your about page and maybe people can contact the owner and get to know them.  Well I know I wouldn&#8217;t do that, maybe read the about page but that is it.  So in this post I am going to tell you some stuff about Shane Strong me.</p>
<p>I grew up in a little town called Olivet this town is about 30 min south west from Lansing Michigan.  I went to school there all my life.  I was that kid that everyone was friends with but I didn&#8217;t really have all to many good friend.  Maybe this was because I only wanted two of three close friends.  All through out school I was really good at math and science but I was not the greatest when it came to reading, spelling, or history.  I started playing a lot of sports in 7th grade and found that I liked them quite a bit.  I was playing <a target="_blank" href="http://www.myshopping.com.au/PT--257_Personal_Fitness_Basketball__fs_13246_e__">basketball</a>, track, and golf.  Most of my child hood I was set that I would become a electrical engineer and build up to be a nuclear engineer.</p>
<p>Then high school happened.  I was still into sports trying out for Golf, Basketball, and Baseball.  Most of my school time was set to getting better at sports.  I was really fixed on golf.  It was a sport that my grandpa taught me before he died and I guess it was because of him that I became such a great golfer.  I player basketball for my freshmen ans sophomore years in high school but couldn&#8217;t make the cut my junior or senior year.  I played baseball my freshmen, sophomore, and senior years.  Took off the junior year so I could get better at golf.  That was my real charge in high school.  I became a Varsity player my sophomore year playing almost every game and if I wasn&#8217;t playing on Varsity I was number 1 on JV.  My Junior year of golf I dropped 2 strokes on my game and was driving the ball about 310 yards.  Ending the season the number 1 player on the team and getting awarded all-conference 1st class.  That means I was in the top ten of all the players in our league.  My senior year rolled around and I was pumped ready to become the number one player in our league.  I started the year up one stroke from the year before but driving the ball about 315 yards still not bad but that one stroke would kill me.  I finished the year out in 5th place still getting all-conference first class and MVP of the Olivet team and Captain award.  Both Junior and Senior year for some reason I would choke at the regional round and not make it to state.  Not the worst thing ever but no one had ever went to state in golf for Olivet and I could of been the first.  I really feel that my biggest set back was that I wanted the Olivet golf team to get bigger than just me and didn&#8217;t focus quite enough on my personal game.  Well of all my high school year my senior year was the best I broke up with my horrid girl friend that was holding me back from quite a few thing.  I took 2 college classes Calculus 2 and Intro to Information Systems.  Then it was time to graduate and I really was still stuck wondering what am I going to do next.  Of the two Colleges I submitted my application to three contacted me back.  Michigan Tech and Ferris State University.  Oh yeah the third Olivet College they wanted me to go there because of what I did in the two classes well I was there.  I actually had the opportunity to take a course that wasn&#8217;t offered there and I would have my own personal teacher.  I ended up choosing Ferris why that was I couldn&#8217;t tell you but that is for another day.</p>
<p>Well that was the start of my life in a quick nut shell.  I will inform you next time how I became a Web Developer and owning a business.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=About%20Shane%20Strong%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&title=About%20Shane%20Strong"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;notes=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;annotation=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;bodytext=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-792'), event, 'post-792')" onMouseOver="more(this,'post-792')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-792')" id="sociable-post-792" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=About%20Shane%20Strong&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;cat_id=6&amp;tag_id=31&amp;Remark=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;Title=About%20Shane%20Strong"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;selection=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;t=About%20Shane%20Strong&amp;s=One%20thing%20that%20you%20really%20don%27t%20see%20on%20most%20blogs%20is%20a%20really%20good%20place%20to%20get%20to%20know%20the%20owner.%20%20Well%20this%20is%20because%20there%20really%20isn%27t%20a%20easy%20way%20to%20do%20this.%20%20Yeah%20you%20have%20your%20about%20page%20and%20maybe%20people%20can%20contact%20the%20owner%20and%20get%20to%20know%20t"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=About%20Shane%20Strong&body=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-792',true)" class="close">























		  <img onclick="hide_sociable('post-792',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="About Shane Strong - http://www.shanestrong.com/shane/about-shane-strong (via #sociablesite)" data-url="http://www.shanestrong.com/shane/about-shane-strong" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/shane/about-shane-strong&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fshane%2Fabout-shane-strong&amp;title=About%20Shane%20Strong'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/shane/about-shane-strong"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/shane/about-shane-strong" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/shane/about-shane-strong" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=792&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/shane/about-shane-strong/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chosen Web Design &amp; Development</title>
		<link>http://www.shanestrong.com/chosen/chosen-web-design-development</link>
		<comments>http://www.shanestrong.com/chosen/chosen-web-design-development#comments</comments>
		<pubDate>Thu, 07 May 2009 20:26:23 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=790</guid>
		<description><![CDATA[Currently Chosen has some really interesting domains one in particular is ByChosen.com we have had this domain for quite some time and have not really found a use for it until recently.  All of the Chosen crew have worked on multiple different things.  The crew consists of Shane Strong, Clayton McIlrath, Ravi Vora, and Nicholas [...]]]></description>
			<content:encoded><![CDATA[<p>Currently Chosen has some really interesting domains one in particular is <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a> we have had this domain for quite some time and have not really found a use for it until recently.  All of the Chosen crew have worked on multiple different things.  The crew consists of Shane Strong, Clayton McIlrath, Ravi Vora, and Nicholas Rivera.  We are going to showcase this work that we have done on our <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a> site.  We won a really cool flash application that we are going to be displaying on this site so I encourage everyone to check it out <a target="_blank" href="http://www.bychosen.com">ByChosen.com</a>.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Chosen%20Web%20Design%20%26%20Development%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;t=Chosen%20Web%20Design%20%26%20Development"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&title=Chosen%20Web%20Design%20%26%20Development"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;notes=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;annotation=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;bodytext=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-790'), event, 'post-790')" onMouseOver="more(this,'post-790')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-790')" id="sociable-post-790" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;t=Chosen%20Web%20Design%20%26%20Development"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;t=Chosen%20Web%20Design%20%26%20Development"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Chosen%20Web%20Design%20%26%20Development&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;cat_id=6&amp;tag_id=31&amp;Remark=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;Title=Chosen%20Web%20Design%20%26%20Development"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;selection=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;t=Chosen%20Web%20Design%20%26%20Development&amp;s=Currently%20Chosen%20has%20some%20really%20interesting%20domains%20one%20in%20particular%20is%20ByChosen.com%20we%20have%20had%20this%20domain%20for%20quite%20some%20time%20and%20have%20not%20really%20found%20a%20use%20for%20it%20until%20recently.%C2%A0%20All%20of%20the%20Chosen%20crew%20have%20worked%20on%20multiple%20different%20thing"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Chosen%20Web%20Design%20%26%20Development&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-790',true)" class="close">























		  <img onclick="hide_sociable('post-790',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Chosen Web Design & Development - http://www.shanestrong.com/chosen/chosen-web-design-development (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/chosen-web-design-development" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/chosen-web-design-development&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fchosen-web-design-development&amp;title=Chosen%20Web%20Design%20%26%20Development'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/chosen-web-design-development"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/chosen-web-design-development" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/chosen-web-design-development" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=790&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/chosen-web-design-development/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lansing Web Design</title>
		<link>http://www.shanestrong.com/chosen/lansing-web-design-2</link>
		<comments>http://www.shanestrong.com/chosen/lansing-web-design-2#comments</comments>
		<pubDate>Tue, 21 Apr 2009 13:25:21 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=715</guid>
		<description><![CDATA[As one of the few web development companies in Michigan, Chosen Development has much more to offer than what you would expect. We have just recently split into 3 smaller companies all part of one larger company. Our 3 major companies include Chosen Development, Chosen Creative, and 2Go Creative. Chosen Development is headed by Clayton [...]]]></description>
			<content:encoded><![CDATA[<p>As one of the few web development companies in Michigan, Chosen Development has much more to offer than what you would expect.  We have just recently split into 3 smaller companies all part of one larger company.  Our 3 major companies include Chosen Development, Chosen Creative, and 2Go Creative.  Chosen Development is headed by Clayton McIlrath and Shane Strong in the Lansing Area.  With there main focus on the development side of the web.  Chosen Creative is lead by Ravi Vora a very distinct designer.  2Go Creative is managed by Nicholas Rivera.  Nicholas is a very well known designer as well.  Besides our development team and our design team we are starting a new branch in the Chosen arsenal.<br />
We here at Chosen believe that God and the community should come before anything.  One of our ways that we are accomplishing this is with non-profit agencies.  We are starting a branch of chosen that will be lead by Mark Grafton also part of Chosen Development.  He will be leading this branch based out of Lansing, MI.  This part of Chosen will be completely a non-profit organization.  Mark and his crew will be taking on all of our non-profit sites and logos.  This crew might not be quite as efficient as our other branches but they do have the knowledge that they need to take care of all the non-profit sites.  Mark will be able to report to any other branch of Chosen for advise and guidance in any area of need.<br />
Chosen Development is currently going through a course at Mount Hope Church called Club52 in order to learn how to grow our business.  One of the things that make Chosen such a great company is our believe.  We are a complete Christian company, and God is our biggest client.  With Chosen participating in Club52 we were part of the development team that created the website and the shopping cart for this organization.  Club52 is meant for only the serious business owners who believe not only in God but that through God they can become wealthy.  God does not want people to not be wealthy but he wants people to to become filled with greed.  So through this course we will learn how to grow our business to become one of the best, if we take what we learn and apply it to how we conduct our business there will be nothing to stop us from completing our wildest goals.<br />
If you would like to check out Club52 or any branch of Chosen you may do so here -<br />
<a target="_blank" href="http://www.chosendevelopment.com" title="Chosen Development">Chosen Development</a><br />
<a target="_blank" href="http://www.chosencreative.com" title="Chosen Creative">Chosen Creative</a><br />
<a target="_blank" href="http://www.2GoCreative.com" title="2Go Creative">2Go Creative</a><br />
Coming Soon The Non-Profit Branch<br />
<a target="_blank" href="http://www.myclub52.com" title="Club52">Club52</a></p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Lansing%20Web%20Design%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;t=Lansing%20Web%20Design"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&title=Lansing%20Web%20Design"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;notes=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;annotation=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;bodytext=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-715'), event, 'post-715')" onMouseOver="more(this,'post-715')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-715')" id="sociable-post-715" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;t=Lansing%20Web%20Design"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;t=Lansing%20Web%20Design"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Lansing%20Web%20Design&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;cat_id=6&amp;tag_id=31&amp;Remark=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;Title=Lansing%20Web%20Design"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;selection=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;t=Lansing%20Web%20Design&amp;s=As%20one%20of%20the%20few%20web%20development%20companies%20in%20Michigan%2C%20Chosen%20Development%20has%20much%20more%20to%20offer%20than%20what%20you%20would%20expect.%20%20We%20have%20just%20recently%20split%20into%203%20smaller%20companies%20all%20part%20of%20one%20larger%20company.%20%20Our%203%20major%20companies%20include%20Chosen"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Lansing%20Web%20Design&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-715',true)" class="close">























		  <img onclick="hide_sociable('post-715',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Lansing Web Design - http://www.shanestrong.com/chosen/lansing-web-design-2 (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/lansing-web-design-2" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/lansing-web-design-2&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flansing-web-design-2&amp;title=Lansing%20Web%20Design'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/lansing-web-design-2"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/lansing-web-design-2" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/lansing-web-design-2" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=715&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/lansing-web-design-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get Backlinks?</title>
		<link>http://www.shanestrong.com/seo/how-to-get-backlinks</link>
		<comments>http://www.shanestrong.com/seo/how-to-get-backlinks#comments</comments>
		<pubDate>Sat, 04 Apr 2009 05:32:47 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress-Help]]></category>
		<category><![CDATA[Fast SEO]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=638</guid>
		<description><![CDATA[One of the best ways to build your site&#8217;s page rank and position is with backlinks. Backlinks are incoming links to a website or web page. These incoming links or backlinks are a really great way to boost your Search Engine Optimization or SEO. There are many different ways to build backlinks some of the [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best ways to build your site&#8217;s page rank and position is with backlinks.  Backlinks are incoming links to a website or web page.  These incoming links or backlinks are a really great way to boost your Search Engine Optimization or SEO.  There are many different ways to build backlinks some of the most common are:</p>
<ul>
<li>Web Directories</li>
<li>Friends and Colleagues</li>
<li>Personal Interest</li>
<li>Blogging</li>
</ul>
<p>Most people would look at this list and think what does that mean well I am going to tell you.  Web Directories are places that you can submit your website and have it on display inside that companies database of sites.  A lot of times these places have a paid and non-paid submission process.  This means that if you take the free non-paid one you will be put on a list of maybe hundreds of sites that have to go through a inspection process to see if your site is a fit for the directory.  This could take somewhere from 1 to 6 months.  The reason it takes so long is because most of these places only charge like $5 to $25 for the paid submission and anyone who pays gets put at the front of the list.</p>
<p>Friends and Colleagues this is kind of self explanatory you meet someone and enjoy what they have so you put a link on your site to there stuff.  This creates a backlink for them.  If you look at the top of my site I have some of my colleagues and companies most of them are broken down into multiple links to more than just there home page.  This will create a back link for more than just the main page.<br />
Personal Interest this is one that you might say what does that mean.  Well I give it this name because it means sites that you personally like.  If you find a site that you enjoy give them a back link weather it be in a post or somewhere out of site.  This will boost there rating and sometimes if you contact that specific person and ask them to put one on there site they might just because you did.</p>
<p>The last way that I create backlinks is blogging this is probably one of the best ways to create backlinks but also one of the less profitable.  How you make backlinks is start posting on specific peoples site just with little comments like feedback and or other creative criticism.  Once that person sees that you have been commenting on there site so much they will end up checking your site out and either you will get some great feedback or they might talk to you about backlinks.</p>
<p>Well I am just throwing this out there if there is anyone who has a site and would like a backlink send me a email or comment here I will check out your site and see what I can do about giving you a backlink somewhere on my site.</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=How%20to%20get%20Backlinks%3F%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;t=How%20to%20get%20Backlinks%3F"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&title=How%20to%20get%20Backlinks%3F"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;notes=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;annotation=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;bodytext=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-638'), event, 'post-638')" onMouseOver="more(this,'post-638')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-638')" id="sociable-post-638" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;t=How%20to%20get%20Backlinks%3F"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;t=How%20to%20get%20Backlinks%3F"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=How%20to%20get%20Backlinks%3F&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;cat_id=6&amp;tag_id=31&amp;Remark=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;Title=How%20to%20get%20Backlinks%3F"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;selection=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;t=How%20to%20get%20Backlinks%3F&amp;s=One%20of%20the%20best%20ways%20to%20build%20your%20site%27s%20page%20rank%20and%20position%20is%20with%20backlinks.%20%20Backlinks%20are%20incoming%20links%20to%20a%20website%20or%20web%20page.%20%20These%20incoming%20links%20or%20backlinks%20are%20a%20really%20great%20way%20to%20boost%20your%20Search%20Engine%20Optimization%20or%20SEO.%20%20Th"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=How%20to%20get%20Backlinks%3F&body=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-638',true)" class="close">























		  <img onclick="hide_sociable('post-638',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="How to get Backlinks? - http://www.shanestrong.com/seo/how-to-get-backlinks (via #sociablesite)" data-url="http://www.shanestrong.com/seo/how-to-get-backlinks" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/seo/how-to-get-backlinks&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fseo%2Fhow-to-get-backlinks&amp;title=How%20to%20get%20Backlinks%3F'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/seo/how-to-get-backlinks"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/seo/how-to-get-backlinks" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/seo/how-to-get-backlinks" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/seo/how-to-get-backlinks/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Accounting Client Billing System</title>
		<link>http://www.shanestrong.com/chosen/accounting-client-billing-system</link>
		<comments>http://www.shanestrong.com/chosen/accounting-client-billing-system#comments</comments>
		<pubDate>Fri, 20 Mar 2009 22:40:51 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Accounting]]></category>
		<category><![CDATA[Accounting System]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Lansing Web Development]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=575</guid>
		<description><![CDATA[Working with a small business there are a lot of things that you need but don&#8217;t have the money to purchase them. I have found that most small businesses Quickbooks is something that is a must have. But what else is there I find that Quickbooks is even to big for the normal start-up business [...]]]></description>
			<content:encoded><![CDATA[<p>Working with a small business there are a lot of things that you need but don&#8217;t have the money to purchase them.  I have found that most small businesses Quickbooks is something that is a must have.  But what else is there I find that Quickbooks is even to big for the normal start-up business or even the mom and pop business.  I am currently in the process of building a accounting/client/Billing system.  This will eventually be open to the public for a price but I am going to open it up to a select amount of people just so that they can try it out and give me feed back on what they like and dislike or changes and errors that it is having.  I was thinking on opening it up to about 25 people for testing by this summer.  In this next month I would like any input on things that you feel a small business needs.</p>
<p>One of the aspects that I am going to have this do is make it so that you can register possible client and actual clients.  With the actual clients this will allow you to register client and keep track of money that has been received from them and money that is still in the waiting.  I felt that something that would be useful is a emailing system that sends you a email that a client needs to make a payment and it also sends a email to the client so that they know.</p>
<p>Another aspect that I am going to have this do is calculate the taxes on money received.  Also a place for you to input expenses.  I have a lot to do with this and would love input on the subject I would like to have this out to the public by this summer.  I am at first building this to my needs and then building it to everyone&#8217;s needs.  If you would like to send me any helpful info you can send it to accounting[at]shanestrong.com or you can write a comment about it.</p>
<p>In order for me to fund this project I need some help.  Donations would be great you can send the via paypal to shanestrong05[at]gmail.com.  Or if you have any web design or web development work you can contact <b><a target="_blank" href="http://www.chosendevelopment.com">Chosen Development</a></b>.</p>
<p>I am currently looking for a full time job in the web design industry.  Preferably somewhere in the Lansing Area.  I consider myself highly skilled in XHTML, CSS, and WordPress other skills are MySQL, PHP, Java, VB, and currently learning ASP.net and ASP.  If possible I would like to become a Lansing Web Developer somewhere in the Lansing Area.  I feel that the Lansing Web Industry is going up even though it is a little slow right now.</p>
<p>Thanks You For Your Help</p>
<!-- Start Sociable --><div class="sociable"><div class="sociable_tagline">Spread and Share</div><ul class='clearfix'><li><a title="Twitter" class="option1_32" style="background-position:-288px -32px" rel="nofollow" target="_blank" href="http://twitter.com/intent/tweet?text=Accounting%20Client%20Billing%20System%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system%20(via%20@sociablesite)"></a></li><li><a title="Facebook" class="option1_32" style="background-position:-96px 0px" rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;t=Accounting%20Client%20Billing%20System"></a></li><li><a title="StumbleUpon" class="option1_32" style="background-position:-224px -32px" rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&title=Accounting%20Client%20Billing%20System"></a></li><li><a title="LinkedIn" class="option1_32" style="background-position:-288px 0px" rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li><a title="Delicious" class="option1_32" style="background-position:-32px 0px" rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;notes=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li><a title="Google Bookmarks" class="option1_32" style="background-position:-192px 0px" rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;annotation=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li><a title="Digg" class="option1_32" style="background-position:-64px 0px" rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;bodytext=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li><a title="Reddit" class="option1_32" style="background-position:-128px -32px" rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-575'), event, 'post-575')" onMouseOver="more(this,'post-575')"><img style='margin-top:9px' src='http://www.shanestrong.com/wp-content/plugins/sociable/images/more.png'></a></li></ul><div onMouseout="fixOnMouseOut(this,event,'post-575')" id="sociable-post-575" style="display:none;">   











    <div style="top: auto; left: auto; display: block;" id="sociable">























		<div class="popup">











			<div class="content">











				<ul><li style="heigth:32px;width:32px"><a title="Myspace" class="option1_32" style="background-position:0px -32px" rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;t=Accounting%20Client%20Billing%20System"></a></li><li style="heigth:32px;width:32px"><a title="HackerNews" class="option1_32" style="background-position:-256px 0px" rel="nofollow" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;t=Accounting%20Client%20Billing%20System"></a></li><li style="heigth:32px;width:32px"><a title="MSNReporter" class="option1_32" style="background-position:-352px 0px" rel="nofollow" target="_blank" href="http://reporter.es.msn.com/?fn=contribute&amp;Title=Accounting%20Client%20Billing%20System&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;cat_id=6&amp;tag_id=31&amp;Remark=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li style="heigth:32px;width:32px"><a title="BlinkList" class="option1_32" style="background-position:0px 0px" rel="nofollow" target="_blank" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;Title=Accounting%20Client%20Billing%20System"></a></li><li style="heigth:32px;width:32px"><a title="Sphinn" class="option1_32" style="background-position:-192px -32px" rel="nofollow" target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system"></a></li><li style="heigth:32px;width:32px"><a title="Posterous" class="option1_32" style="background-position:-64px -32px" rel="nofollow" target="_blank" href="http://posterous.com/share?linkto=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;selection=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li style="heigth:32px;width:32px"><a title="Tumblr" class="option1_32" style="background-position:-256px -32px" rel="nofollow" target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;t=Accounting%20Client%20Billing%20System&amp;s=Working%20with%20a%20small%20business%20there%20are%20a%20lot%20of%20things%20that%20you%20need%20but%20don%27t%20have%20the%20money%20to%20purchase%20them.%20%20I%20have%20found%20that%20most%20small%20businesses%20Quickbooks%20is%20something%20that%20is%20a%20must%20have.%20%20But%20what%20else%20is%20there%20I%20find%20that%20Quickbooks%20is%20e"></a></li><li style="heigth:32px;width:32px"><a title="email" class="option1_32" style="background-position:-160px 0px" rel="nofollow" target="_blank" href="https://mail.google.com/mail/?view=cm&fs=1&to&su=Accounting%20Client%20Billing%20System&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&ui=2&tf=1&shva=1"></a></li><li style="heigth:32px;width:32px"><a title="Google Reader" class="option1_32" style="background-position:-224px 0px" rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;srcTitle=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan"></a></li><li style="heigth:32px;width:32px"><a class="option1_32" style="cursor:pointer;background-position:-128px 0px" rel="nofollow" title="Add to favorites - doesn't work in Chrome"  onClick="javascript:AddToFavorites();"></a></li></ul>			











			</div>        











		  <a style="cursor:pointer" onclick="hide_sociable('post-575',true)" class="close">























		  <img onclick="hide_sociable('post-575',true)" title="close" src="http://www.shanestrong.com/wp-content/plugins/sociable/images/closelabel.png">











		  </a>











		</div>











	</div> 











  </div></div><div class='sociable' style='float:none'><ul class='clearfix'><li id="Twitter_Counter"><a href="https://twitter.com/share" data-text="Accounting Client Billing System - http://www.shanestrong.com/chosen/accounting-client-billing-system (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/accounting-client-billing-system" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script></li><li id="Facebook_Counter"><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.shanestrong.com/chosen/accounting-client-billing-system&send=false&layout=button_count&show_faces=false&action=like&colorscheme=light&font" scrolling="no" frameborder="0" style="border:none; overflow:hidden;height:32px;width:100px" allowTransparency="true"></iframe></li><li id="Digg_Counter"><script type='text/javascript'>(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a href='http://digg.com/submit?url=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Faccounting-client-billing-system&amp;title=Accounting%20Client%20Billing%20System'  class='DiggThisButton DiggCompact'></a></li><li id="StumbleUpon_Counter"><script src="http://www.stumbleupon.com/hostedbadge.php?s=2&r=http://www.shanestrong.com/chosen/accounting-client-billing-system"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/accounting-client-billing-system" size="medium"></g:plusone></li><li id="LinkedIn_Counter"><script src="http://platform.linkedin.com/in.js" type="text/javascript"></script><script type="IN/Share" data-url="http://www.shanestrong.com/chosen/accounting-client-billing-system" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=575&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/accounting-client-billing-system/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

