<?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 Design</title>
	<atom:link href="http://www.shanestrong.com/category/lansing-web-design/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>Fri, 03 Feb 2012 15:45:52 +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>How To jQuery Toggle</title>
		<link>http://www.shanestrong.com/chosen/how-to-jquery-toggle</link>
		<comments>http://www.shanestrong.com/chosen/how-to-jquery-toggle#comments</comments>
		<pubDate>Wed, 22 Jul 2009 08:09:48 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<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[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=950</guid>
		<description><![CDATA[jQuery was made to change the way that you write JavaScript. jQuery has tons of really nice effects that you can experiment with. One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it. [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery was made to change the way that you write JavaScript.  jQuery has tons of really nice effects that you can experiment with.  One of my favorite things to do with jQuery is to do a toggle this is a really simple effect to do but will make people go WOW when they see it.  You can use the toggle effect in multiple different way most of the time people just use the toggle up to down or toggle left to right.  But some people don&#8217;t know that you can use jQuery toggle to go from your upper left or right corner to the opposite corner.  Well here is some code that you can reference on different ways to toggle.</p>
<h2>Lets do the easy toggles first</h2>
<h3>Top To Bottom</h3>
<p>I am doing this for the comments section of most WordPress sites.  First you have to give the identify what the outer most container is of your comments section.  Mine is id comments.  So just to the top of my comments section I need to create a button but you don&#8217;t have to use a button it is just the easiest to explain.  So you should have something that looks like this.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;button id=&quot;comments_bottom&quot;&gt;This Is A Toggle Button&lt;/button&gt;
&lt;div id=&quot;comment&quot;&gt;
//Your Comment Code
&lt;/div&gt;</pre></div></div>

<p>You will notice that I gave the button a id that is so that jQuery can find it.  Next you have to create your js file.  I would name it something like toggle.js.  It should look like this depending on which way you want your content to toggle.</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">//Top To Bottom
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({height: &quot;toggle&quot;}, 1000);
	});
});
//Left To Right Or Right To Left
//In order to do either you must float your #comment 
//the direction you want your content to come from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;}, 1000);
	});
});
//Upper Left To Lower Right Or Upper Right To Lower Left
//These ones you also have to float from the direction 
//they are coming from!
$(document).ready(function() {
	$(&quot;#comment&quot;).hide();
	$(&quot;#comments_button&quot;).click(function() {
		$(&quot;#comment&quot;).animate({width: &quot;toggle&quot;, 
                    height: &quot;toggle&quot;}, 1000);
	});
});</pre></div></div>

