<?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>CJ Jackson &#187; General</title>
	<atom:link href="http://cj-jackson.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://cj-jackson.com</link>
	<description>Keeping it Fresh!</description>
	<lastBuildDate>Mon, 06 Sep 2010 10:29:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HTML5 Video and Audio Force-Fallback Javascript</title>
		<link>http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/</link>
		<comments>http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 22:50:34 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1610</guid>
		<description><![CDATA[Recently I have been looking on the web for a decent force-fallback script, but unfortunately I just couldn&#8217;t find a script that satisfies me, so I decided to write my own script.  The script below requires jQuery, which wordpress happens &#8230; <a href="http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I have been looking on the web for a decent force-fallback script, but unfortunately I just couldn&#8217;t find a script that satisfies me, so I decided to write my own script.  The script below requires jQuery, which wordpress happens to include, I find the script almost perfect, it works on most browsers and it even works on mobile devices as well.  If the script does not detect a compatible format it will do a force-fallback.  I also included this script in one of my wordpress plugins (<a href="http://wordpress.org/extend/plugins/wphtml5player/">HTML Video and Audio Framework 1.7.0 and later</a>)</p>
<pre class="brush: jscript;">jQuery('video').each(function() {
		var support = false;
		jQuery(this).children('source').each(function() {
			if(support == false) {
				var type = jQuery(this).attr('type');
				try {
					support = document.createElement('video').canPlayType(type);
					if(support == &quot;&quot;) {
						support = false;
					}
				} catch (e) {
					// Do nothing
				}
			}
		} )
		if(support == false) {
			jQuery(this).children('source').remove();
			jQuery(this).children().insertBefore(this);
			jQuery(this).remove();
		}
	}
)

jQuery('audio').each(function() {
		var support = false;
		jQuery(this).children('source').each(function() {
			if(support == false) {
				var type = jQuery(this).attr('type');
				try {
					support = !!document.createElement('audio').canPlayType(type);
					if(support == &quot;&quot;) {
						support = false;
					}
				} catch (e) {
					// Do nothing
				}
			}
		} )
		if(support == false) {
			jQuery(this).children('source').remove();
			jQuery(this).children().insertBefore(this);
			jQuery(this).remove();
		}
	}
)</pre>
<p>The script does not care about the class name or the id, all it cares about is the element (video and audio) and the type attribute in source element.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;bm_description=HTML5+Video+and+Audio+Force-Fallback+Javascript&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=HTML5+Video+and+Audio+Force-Fallback+Javascript+-+http://b2l.me/anhgyu&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/&amp;title=HTML5+Video+and+Audio+Force-Fallback+Javascript" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/31/html5-video-and-audio-force-fallback-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First VLog in awhile!</title>
		<link>http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/</link>
		<comments>http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 23:34:52 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1600</guid>
		<description><![CDATA[No video playback capabilities, please download the video below Download Video: Closed Format: MP4 Open Format: WebM Yes I was interrupted, I was going to say something at the end and I thought ah forget it. Share this on del.icio.us Digg this! &#8230; <a href="http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="480"  title="First VLog in awhile"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/CJ_Vlog_2010-08-29\/Capture_20100828.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/CJ_Vlog_2010-08-29\/Capture_20100828.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.jpg" width="640" height="480" title="First VLog in awhile" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/CJ_Vlog_2010-08-29/Capture_20100828.webm">WebM</a> </p> </object>
<p>Yes I was interrupted, I was going to say something at the end and I thought ah forget it.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;bm_description=First+VLog+in+awhile%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=First+VLog+in+awhile%21+-+http://b2l.me/ams6jz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/&amp;title=First+VLog+in+awhile%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/29/first-vlog-in-awhile/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Metroid Other M</title>
		<link>http://cj-jackson.com/2010/08/25/metroid-other-m/</link>
		<comments>http://cj-jackson.com/2010/08/25/metroid-other-m/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 12:37:08 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Metroid]]></category>
		<category><![CDATA[Wii]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1559</guid>
		<description><![CDATA[Too sexy not to include.  It just a shame I don&#8217;t own a Wii. No video playback capabilities, please download the video below Download Video: Closed Format: MP4 Open Format: WebM Share this on del.icio.us Digg this! Post on Google Buzz Add &#8230; <a href="http://cj-jackson.com/2010/08/25/metroid-other-m/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Too sexy not to include.  It just a shame I don&#8217;t own a Wii.</p>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"  title="Metroid Other M Trailer"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Metroid_Other_M_60_Commercial\/Metroid_Other_M_60_Commercial.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Metroid_Other_M_60_Commercial\/Metroid_Other_M_60_Commercial.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.jpg" width="640" height="368" title="Metroid Other M Trailer" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Metroid_Other_M_60_Commercial/Metroid_Other_M_60_Commercial.webm">WebM</a> </p> </object>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;bm_description=Metroid+Other+M&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/25/metroid-other-m/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Metroid+Other+M+-+http://b2l.me/akwtbn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/25/metroid-other-m/&amp;title=Metroid+Other+M" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/25/metroid-other-m/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change of Fonts</title>
		<link>http://cj-jackson.com/2010/08/22/change-of-fonts/</link>
		<comments>http://cj-jackson.com/2010/08/22/change-of-fonts/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 15:48:13 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[font]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1542</guid>
		<description><![CDATA[I have got tired of those so called web standard fonts, or in other words the font that are installed on a majority of computer systems such as Arial or the dreaded Verdana (it takes up alot of space), gladly things have &#8230; <a href="http://cj-jackson.com/2010/08/22/change-of-fonts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have got tired of those so called web standard fonts, or in other words the font that are installed on a majority of computer systems such as Arial or the dreaded Verdana (it takes up alot of space), gladly things have change now, majority of web browsers have added support for CSS &#8216;@font-face&#8217;, which allows web designers to add their own font; the only downside is that there is not a single format that will work on all platforms, for example TrueType works well for Windows browsers, WOFF  is a newer format and is currently supported by Firefox 3.6+, will be supported by Google Chrome and Apple Safari and technical preview of Internet Explorer 9, WOFF is very similar to EOF but is compressed and lightweight.  Internet Explorer 6 and above support EOF, while Chrome, Safari and Opera support a straight TrueType and OpenType font, but Mobile Safari only support SVG font, which applies to iPod Touch, iPhone and iPad.</p>
<h1>Use your own font?</h1>
<p>Check out <a href="http://www.fontsquirrel.com/fontface/generator">http://www.fontsquirrel.com/fontface/generator</a></p>
<p><strong>Update: </strong>I have also tested this within Ubuntu, the only different between Windows and Ubuntu was the way how the font is anti-aliased, putting that aside, it was fairly consistent between the two and that one thing that important to web designers, consistency, I guess that would be one advantage of supplying your own font.  I&#8217;m pretty sure the Mac would be pretty similar to the Ubuntu way.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;bm_description=Change+of+Fonts&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/22/change-of-fonts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Change+of+Fonts+-+http://b2l.me/aj7nj9&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/22/change-of-fonts/&amp;title=Change+of+Fonts" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/22/change-of-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pair of Swords</title>
		<link>http://cj-jackson.com/2010/08/17/pair-of-swords/</link>
		<comments>http://cj-jackson.com/2010/08/17/pair-of-swords/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 19:20:43 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[pair]]></category>
		<category><![CDATA[swords]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1537</guid>
		<description><![CDATA[Illustrator isn&#8217;t hard as anybody thinks, you just have to try, trust me! Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? &#8230; <a href="http://cj-jackson.com/2010/08/17/pair-of-swords/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1538" title="Pair of Sword" src="http://cj-jackson.com/wp-content/uploads/2010/08/pairofsword.png" alt="" width="603" height="434" /></p>
<p>Illustrator isn&#8217;t hard as anybody thinks, you just have to try, trust me! <img src='http://cj-jackson.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;bm_description=Pair+of+Swords&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/17/pair-of-swords/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Pair+of+Swords+-+http://b2l.me/ahz8yf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/17/pair-of-swords/&amp;title=Pair+of+Swords" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/17/pair-of-swords/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monday Night Combat (720p HD)</title>
		<link>http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/</link>
		<comments>http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 20:12:31 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[720p]]></category>
		<category><![CDATA[Game Trailer]]></category>
		<category><![CDATA[Monday Night Combat]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1530</guid>
		<description><![CDATA[The game looks like fun actually, sadly I don&#8217;t think I will get the time to play as I hardly have the time for XBox 360 and mostly I play games on my PC, it just ashamed that this game &#8230; <a href="http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The game looks like fun actually, sadly I don&#8217;t think I will get the time to play as I hardly have the time for XBox 360 and mostly I play games on my PC, it just ashamed that this game is not going to be available on the PC.</p>
<h1>The Trailer</h1>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/Debut_Trailer.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/Debut_Trailer.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.jpg" width="640" height="368"  controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Debut_Trailer.webm">WebM</a> </p> </object>
<h1>New Laser Shaver</h1>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/LaseRazor_Commercial.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/LaseRazor_Commercial.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.jpg" width="640" height="368"  controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/LaseRazor_Commercial.webm">WebM</a> </p> </object>
<h1>Ammo Mule</h1>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/Ammo_Mule_Trailer.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Monday_Night_Combat\/Ammo_Mule_Trailer.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.jpg" width="640" height="368"  controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Monday_Night_Combat/Ammo_Mule_Trailer.webm">WebM</a> </p> </object>
<p>Credit goes to <a href="http://www.facebook.com/bondbill">Thomas Williams</a> for the videos.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;bm_description=Monday+Night+Combat+%28720p+HD%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Monday+Night+Combat+%28720p+HD%29+-+http://b2l.me/ahsq8t&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/&amp;title=Monday+Night+Combat+%28720p+HD%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/16/monday-night-combat-720p-hd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bioshock Infinite (720p HD)</title>
		<link>http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/</link>
		<comments>http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 00:24:51 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[720p]]></category>
		<category><![CDATA[Bioshock]]></category>
		<category><![CDATA[Trailer]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1505</guid>
		<description><![CDATA[I like the idea of having a new setup, have it in the sky rather then a underwater utopia. Even the Big Daddy seems different, you&#8217;ll notice the heart! No video playback capabilities, please download the video below Download Video: Closed &#8230; <a href="http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I like the idea of having a new setup, have it in the sky rather then a underwater utopia.  Even the Big Daddy seems different, you&#8217;ll notice the heart!</p>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"  title="Bioshock Infinite"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Bioshock_Infinite.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/Bioshock_Infinite.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.jpg" width="640" height="368" title="Bioshock Infinite" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.webm" type='video/webm; codecs="vp8, vorbis"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/08/Bioshock_Infinite.webm">WebM</a> </p> </object>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;bm_description=Bioshock+Infinite+%28720p+HD%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bioshock+Infinite+%28720p+HD%29+-+http://b2l.me/ag6qeb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/&amp;title=Bioshock+Infinite+%28720p+HD%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/14/bioshock-infinite-720p-hd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>High Definition Video (720p)</title>
		<link>http://cj-jackson.com/2010/08/11/high-definition-video-720p/</link>
		<comments>http://cj-jackson.com/2010/08/11/high-definition-video-720p/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 14:14:37 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1488</guid>
		<description><![CDATA[Just testing that all, this should work with Safari, iPad, iPhone 4(due to bug http://rakaz.nl/2010/06/problems-with-html5-video-codec-detection.html) and for other browsers Flash is required for proper fullscreen support!  Make sure you click the fullscreen button. No video playback capabilities, please download the video &#8230; <a href="http://cj-jackson.com/2010/08/11/high-definition-video-720p/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just testing that all, this should work with <del datetime="2010-08-26T11:19:14+00:00">Safari, iPad, iPhone 4</del>(due to bug <a href="http://rakaz.nl/2010/06/problems-with-html5-video-codec-detection.html">http://rakaz.nl/2010/06/problems-with-html5-video-codec-detection.html</a>) and for other browsers Flash is required for proper fullscreen support!  Make sure you click the fullscreen button.</p>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"  title="Big Buck Bunny"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/big_buck_bunny.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/08\/big_buck_bunny.hd.main.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":true,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" width="640" height="368" title="Big Buck Bunny" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv" type='video/ogg; codecs="theora, vorbis"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm">WebM</a> <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv">OGG</a> </p> </object>
<p><span style="color: #000000;"><strong>Update:</strong></span> When adding this video, I also discovered a fatal error, I didn&#8217;t notice this easily because the testing environment was running PHP 5.3, while the production environment (this blog) was running PHP 5.2.  The function &#8220;array_replace_recursive&#8221; exists in 5.3 but does not exist in PHP 5.2, anyway I have fixed the problem.  As you can see from above it running properly.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;bm_description=High+Definition+Video+%28720p%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/11/high-definition-video-720p/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=High+Definition+Video+%28720p%29+-+http://b2l.me/agkjcb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/11/high-definition-video-720p/&amp;title=High+Definition+Video+%28720p%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/11/high-definition-video-720p/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>HTML5 Audio and Video Plugins for WordPress!</title>
		<link>http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/</link>
		<comments>http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 15:58:52 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1484</guid>
		<description><![CDATA[Talking about HTML5 video and audio plugin in general. <a href="http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have noticed that there are quite a few HTML5 audio and video plugins for wordpress, I list five examples here,</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/degradable-html5-audio-and-video/">Degradable HTML5 audio and video</a></li>
<li><a href="http://wordpress.org/extend/plugins/external-video-for-everybody/">External &#8220;Video for Everybody&#8221;</a></li>
<li><a href="http://wordpress.org/extend/plugins/projekktor-html5-video-extensions-and-shortcodes/">Projekktor Video Tag Extension</a></li>
<li><a href="http://wordpress.org/extend/plugins/universal-video/">Universal Video</a></li>
<li><a href="http://wordpress.org/extend/plugins/html5-and-flash-video-player/">HTML5 and Flash Video Player</a></li>
</ul>
<p>What all those plugin have in common is that they all focus on efficiency rather then flexiblty, I haven&#8217;t seen any of them use Object Oriented concept, just plain old functional programming in PHP which often result in very messy coding sometimes without comment, practically making the code even harder to understand.  With Object Oriented PHP I can easily produce code with self-explanatory method names which should make use of comment unnecessary, I can also produce reusable code which can make integrating one plugin to another with less hassel and I actually have done something just like that.  I have produce two WordPress plugins that take advantage of the Object Oritented concept as well other concept such as JSON (Projekktor does use JSON but in a different way) within syntax.  The two WordPress plugins are,</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wphtml5player/">HTML5 Audio and Video Framework for WordPress</a></li>
<li><a href="http://wordpress.org/extend/plugins/wpautoembed/">Autoembed Plugin for WordPress</a></li>
</ul>
<p>They both support integration with each other, I can use the &#8220;Autoembed Plugin for WordPress&#8221; to produce a YouTube object code with html5 video fallback thanks to the integration support it has with &#8220;HTML5 Audio and Video Framework for WordPress&#8221;, which can be used to do vice versa, but the framework also has comprehensive support for Flowplayer, except for the jQuery part because I wanted a pure PHP/HTML solution because I hate the idea of using JavaScript to embed Flash Video, yes the framework can also produce the Flowplayer embed code with HTML5 Video or Audio fallback, enhancing support for mobile devices.</p>
<p>The Framework also support all attribute for HTML5 Video and Audio, even if the attribute is not on the HTML5 specification, as for the others the attribute are quite limited compared.</p>
<p>To be really honest I don&#8217;t think I would find a similar WordPress plugin that comes just as flexible or complete as mine.  If you do come across one? contact me!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;bm_description=HTML5+Audio+and+Video+Plugins+for+Wordpress%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=HTML5+Audio+and+Video+Plugins+for+Wordpress%21+-+http://b2l.me/af494f&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/&amp;title=HTML5+Audio+and+Video+Plugins+for+Wordpress%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/09/html5-audio-and-video-plugins-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Analysis of YouTube iFrame Embed</title>
		<link>http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/</link>
		<comments>http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:25:57 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[iFrame]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1445</guid>
		<description><![CDATA[Recently YouTube developers have came up with a new way to embed YouTube videos, in order to bring mobile compatibility, the only good thing about this new method is that it is simple for novice users, but the bad things &#8230; <a href="http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently YouTube developers have came up with a <a href="http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html">new way to embed YouTube videos</a>, in order to bring mobile compatibility, the only good thing about this new method is that it is simple for novice users, but the bad things are is that it&#8217;s not flexible as html object and is not efficient client side neither, yes I have proof below.<a href="http://cj-jackson.com/wp-content/uploads/2010/08/codeIsRediculous.png"><img class="aligncenter size-medium wp-image-1446" title="Code in YouTube iFrame." src="http://cj-jackson.com/wp-content/uploads/2010/08/codeIsRediculous-640x425.png" alt="" width="640" height="425" /></a>Inside the iframe not only that the code is clearly long, it is also clearly relying heavily on JavaScript as well, the issue with JavaScript is that it is a client-side language that can be disabled client-side even on mobile devices as well but I&#8217;m pretty sure that Google is already aware of that anyway.  The other problem with the iframe is that it currently limited to YouTube.  Also iFrame was removed from HTML5 specification.</p>
<p>There are two other method to YouTube iFrame that will also bring mobile compatibility by providing fallback in html object, is not limited to YouTube, does not rely on JavaScript and passes HTML5 specification.</p>
<h2>Link and Image as HTML Object Fallback.</h2>
<object   type="application/x-shockwave-flash"  data="http://www.youtube.com/v/C41IBSKGF4w&amp;rel=0&amp;fs=1&amp;hd=1"  width="640"  height="385"> <param name="movie" value="http://www.youtube.com/v/C41IBSKGF4w&amp;rel=0&amp;fs=1&amp;hd=1" /><param name="quality" value="high" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><param name="autoplay" value="false" /><param name="autostart" value="false" /><param name="flashvars" value="" />  <!-- Generated by AutoEmbed (http://autoembed.com) --><a href="http://www.youtube.com/watch?v=C41IBSKGF4w&amp;playnext=1&amp;videos=6C8Rmi4R_k0&amp;feature=sub"><img src="http://cj-jackson.com/wp-content/uploads/2010/08/annoyingorange.jpg" title="YouTube" alt="poster" /></a></object>
<p>The only problem with this method is that it can steal traffic from your site especially with mobile devices such as the iPhone.</p>
<h2>HTML5 Video as HTML Object Fallback.</h2>
<object   type="application/x-shockwave-flash"  data="http://www.youtube.com/v/XSGBVzeBUbk&amp;rel=0&amp;fs=1&amp;hd=1"  width="640"  height="385"> <param name="movie" value="http://www.youtube.com/v/XSGBVzeBUbk&amp;rel=0&amp;fs=1&amp;hd=1" /><param name="quality" value="high" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" /><param name="autoplay" value="false" /><param name="autostart" value="false" /><param name="flashvars" value="" />  <!-- Generated by AutoEmbed (http://autoembed.com) --> <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" width="640" height="368" title="Big Buck Bunny" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv" type='video/ogg; codecs="theora, vorbis"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm">WebM</a> <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv">OGG</a> </p> </object>
<p>The problem with this method is bandwidth consideration and where to get the sources for HTML5 Video.</p>
<p>Anyway I hope this was an interesting read, have a nice day. =)</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;bm_description=Analysis+of+YouTube+iFrame+Embed&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Analysis+of+YouTube+iFrame+Embed+-+http://b2l.me/affd8t&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/&amp;title=Analysis+of+YouTube+iFrame+Embed" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/06/analysis-of-youtube-iframe-embed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparison between VP8 and h.264 baseline</title>
		<link>http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/</link>
		<comments>http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 19:35:29 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[h.264]]></category>
		<category><![CDATA[vp8]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1415</guid>
		<description><![CDATA[Comparison of vp8 and h.264 video format. <a href="http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>VP8</h3>
<p><img src="http://cj-jackson.com/wp-content/uploads/2010/08/080210_1935_Comparisonb1.jpg" alt="" /></p>
<h3>h.264 baseline</h3>
<p><img src="http://cj-jackson.com/wp-content/uploads/2010/08/080210_1935_Comparisonb2.jpg" alt="" /></p>
<p>Well I have to say I&#8217;m quite impressed with the VP8 format, the video quality of that format is quite comparable to the h.264 baseline format, I have notice that there are a few minor quirks with WebM, but still I think it&#8217;s good for the web and I&#8217;m sure that Google will iron out those minor quirks.  But anyway WebM is looking awesome right now, but now for the video size comparison with the link to the video.</p>
<ul>
<li><a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v"><span style="text-decoration: underline;">M4V</span></a> &#8211; 640&#215;368 h.264 at 500kbits (x264), LC-AAC 128kbits (FAAC) – <strong>44.9MB</strong> (Blame FAAC).</li>
<li><a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm"><span style="text-decoration: underline;">WebM</span></a> &#8211; 640&#215;368 VP8 at 500kbits, Vorbis 96kbits (AoTuV) – <strong>43.5MB</strong> (Gotta Love AoTuV).</li>
</ul>
<p>Yes it is possible to archive a slightly smaller filesize in WebM compared to M4V at the same video bitrate, thanks to <a href="http://www.geocities.jp/aoyoume/aotuv/"><span style="text-decoration: underline;">AoTuV</span></a> but 96kbits is actually an overkill, AoTuV post beta 5.7 can achieve transparent audio around 48-64kbits, beating LC-AAC, HE-AAC is better at that bitrate but too complex and don&#8217;t mix well with video due to compatibility issues with mobile devices.</p>
<p>I have used <a href="http://handbrake.fr/">Handbrake</a> to encode m4v and mkv (h.264 60% constants quality and vorbis (AoTuV)), I use the latest build of <a href="http://ffmpeg.arrozcru.org/autobuilds/">FFMpeg</a> to encode mkv to WebM (h.264 to vp8, audio on copy).</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;bm_description=Comparison+between+VP8+and+h.264+baseline&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Comparison+between+VP8+and+h.264+baseline+-+http://b2l.me/aehynh&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/&amp;title=Comparison+between+VP8+and+h.264+baseline" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/08/02/comparison-between-vp8-and-h-264-baseline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm" length="45662139" type="video/webm" />
<enclosure url="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v" length="47093263" type="video/mp4" />
		</item>
		<item>
		<title>Tyke Barking</title>
		<link>http://cj-jackson.com/2010/07/27/tyke-barking/</link>
		<comments>http://cj-jackson.com/2010/07/27/tyke-barking/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 21:23:09 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1365</guid>
		<description><![CDATA[No video playback capabilities, please download the video below Download Video: Closed Format: MP4 Open Format: WebM OGG As the title says! Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on &#8230; <a href="http://cj-jackson.com/2010/07/27/tyke-barking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="480"  title="Tyke the dog barking"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/tyke-barking.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/tyke-barking.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.jpg" width="640" height="480" title="Tyke the dog barking" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.ogv" type='video/ogg; codecs="theora, vorbis"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.webm">WebM</a> <a href="http://cj-jackson.com/wp-content/uploads/2010/07/tyke-barking.ogv">OGG</a> </p> </object>
<p>As the title says!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;bm_description=Tyke+Barking&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/07/27/tyke-barking/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Tyke+Barking+-+http://b2l.me/ac4vqy&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/07/27/tyke-barking/&amp;title=Tyke+Barking" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/07/27/tyke-barking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Player Plugin for WordPress</title>
		<link>http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/</link>
		<comments>http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:10:50 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[big buck bunny]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1357</guid>
		<description><![CDATA[I been working on the HTML5 Player Plugin for WordPress, it&#8217;s started off as a simple plugin that used quicktags &#91;video:url.m4v&#124;url.ogv image.jpg width height&#93; and there were no advanced options until I decided to disable &#8220;SWFObject&#8221; by default after that &#8230; <a href="http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter size-full wp-image-1358" title="HTML5 Player Logo" src="http://cj-jackson.com/wp-content/uploads/2010/07/html5playerlogo.png" alt="Film Strip, Music note in the middle of the Strip, with two arrows on the side." width="559" height="235" /></p>
<p style="text-align: left;">I been working on the <a href="http://wordpress.org/extend/plugins/wphtml5player/">HTML5 Player Plugin for WordPress</a>, it&#8217;s started off as a simple plugin that used quicktags <code>&#91;video:url.m4v|url.ogv image.jpg width height&#93;</code> and there were no advanced options until I decided to disable &#8220;SWFObject&#8221; by default after that I started having a bit of ideas, releasing different version within the first week (0.9.2, 0.9.3, 0.9.4), then added quite a few advanced options enough to allow users or client to to integrate JavaScript libraries to the &lt;video&gt; or &lt;audio&gt; tag and then released that as well also within the first week (1.0.0, 1.0.1).  I honestly think I have progressed a bit too quickly, heck I even made a bloody logo, you can guess where those bloody arrows have came from?  If you thought the logo came from &lt;video&gt; or &lt;audio&gt;, then you thought correctly because that what the logo was based on. I hope I didn&#8217;t cause disruption to other bloggers, if I did I apologise about that.  Anyway I just leave a video behind for you guys and girls to watch, so bye bye, see ya later!</p>
<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="368"  title="Big Buck Bunny"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/big_buck_bunny.jpg"},{"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/big_buck_bunny.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" width="640" height="368" title="Big Buck Bunny" controls preload="none" > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm" type='video/webm; codecs="vp8, vorbis"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.main.m4v" type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv" type='video/ogg; codecs="theora, vorbis"' /> <img src="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.main.m4v">MP4 (Main)</a> <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.m4v">MP4</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.webm">WebM</a> <a href="http://cj-jackson.com/wp-content/uploads/2010/07/big_buck_bunny.ogv">OGG</a> </p> </object>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;bm_description=HTML5+Player+Plugin+for+Wordpress&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=HTML5+Player+Plugin+for+Wordpress+-+http://b2l.me/acvxt8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/&amp;title=HTML5+Player+Plugin+for+Wordpress" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/07/26/html5-player-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Scorpions Group Logo</title>
		<link>http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/</link>
		<comments>http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 13:45:11 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[scorpions]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1301</guid>
		<description><![CDATA[No audio playback capabilities, please download the audio belowDownload Audio: Closed Format: AAC Open Format: OGG &#8220;Just a logo I created for the facebook group, it took me about one hour to complete, I think emsley was chuffed about this &#8230; <a href="http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1302  aligncenter" title="The Scorpions" src="http://cj-jackson.com/wp-content/uploads/2010/07/Scorpions.png" alt="The Scorpions Strength &amp; Honour" width="531" height="531" /></p>
<div style="text-align: center;"><object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="400"  height="30"  title="Audio Description"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='false' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"plugins":{"controls":{"height":30,"autoHide":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000","fullscreen":false}},"clip":{"autoPlay":false,"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/Scorpions.m4a"},"playlist":[{"autoPlay":false,"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/Scorpions.m4a"}],"key":"#$4riu8oe5lu7iegiebro","logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"},"play":{"opacity":0}}' />   <audio  title="Audio Description" controls > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/Scorpions.ogg" type="audio/ogg" /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/Scorpions.m4a" type="audio/aac" /> No audio playback capabilities, please download the audio below<br /><strong>Download Audio:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/Scorpions.m4a">AAC</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/Scorpions.ogg">OGG</a>  <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </audio>  </object></div>
<p style="text-align: left;"><em>&#8220;Just a logo I created for the facebook group, it took me about one hour to complete, I think emsley was chuffed about this to be honest!&#8221;</em></p>
<p style="text-align: left;">


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;bm_description=The+Scorpions+Group+Logo&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+Scorpions+Group+Logo+-+http://b2l.me/9gaAs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/&amp;title=The+Scorpions+Group+Logo" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/07/07/the-scorpions-group-logo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Motorbike Video Test</title>
		<link>http://cj-jackson.com/2010/07/04/motorbike-video-test/</link>
		<comments>http://cj-jackson.com/2010/07/04/motorbike-video-test/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 22:44:07 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[video test]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1260</guid>
		<description><![CDATA[No video playback capabilities, please download the video below Download Video: Closed Format: MP4 Open Format: OGG Just testing HTML5 video again, I finally found a way to make it work with quite a few browsers. Audio Test No audio &#8230; <a href="http://cj-jackson.com/2010/07/04/motorbike-video-test/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="640"  height="480"  title="Motorbike"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='true' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"playlist":[{"url":"http:\/\/file.therockerscabin.com\/video\/motorbike\/motorbike.jpg"},{"url":"http:\/\/file.therockerscabin.com\/video\/motorbike\/motorbike.m4v","autoPlay":false,"scaling":"fit"}],"plugins":{"controls":{"fullscreen":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000"}},"canvas":{"backgroundGradient":"none"},"key":"#$4riu8oe5lu7iegiebro","play":{"url":"play.png","width":91,"height":108},"logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"}}' />   <!-- Video for Everybody, Kroc Camen of Camen Design --><video  poster="http://file.therockerscabin.com/video/motorbike/motorbike.jpg" width="640" height="480" title="Motorbike" controls preload="none" > <source src="http://file.therockerscabin.com/video/motorbike/motorbike.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' /><source src="http://file.therockerscabin.com/video/motorbike/motorbike.ogv" type='video/ogg; codecs="theora, vorbis"' /> <img src="http://file.therockerscabin.com/video/motorbike/motorbike.jpg" /><br />No video playback capabilities, please download the video below<br /> <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </video> <p><strong>Download Video:</strong> Closed Format: <a href="http://file.therockerscabin.com/video/motorbike/motorbike.m4v">MP4</a> Open Format: <a href="http://file.therockerscabin.com/video/motorbike/motorbike.ogv">OGG</a> </p> </object>
<p style="text-align: left;">Just testing HTML5 video again, I finally found a way to make it work with quite a few browsers.</p>
<h2>Audio Test</h2>
<div style="text-align: center;"><object   type="application/x-shockwave-flash"  data="http://cj-jackson.com/flowplayer/flowplayer.swf"  width="400"  height="30"  title="Ozzy Osbourne: Let It Die"> <param name="movie" value='http://cj-jackson.com/flowplayer/flowplayer.swf' /><param name="allowfullscreen" value='false' /><param name="cachebusting" value='true' /><param name="bgcolor" value='#000000' /><param name="flashvars" value='config={"plugins":{"controls":{"height":30,"autoHide":false,"backgroundColor":"transparent","backgroundGradient":"none","sliderColor":"#FFFFFF","sliderBorder":"1.5px solid rgba(160,160,160,0.7)","volumeSliderColor":"#FFFFFF","volumeBorder":"1.5px solid rgba(160,160,160,0.7)","timeColor":"#ffffff","durationColor":"#535353","tooltipColor":"rgba(255, 255, 255, 0.7)","tooltipTextColor":"#000000","fullscreen":false}},"clip":{"autoPlay":false,"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/Ozzy_Osbourne-Scream-Let_It_Die.m4a"},"playlist":[{"autoPlay":false,"url":"http:\/\/cj-jackson.com\/wp-content\/uploads\/2010\/07\/Ozzy_Osbourne-Scream-Let_It_Die.m4a"}],"key":"#$4riu8oe5lu7iegiebro","logo":{"url":"logo.png","fullscreenOnly":true,"linkUrl":"http:\/\/cj-jackson.com"},"play":{"opacity":0}}' />   <audio  title="Ozzy Osbourne: Let It Die" controls > <source src="http://cj-jackson.com/wp-content/uploads/2010/07/Ozzy_Osbourne-Scream-Let_It_Die.ogg" type="audio/ogg" /><source src="http://cj-jackson.com/wp-content/uploads/2010/07/Ozzy_Osbourne-Scream-Let_It_Die.m4a" type="audio/aac" /> No audio playback capabilities, please download the audio below<br /><strong>Download Audio:</strong> Closed Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/Ozzy_Osbourne-Scream-Let_It_Die.m4a">AAC</a> Open Format: <a href="http://cj-jackson.com/wp-content/uploads/2010/07/Ozzy_Osbourne-Scream-Let_It_Die.ogg">OGG</a>  <!-- Generated by HTML5 Player Plugin (http://code.google.com/p/html5videoplayer) --> </audio>  </object></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;bm_description=Motorbike+Video+Test&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/07/04/motorbike-video-test/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Motorbike+Video+Test+-+http://b2l.me/8vdz2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/07/04/motorbike-video-test/&amp;title=Motorbike+Video+Test" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/07/04/motorbike-video-test/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
<enclosure url="http://file.therockerscabin.com/video/motorbike/motorbike.ogv" length="5441476" type="video/ogg" />
<enclosure url="http://file.therockerscabin.com/video/motorbike/motorbike.m4v" length="5289362" type="video/mp4" />
		</item>
		<item>
		<title>Fender Stratocaster (Vertical and Larger)</title>
		<link>http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/</link>
		<comments>http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:14:48 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1256</guid>
		<description><![CDATA[Click guitar to see larger version. =) Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this &#8230; <a href="http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://cj-jackson.com/wp-content/uploads/2010/06/guitar2.png"><img class="aligncenter size-medium wp-image-1257" title="Fender Stratocaster" src="http://cj-jackson.com/wp-content/uploads/2010/06/guitar2-217x640.png" alt="" width="217" height="640" /></a>Click guitar to see larger version. =)</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;bm_description=Fender+Stratocaster+%28Vertical+and+Larger%29&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fender+Stratocaster+%28Vertical+and+Larger%29+-+http://b2l.me/4x5gp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/&amp;title=Fender+Stratocaster+%28Vertical+and+Larger%29" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/06/19/fender-stratocasta-vertical-and-larger/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stop</title>
		<link>http://cj-jackson.com/2010/06/18/stop/</link>
		<comments>http://cj-jackson.com/2010/06/18/stop/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 17:00:06 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Stop]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1252</guid>
		<description><![CDATA[Doesn&#8217;t matter where you go, those stop sign are bloody everywhere!  Good thing as well! Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon &#8230; <a href="http://cj-jackson.com/2010/06/18/stop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1253" title="Stop" src="http://cj-jackson.com/wp-content/uploads/2010/06/stop.png" alt="Stop, Who goes There?" width="581" height="581" />Doesn&#8217;t matter where you go, those stop sign are bloody everywhere!  Good thing as well!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/06/18/stop/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/06/18/stop/&amp;bm_description=Stop&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/06/18/stop/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Stop+-+http://b2l.me/4qdsc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/06/18/stop/&amp;title=Stop" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/06/18/stop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Human Skull</title>
		<link>http://cj-jackson.com/2010/06/02/human-skull/</link>
		<comments>http://cj-jackson.com/2010/06/02/human-skull/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 11:03:14 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Skull]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1239</guid>
		<description><![CDATA[My attempt of a human skull. Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on &#8230; <a href="http://cj-jackson.com/2010/06/02/human-skull/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter size-full wp-image-1240" title="Human Skull" src="http://cj-jackson.com/wp-content/uploads/2010/06/human-skull.png" alt="" width="406" height="565" />My attempt of a human skull.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/06/02/human-skull/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/06/02/human-skull/&amp;bm_description=Human+Skull&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/06/02/human-skull/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Human+Skull+-+http://b2l.me/ykehz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/06/02/human-skull/&amp;title=Human+Skull" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/06/02/human-skull/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Love is the law.</title>
		<link>http://cj-jackson.com/2010/05/28/love-is-the-law/</link>
		<comments>http://cj-jackson.com/2010/05/28/love-is-the-law/#comments</comments>
		<pubDate>Fri, 28 May 2010 16:21:15 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[Love]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1236</guid>
		<description><![CDATA[That would make a good t-shirt or maybe even a tattoo. Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it &#8230; <a href="http://cj-jackson.com/2010/05/28/love-is-the-law/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1237" title="Love Is The Law" src="http://cj-jackson.com/wp-content/uploads/2010/05/loveisthelaw.png" alt="" width="585" height="501" /></p>
<p>That would make a good t-shirt or maybe even a tattoo. <img src='http://cj-jackson.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;bm_description=Love+is+the+law.&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/05/28/love-is-the-law/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Love+is+the+law.+-+http://b2l.me/xh2k9&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/05/28/love-is-the-law/&amp;title=Love+is+the+law." rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/05/28/love-is-the-law/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Hello!</title>
		<link>http://cj-jackson.com/2010/05/16/hello/</link>
		<comments>http://cj-jackson.com/2010/05/16/hello/#comments</comments>
		<pubDate>Sun, 16 May 2010 17:43:23 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1231</guid>
		<description><![CDATA[Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Tweet This! Add this to &#8230; <a href="http://cj-jackson.com/2010/05/16/hello/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-1232" title="Hello!" src="http://cj-jackson.com/wp-content/uploads/2010/05/hello-640x258.png" alt="" width="640" height="258" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/05/16/hello/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/05/16/hello/&amp;bm_description=Hello%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/05/16/hello/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Hello%21+-+http://b2l.me/uwgws&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/05/16/hello/&amp;title=Hello%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/05/16/hello/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Smoke</title>
		<link>http://cj-jackson.com/2010/05/12/dont-smoke/</link>
		<comments>http://cj-jackson.com/2010/05/12/dont-smoke/#comments</comments>
		<pubDate>Wed, 12 May 2010 16:41:23 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Smoking]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1223</guid>
		<description><![CDATA[Took me a bit of time to figure out how to overlap the ring, all it was is a bit of maths, mostly subtraction.  Anyway hopefully this should stop people from smoking! Share this on del.icio.us Digg this! Post on &#8230; <a href="http://cj-jackson.com/2010/05/12/dont-smoke/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter size-full wp-image-1224" title="Don't Smoke! Make Love!" src="http://cj-jackson.com/wp-content/uploads/2010/05/dontsmoke.png" alt="" width="642" height="548" />Took me a bit of time to figure out how to overlap the ring, all it was is a bit of maths, mostly subtraction.  Anyway hopefully this should stop people from smoking!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;bm_description=Don%27t+Smoke&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/05/12/dont-smoke/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Don%27t+Smoke+-+http://b2l.me/t49cB&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/05/12/dont-smoke/&amp;title=Don%27t+Smoke" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/05/12/dont-smoke/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Have a nice day!</title>
		<link>http://cj-jackson.com/2010/05/10/have-a-nice-day/</link>
		<comments>http://cj-jackson.com/2010/05/10/have-a-nice-day/#comments</comments>
		<pubDate>Mon, 10 May 2010 18:13:39 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1220</guid>
		<description><![CDATA[Always like to paint a pretty picture! Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this &#8230; <a href="http://cj-jackson.com/2010/05/10/have-a-nice-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1221" title="Have a Nice Day!" src="http://cj-jackson.com/wp-content/uploads/2010/05/hillandsky.png" alt="" width="640" height="479" />Always like to paint a pretty picture!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;bm_description=Have+a+nice+day%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/05/10/have-a-nice-day/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Have+a+nice+day%21+-+http://b2l.me/tsjqm&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/05/10/have-a-nice-day/&amp;title=Have+a+nice+day%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/05/10/have-a-nice-day/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fender Stratocaster</title>
		<link>http://cj-jackson.com/2010/04/30/fender-stratocaster/</link>
		<comments>http://cj-jackson.com/2010/04/30/fender-stratocaster/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 18:34:58 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Fender Stratocaster]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1216</guid>
		<description><![CDATA[It took about an hour to draw this up, I hope you enjoy the image Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon &#8230; <a href="http://cj-jackson.com/2010/04/30/fender-stratocaster/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1217" title="Fender Stratocaster" src="http://cj-jackson.com/wp-content/uploads/2010/04/guitar.png" alt="" width="611" height="472" />It took about an hour to draw this up, I hope you enjoy the image</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;bm_description=Fender+Stratocaster&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/04/30/fender-stratocaster/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fender+Stratocaster+-+http://b2l.me/r5zdg&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/04/30/fender-stratocaster/&amp;title=Fender+Stratocaster" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/04/30/fender-stratocaster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Smiling Sunflower</title>
		<link>http://cj-jackson.com/2010/04/21/a-smiling-sunflower/</link>
		<comments>http://cj-jackson.com/2010/04/21/a-smiling-sunflower/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 18:14:16 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Sunflower]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1205</guid>
		<description><![CDATA[Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Tweet This! Add this to &#8230; <a href="http://cj-jackson.com/2010/04/21/a-smiling-sunflower/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1206" title="There nothing better then planting a smile! So cheer up =D" src="http://cj-jackson.com/wp-content/uploads/2010/04/smileplant.png" alt="" width="585" height="466" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;bm_description=A+Smiling+Sunflower&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=A+Smiling+Sunflower+-+http://b2l.me/qjfbe&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/04/21/a-smiling-sunflower/&amp;title=A+Smiling+Sunflower" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/04/21/a-smiling-sunflower/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hey look the big sweeper!</title>
		<link>http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/</link>
		<comments>http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 13:15:15 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Big Sweeper]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Sweeping Brush]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1195</guid>
		<description><![CDATA[I have recently cleaned up my blog except for the previous two post, I can fully guarantee that I got rid of all my trash talk crap. Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong &#8230; <a href="http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1196" title="The Big Sweeper" src="http://cj-jackson.com/wp-content/uploads/2010/04/cleanup.png" alt="" width="321" height="563" />I have recently cleaned up my blog except for the previous two post, I can fully guarantee that I got rid of all my trash talk crap. <img src='http://cj-jackson.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;bm_description=Hey+look+the+big+sweeper%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Hey+look+the+big+sweeper%21+-+http://b2l.me/pzths&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/&amp;title=Hey+look+the+big+sweeper%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/04/18/hey-look-the-big-sweeper/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>I Like This</title>
		<link>http://cj-jackson.com/2010/04/04/i-like-this/</link>
		<comments>http://cj-jackson.com/2010/04/04/i-like-this/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 14:37:21 +0000</pubDate>
		<dc:creator>Christopher J Jackson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[like this]]></category>
		<category><![CDATA[thumb up]]></category>

		<guid isPermaLink="false">http://cj-jackson.com/?p=1050</guid>
		<description><![CDATA[Share this on del.icio.us Digg this! Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Tweet This! Add this to &#8230; <a href="http://cj-jackson.com/2010/04/04/i-like-this/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1051" title="I Like This" src="http://cj-jackson.com/wp-content/uploads/2010/04/thumbup.png" alt="" width="422" height="565" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;bm_description=I+Like+This&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cj-jackson.com/2010/04/04/i-like-this/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=I+Like+This+-+http://b2l.me/m93p8&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://cj-jackson.com/2010/04/04/i-like-this/&amp;title=I+Like+This" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cj-jackson.com/2010/04/04/i-like-this/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