<p>Now all you have to do is call your jQuery script and a jQuery library and your toggle up to down should work.  I use the Google library because of how quick it is.  You can find more info about the Google library here  <a target="_blank" href="http://code.google.com/apis/ajaxlibs/documentation/">jQuery Library</a></p>
<h3>Other Ways To Toggle</h3>
<p>There are a few other ways to do a toggle like from bottom to top and bottom corners to top corners.  There is also some other things that you can do with toggle like fading.  jQuery has a lot of really easy and light things that you can do to your site to make it just that much better.  If I were you I would take a look at their site <a target="_blank" href="http://jquery.com">jQuery</a>.</p>
<h3><a target="_blank" href="http://chosendevelopment.com" title="Chosen">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 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>
<!-- 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%20jQuery%20Toggle%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle%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%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></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%2Fhow-to-jquery-toggle&title=How%20To%20jQuery%20Toggle"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;notes=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;annotation=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;bodytext=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-950'), event, 'post-950')" onMouseOver="more(this,'post-950')"><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-950')" id="sociable-post-950" 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%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></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%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle"></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%20jQuery%20Toggle&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&amp;cat_id=6&amp;tag_id=31&amp;Remark=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;Title=How%20To%20jQuery%20Toggle"></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%2Fhow-to-jquery-toggle"></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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;selection=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%2Fhow-to-jquery-toggle&amp;t=How%20To%20jQuery%20Toggle&amp;s=jQuery%20was%20made%20to%20change%20the%20way%20that%20you%20write%20JavaScript.%20%20jQuery%20has%20tons%20of%20really%20nice%20effects%20that%20you%20can%20experiment%20with.%20%20One%20of%20my%20favorite%20things%20to%20do%20with%20jQuery%20is%20to%20do%20a%20toggle%20this%20is%20a%20really%20simple%20effect%20to%20do%20but%20will%20make%20peopl"></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%20jQuery%20Toggle&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Fhow-to-jquery-toggle&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-950',true)" class="close">























		  <img onclick="hide_sociable('post-950',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 jQuery Toggle - http://www.shanestrong.com/chosen/how-to-jquery-toggle (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/how-to-jquery-toggle" 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/how-to-jquery-toggle&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%2Fhow-to-jquery-toggle&amp;title=How%20To%20jQuery%20Toggle'  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/how-to-jquery-toggle"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/how-to-jquery-toggle" 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/how-to-jquery-toggle" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=950&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/how-to-jquery-toggle/feed</wfw:commentRss>
		<slash:comments>3</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>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>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>
		<item>
		<title>Logo Design &#8211; Cost vs Quality</title>
		<link>http://www.shanestrong.com/chosen/logo-design-cost-vs-quality</link>
		<comments>http://www.shanestrong.com/chosen/logo-design-cost-vs-quality#comments</comments>
		<pubDate>Fri, 13 Feb 2009 22:01:24 +0000</pubDate>
		<dc:creator>selgon</dc:creator>
				<category><![CDATA[Chosen]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Powered by WordPress]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Chosen Creative]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Selgon]]></category>
		<category><![CDATA[Shane Strong]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=530</guid>
		<description><![CDATA[People and Logos Working for an advertising agency we see and here about almost everything. I am a co-owner of Chosen Development, we do everything from websites down to walking dogs. We don&#8217;t do just Logo Designs or consider our selves to being a Logo Design Company. Some of the logos that we have created [...]]]></description>
			<content:encoded><![CDATA[<h3>People and Logos</h3>
<p>Working for an advertising agency we see and here about almost everything.  I am a co-owner of <a target="_blank" href="http://www.chosendevelopment.com">Chosen Development</a>, we do everything from websites down to walking dogs.  We don&#8217;t do just Logo Designs or consider our selves to being a Logo Design Company.  Some of the logos that we have created were Church Logo Designs and Business Logos.  Most of the people who come to our company want a logo designed for something like $20 and yes we could do that but people really need to notice that if you spend $20 on a Logo Design you are going to get $20 worth of work.<br />
</p>
<h3>What Logo Designs Should Consist Of</h3>
<p>Alright if you look at some of the most popular Logo Designs some of these designs might of went for hundreds of thousands of dollars.  For instance if you take some of the Sport Logo Designs like Nike for instance I don&#8217;t know off hand how much they paid for there Logo but everyone knows what it is.  I can definitely tell you that it wasn&#8217;t a $20 Logo Design.  Most of the really popular companies might have paid up to a couple million dollars for a Logo Design.  There are a few companies out there that have paid little to nothing for their Logo.  For instance one of the biggest companies in the world Google not that many people know Google&#8217;s Logo but it sucks you should look it up.  For a Logo Design for a small company it is a good thing to pay for something that will be worth it.  For a price perspective I would have to say that a good Logo would be between $500 to $1500 and for a cheaper logo you could spend anywhere from free to $100.<br />
</p>
<h3>Some Really Bad and I Hope Cheap Logo Designs</h3>
<p>We took a look at some of the really bad Logos that have been designed developed.  Some of these might not be appropriate for kids but that is who most of these are focused towards.<br />
<br />
Logos found by Chosen Development &#8211; <a target="_blank" href="http://chosencollective.com/news/graphic-website-logo-design" title="Graphic Website Logo Design">Graphic Website Logo Design</a>.<br />
<br />
Here is some of the Logos that I have found that are bad.<br />
Well to start one of the newest the Pepsi Logo.<br />
New Logo &#8211; <img src="http://www.shanestrong.com/wp-content/themes/ShanesTheme/images/OtherLogos/images.jpg" alt="New Pepsi Logo" /><br />
Old Logo &#8211; <img src="http://www.shanestrong.com/wp-content/themes/ShanesTheme/images/OtherLogos/images2.jpg" alt="Old Pepsi Logo" /><br />
I don&#8217;t know about you but the new logo is horrible.<br />
<br />
Here are some other bad Logo&#8217;s.<br />
<img src="http://www.shanestrong.com/wp-content/themes/ShanesTheme/images/OtherLogos/images3.jpg" alt="Another Company" /><br />
<br />
<img src="http://www.shanestrong.com/wp-content/themes/ShanesTheme/images/OtherLogos/images4.jpg" alt="Another Company" /><br />
<br />
There are quite a few Logos out there that have probably been done for either free or by somebody that has no clue what they are doing.  One of our biggest mottoes here at <a target="_blank" href="http://www.chosendevelopment.com">Chosen Development</a> is let the professionals do what they are good at.  Basically it like a plumber you aren&#8217;t going to call them and say what they should do because you know that they know that they know what they are doing.  So with that Logo Design is something that every business needs but would you like to pay a little and get something like these or would you rather pay a little more and get something worth your money and time.</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=Logo%20Design%20-%20Cost%20vs%20Quality%20-%20http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flogo-design-cost-vs-quality%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%2Flogo-design-cost-vs-quality&amp;t=Logo%20Design%20-%20Cost%20vs%20Quality"></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%2Flogo-design-cost-vs-quality&title=Logo%20Design%20-%20Cost%20vs%20Quality"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;notes=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;annotation=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;bodytext=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-530'), event, 'post-530')" onMouseOver="more(this,'post-530')"><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-530')" id="sociable-post-530" 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%2Flogo-design-cost-vs-quality&amp;t=Logo%20Design%20-%20Cost%20vs%20Quality"></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%2Flogo-design-cost-vs-quality&amp;t=Logo%20Design%20-%20Cost%20vs%20Quality"></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=Logo%20Design%20-%20Cost%20vs%20Quality&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flogo-design-cost-vs-quality&amp;cat_id=6&amp;tag_id=31&amp;Remark=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;Title=Logo%20Design%20-%20Cost%20vs%20Quality"></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%2Flogo-design-cost-vs-quality"></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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;selection=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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%2Flogo-design-cost-vs-quality&amp;t=Logo%20Design%20-%20Cost%20vs%20Quality&amp;s=People%20and%20Logos%0D%0AWorking%20for%20an%20advertising%20agency%20we%20see%20and%20here%20about%20almost%20everything.%20%20I%20am%20a%20co-owner%20of%20Chosen%20Development%2C%20we%20do%20everything%20from%20websites%20down%20to%20walking%20dogs.%20%20We%20don%27t%20do%20just%20Logo%20Designs%20or%20consider%20our%20selves%20to%20being%20a"></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=Logo%20Design%20-%20Cost%20vs%20Quality&body=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flogo-design-cost-vs-quality&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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Fchosen%2Flogo-design-cost-vs-quality&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-530',true)" class="close">























		  <img onclick="hide_sociable('post-530',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="Logo Design - Cost vs Quality - http://www.shanestrong.com/chosen/logo-design-cost-vs-quality (via #sociablesite)" data-url="http://www.shanestrong.com/chosen/logo-design-cost-vs-quality" 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/logo-design-cost-vs-quality&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%2Flogo-design-cost-vs-quality&amp;title=Logo%20Design%20-%20Cost%20vs%20Quality'  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/logo-design-cost-vs-quality"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/chosen/logo-design-cost-vs-quality" 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/logo-design-cost-vs-quality" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=530&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/chosen/logo-design-cost-vs-quality/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chosen Development &#8211; Poaching the Lansing Area Web Design</title>
		<link>http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design</link>
		<comments>http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design#comments</comments>
		<pubDate>Fri, 06 Feb 2009 06:31:14 +0000</pubDate>
		<dc:creator>selgon</dc:creator>
				<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[Chosen]]></category>
		<category><![CDATA[Chosen Development]]></category>
		<category><![CDATA[Lansing Area]]></category>
		<category><![CDATA[Lansing Web]]></category>
		<category><![CDATA[Michigan Economy]]></category>
		<category><![CDATA[Michigan Web]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[Shane Strong]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=483</guid>
		<description><![CDATA[Chosen Development is starting to take off at a amazing rate. We received a call on February 4 it was to inform us that we are going to be published in a book that displays companies that are not like everyone else. In Chosen&#8217;s case I do believe that this is true we here believe [...]]]></description>
			<content:encoded><![CDATA[<p><b>Chosen Development</b> is starting to take off at a amazing rate.  We received a call on February 4 it was to inform us that we are going to be published in a book that displays companies that are not like everyone else.  In Chosen&#8217;s case I do believe that this is true we here believe that in order for our business to succeed we have to get the community off its feet.  We have done many different types of charity events and websites.  Unfortunately this isn&#8217;t bringing us in enough income so we have to hold off on them for the time being but if you have something that doesn&#8217;t have to be done right away we would be willing to take a look at it.</p>
<p></p>
<p>As I said we are going to be published in a book the name of it we are not able to give out yet.  This is happening because the publishing company sees us as a different business.  We aren&#8217;t the normal start up business.  We came into the web design and development business with nothing but a goal.  We don&#8217;t want to make millions like everyone else yeah that would be nice, more money to share with the community.  We here at Chosen are looking for everyone to make money.  If you take a look at our site at <a target="_blank" href="http://www.chosencollective.com">Chosen Development</a> we do not look like everyone else our business site is different.  I find it to be more appealing to everyone not just to clients and we here think that is how it should be.  Not to point out other sites in the Lansing Area in the Web Development business but if you look at there sites you will not be impressed.  Not to be mean but there sites suck, there is no creativity and the customer usability is horrible.  Some of these companies make ten&#8217;s of millions of dollars a year but are they helping the people that need it no.  In order to make Michigan a state known for more than a falling state, we as a community need to work together to bring more and more work to the area.  One of the biggest things that we do to help the community besides getting involved with Churches, we point all the work that we don&#8217;t have the time to do or man power we send it towards our competitors.  Chosen Development is based out of Saint Johns and we are one of the two web design and development companies in Saint Johns.  The other is <a target="_blank" href="http://www.dynamite.com">Dynamite Inc.</a> owned be Jeremy Lound, we are currently business partners with him and his growing business.</p>
<p></p>
<p>We here at Chosen Development do all things in the advertising spectrum, we specialize in web design and development, logo design, and SEO.  With web design we do thing not necessarily cheaper than everyone but if you compare everyone to our prices we are probably the best you will get for the money and time.  We believe in the saying quality not quantity.  We would rather make less money and make a better site than make two or three crappy sites for cheap that end up being cheap.  One of the biggest thing that our business partner Jeremy helped us with is that people look at web development and design as something that you can test or you can try it to see if you want it.  Well it isn&#8217;t it is more like painting a room.  You dont go find a painter and ask him to paint one room to see if you like it.  It ends up being either you get the room painted or not and if you get it painted you pay the painter upfront.  We are taking this to heart with out business model, from now on anything no matter what price we are doing a $100 up front payment just to get with us to discuss everything.  This will be treated as a deposit so you can get it back but we are finding that people don&#8217;t want it back because of the quality of work we are giving them.</p>
<p></p>
<p>Lansing Michigan is a dying state we are one of the worst unemployment states in the US.  My father works with a company that makes parts for GM, Ford, and all the other automotive companies in Michigan and he has been laid off since around Christmas time.  He was one of the last people to get laid off.  This is a common thing in Michigan, companies laying people off right and left.  Michigan needs some help and Chosen Development is hoping to be one that can help.  We are looking to keep any specific office to only 10 people but that doesn&#8217;t limit the amount of offices we can have.  By the year 2020 we are aiming to be in at lease 10 different states and some people might see that as a small challenge but it isn&#8217;t we here at Chosen started this company with nothing but our computers, nothing in our reserve.  We here believe that God is the one that started this company and is the one that wont let it fail.  We are going to take Chosen to every limit possible and God and Jesus Christ are going to be there watch over us.  This is not to say that we aren&#8217;t going to slip and fall but if we do we will get back up and try again.  We have made a business goal and this is a weird goal but one I think every business should adopt.  We have a community prayer time everyday and we pray for each other and everyone that is having troubles.  Everyone of Chosen&#8217;s employees has there own Bible and reads it regularly.</p>
<p></p>
<p>Well I hope that I have covered everything and pray that everyone takes this to heart. Thank 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=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design%20-%20http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design%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%2Fchosen-development-poaching-the-lansing-area-web-design&amp;t=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;source=Shane+Strong+Lansing+WordPress+Web+Developer+Search+Engine+Optimization+Website+Consultant+Theme+Developer+Magento+Developer+Lansing+Michigan&amp;summary=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;notes=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;annotation=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;bodytext=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-483'), event, 'post-483')" onMouseOver="more(this,'post-483')"><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-483')" id="sociable-post-483" 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%2Fchosen-development-poaching-the-lansing-area-web-design&amp;t=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;t=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;URL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;cat_id=6&amp;tag_id=31&amp;Remark=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;Title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design"></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%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;selection=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&amp;t=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;s=Chosen%20Development%20is%20starting%20to%20take%20off%20at%20a%20amazing%20rate.%20%20We%20received%20a%20call%20on%20February%204%20it%20was%20to%20inform%20us%20that%20we%20are%20going%20to%20be%20published%20in%20a%20book%20that%20displays%20companies%20that%20are%20not%20like%20everyone%20else.%20%20In%20Chosen%27s%20case%20I%20do%20believe%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=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&body=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&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%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%20Web%20Design&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Fchosen-development-poaching-the-lansing-area-web-design&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-483',true)" class="close">























		  <img onclick="hide_sociable('post-483',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 Development - Poaching the Lansing Area Web Design - http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design (via #sociablesite)" data-url="http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design" 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/chosen-development-poaching-the-lansing-area-web-design&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%2Fchosen-development-poaching-the-lansing-area-web-design&amp;title=Chosen%20Development%20-%20Poaching%20the%20Lansing%20Area%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/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design" 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/chosen-development-poaching-the-lansing-area-web-design" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=483&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/lansing-web-design/chosen-development-poaching-the-lansing-area-web-design/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lansing Web Design</title>
		<link>http://www.shanestrong.com/lansing-web-design/lansing-web-design</link>
		<comments>http://www.shanestrong.com/lansing-web-design/lansing-web-design#comments</comments>
		<pubDate>Fri, 30 Jan 2009 06:53:57 +0000</pubDate>
		<dc:creator>selgon</dc:creator>
				<category><![CDATA[Lansing Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Michigan Web Design]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.shanestrong.com/?p=451</guid>
		<description><![CDATA[Once Michigan was known for their business in the car industry and they still are a little. We here at Chosen Development see a real need for some great Web Developers in the Lansing Area. Michigan is going down hill fast and it needs a little jump start. We believe that is going to be [...]]]></description>
			<content:encoded><![CDATA[<p>Once Michigan was known for their business in the car industry and they still are a little.  We here at <b>Chosen Development</b> see a real need for some great Web Developers in the Lansing Area.  Michigan is going down hill fast and it needs a little jump start.  We believe that is going to be in the <b>Web Design</b> and <b>Development</b> industry.  Not a lot of people know that Lansing for as small as it is has quite a few <b>Web Design</b> and or <b>Development</b> businesses.  <b>Chosen</b> being one of them.<br />
<br />
We were founded on the belief that God and <b>Jesus Christ</b> would lead us on the right path and we still feel that way.  Lansing Web Design has been going down in the last few months and I don&#8217;t know if it is because of the holidays but Lansing and Michigan as a whole needs a lift.  We here at <b>Chosen Development</b> are going to try to give Michigan the lift it needs we are currently building a few apps that we are hoping will bring us income and even enough that we can use it to help others in this time of need.  I really want to share what we are working on but I don&#8217;t want the idea&#8217;s to be taken so until we have them patented and ready to deploy all you will get is this.<br />
<br />
I really hope that a lot of people start to follow me on the post because I feel that when these apps come out you are going to want to be the first to get them at the cheap price.  We are going to be pointing these apps mainly to big business but we are thinking about letting small businesses try them out for a small price.<br />
<br />
These apps I believe will bring lots of money to Michigan and the Lansing Area especially in the Web Design Area.  I am praying for all you people out there who have lost your job and or will be soon.  Just remember all we can do is pray and keep looking, God will answer your prayers.  Thank You</p>
<p>Shane Strong<br />
Chosen Development</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%2Flansing-web-design%2Flansing-web-design%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%2Flansing-web-design&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%2Flansing-web-design%2Flansing-web-design&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%2Flansing-web-design%2Flansing-web-design&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=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&amp;title=Lansing%20Web%20Design&amp;notes=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&amp;title=Lansing%20Web%20Design&amp;annotation=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&amp;title=Lansing%20Web%20Design&amp;bodytext=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&amp;title=Lansing%20Web%20Design"></a></li><li><a style="cursor:pointer" rel="nofollow" onMouseOut="fixOnMouseOut(document.getElementById('sociable-post-451'), event, 'post-451')" onMouseOver="more(this,'post-451')"><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-451')" id="sociable-post-451" 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%2Flansing-web-design&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%2Flansing-web-design%2Flansing-web-design&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%2Flansing-web-design%2Flansing-web-design&amp;cat_id=6&amp;tag_id=31&amp;Remark=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&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%2Flansing-web-design%2Flansing-web-design"></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%2Flansing-web-design&amp;title=Lansing%20Web%20Design&amp;selection=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design&amp;t=Lansing%20Web%20Design&amp;s=Once%20Michigan%20was%20known%20for%20their%20business%20in%20the%20car%20industry%20and%20they%20still%20are%20a%20little.%20%20We%20here%20at%20Chosen%20Development%20see%20a%20real%20need%20for%20some%20great%20Web%20Developers%20in%20the%20Lansing%20Area.%20%20Michigan%20is%20going%20down%20hill%20fast%20and%20it%20needs%20a%20little%20jump"></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%2Flansing-web-design%2Flansing-web-design&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%2Flansing-web-design&amp;title=Lansing%20Web%20Design&amp;srcURL=http%3A%2F%2Fwww.shanestrong.com%2Flansing-web-design%2Flansing-web-design&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-451',true)" class="close">























		  <img onclick="hide_sociable('post-451',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/lansing-web-design/lansing-web-design (via #sociablesite)" data-url="http://www.shanestrong.com/lansing-web-design/lansing-web-design" 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/lansing-web-design&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%2Flansing-web-design&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/lansing-web-design/lansing-web-design"></script></li><li id="Google_p"><g:plusone annotation="bubble" href="http://www.shanestrong.com/lansing-web-design/lansing-web-design" 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/lansing-web-design" data-counter="right"></script></li></ul></div><!-- End Sociable --><img src="http://www.shanestrong.com/?ak_action=api_record_view&id=451&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.shanestrong.com/lansing-web-design/lansing-web-design/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

