<?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>Luke Williams</title>
	<atom:link href="http://www.lukeishere.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lukeishere.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 03 Jan 2010 18:54:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Doctor Who Site Christmas Countdown</title>
		<link>http://www.lukeishere.co.uk/the-doctor-who-site-christmas-countdown/</link>
		<comments>http://www.lukeishere.co.uk/the-doctor-who-site-christmas-countdown/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 18:47:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Doctor Who]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=339</guid>
		<description><![CDATA[Doctor Who Site Games, Christmas Countdown 2009]]></description>
			<content:encoded><![CDATA[<p><img src="/images/doctor-who-games-l.gif" alt="Doctor Who Site Games, Christmas Countdown" title="Doctor Who Site Games, Christmas Countdown" width="650"  /></p>
<p>The Doctor Who Site&#8217;s 10 day countdown to Christmas, to the Tenth Doctor&#8217;s final episodes. <a href="http://www.thedoctorwhosite.co.uk/christmas/">www.thedoctorwhosite.co.uk/christmas</a></p>
<p>For the countdown a number of flash games were created, you can see a trailer for them below</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/7_lCZJrBwqY&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7_lCZJrBwqY&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<h3>Doctor Who Games</h3>
<ul>
<li>
<a href="http://www.thedoctorwhosite.co.uk/features/daleks-bump-and-go-game/">Daleks Bump N&#8217; Go</a>
</li>
<li>
<a href="http://www.thedoctorwhosite.co.uk/features/miss-hartigan-and-the-cybermen/">Miss Hartigan and the Cybermen</a>
</li>
<li>
<a href="http://www.thedoctorwhosite.co.uk/features/the-chase-dalek-game/">The Chase Dalek Game</a>
</li>
<li>
<a href="http://www.thedoctorwhosite.co.uk/features/daleks-at-the-movies-game/">Daleks at the Movies</a>
</li>
<li>
<a href="http://www.thedoctorwhosite.co.uk/features/doctor-who-and-the-reindeer/">Doctor Who and the Reindeer</a>
</li>
<li>
<a href="http://www.thedoctorwhosite.co.uk/ecard/">New Christmas Ecards</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/the-doctor-who-site-christmas-countdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Youtube Box</title>
		<link>http://www.lukeishere.co.uk/jquery-youtube-box/</link>
		<comments>http://www.lukeishere.co.uk/jquery-youtube-box/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 19:40:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=323</guid>
		<description><![CDATA[Jquery Youtube box]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just started looking into Jquery, the Youtube box was one of the first things I made. It simply loads the video from Youtube using the video ID. You can type a custom title for the video.</p>
<p><script type="text/javascript">
jQuery(document).ready(function() {
// Loads in First Video
	jQuery(".Selected").each(function () {
		$(this).addClass("YouTubeSelect");
		var VidID1 = $(this).attr("id");
		var VidTitle = $(this).text();		
		$("#YouVidTitle").html("" + VidTitle + "");	
		jQuery("#YouTubeBox").html("<object type='application/x-shockwave-flash' style='width:560px; height:350px;' data='http://www.youtube.com/v/" + VidID1 + "&#038;hl=en&#038;fs=1&#038;'><param name='movie' value='http://www.youtube.com/v/" + VidID1 + "&#038;hl=en&#038;fs=1&#038;' /></object>");
	});
// Generates List
	jQuery("#YouVid li").each(function () {
		var VidID = $(this).attr("id");		
		var VidTitle = $(this).text();	
        $(this).html("<span><img src='http://i1.ytimg.com/vi/" + VidID + "/default.jpg' alt='" + VidTitle + "' title='" + VidTitle + "' width='120' height='90' /><small>" + VidTitle + "</small></span>");
     });
// Loads Video
	jQuery("#YouVid li").click(function () {
		$("#YouVid li").removeClass("YouTubeSelect");
		$(this).addClass("YouTubeSelect");
		var VidID1 = $(this).attr("id");	
		var VidTitle = $(this).text();		
		$("#YouVidTitle").html("" + VidTitle + "");
		$("#YouTubeBox").html("<object type='application/x-shockwave-flash' style='width:560px; height:350px;' data='http://www.youtube.com/v/" + VidID1 + "&#038;hl=en&#038;fs=1&#038;'><param name='movie' value='http://www.youtube.com/v/" + VidID1 + "&#038;hl=en&#038;fs=1&#038;' /></object>");
		return false;
	});
})
</script></p>
<style type="text/css">
#YouTubeContainer { width: 560px; font-family:Arial, Helvetica, sans-serif;  }
#YouTubeContainer h5 { width: 540px; padding:10px; background:#ececec; margin:0; font-size:20px; }
ul#YouVid, ul#YouVid li { list-style:none; padding:0; margin:0; }
ul#YouVid li { padding:10px; float:left; width:120px; text-align:center; display:block; background:#ececec; min-height:140px; }
ul#YouVid li:hover { background:#ccc; cursor:pointer; }
ul#YouVid li.YouTubeSelect { border-bottom:2px solid #666666; min-height:138px; }
ul#YouVid li img { padding:0 0 10px 0; }
ul#YouVid li small { display:block; }
</style>
<div id="YouTubeContainer">
<h5 id="YouVidTitle"></h5>
<div id="YouTubeBox">
    	Youtube Video loads in here &#8211; alternativly you can place a link to your youtube page so people can still see a link if javascript is turned off
    </div>
<ul id="YouVid">
<li id="BpWM0FNPZSs" class="Selected" >DEADLINE post-it stop motion</li>
<li id="vS2sc9-4UaI" >7&#215;7x7 Stop Motion Assembly!!</li>
<li id="qBjLW5_dGAM" >Western Spaghetti by PES</li>
<li id="o1GyJpnTN1I" >Sweet Dreams by Kirsten Lepore</li>
</ul>
<p>	<br clear="all" /> </p>
</div>
<h2>Jquery Code</h2>
<div class="Code">
<p>&lt;script type=&quot;text/javascript&quot;&gt;</p>
<p>
  jQuery(document).ready(function() {</p>
<p>
  // Loads in First Video<br />
  jQuery(&quot;.Selected&quot;).each(function () {<br />
  $(this).addClass(&quot;YouTubeSelect&quot;);<br />
  var VidID1 = $(this).attr(&quot;id&quot;);<br />
  var VidTitle = $(this).text(); <br />
  $(&quot;#YouVidTitle&quot;).html(&quot;&quot; + VidTitle + &quot;&quot;); <br />
  jQuery(&quot;#YouTubeBox&quot;).html(&quot;&lt;object type=&#8217;application/x-shockwave-flash&#8217; style=&#8217;width:560px; height:350px;&#8217; data=&#8217;http://www.youtube.com/v/&quot; + VidID1 + &quot;&amp;hl=en&amp;fs=1&amp;&#8217;&gt;&lt;param name=&#8217;movie&#8217; value=&#8217;http://www.youtube.com/v/&quot; + VidID1 + &quot;&amp;hl=en&amp;fs=1&amp;&#8217; /&gt;&lt;/object&gt;&quot;);<br />
  });</p>
<p>
  // Generates List<br />
  jQuery(&quot;#YouVid li&quot;).each(function () {<br />
  var VidID = $(this).attr(&quot;id&quot;); <br />
  var VidTitle = $(this).text(); <br />
  $(this).html(&quot;&lt;span&gt;&lt;img src=&#8217;http://i1.ytimg.com/vi/&quot; + VidID + &quot;/default.jpg&#8217; alt=&#8217;&quot; + VidTitle + &quot;&#8217; title=&#8217;&quot; + VidTitle + &quot;&#8217; width=&#8217;120&#8242; height=&#8217;90&#8242; /&gt;&lt;small&gt;&quot; + VidTitle + &quot;&lt;/small&gt;&lt;/span&gt;&quot;);<br />
});</p>
<p>
  // Loads Video<br />
  jQuery(&quot;#YouVid li&quot;).click(function () {<br />
  $(&quot;#YouVid li&quot;).removeClass(&quot;YouTubeSelect&quot;);<br />
  $(this).addClass(&quot;YouTubeSelect&quot;);<br />
  var VidID1 = $(this).attr(&quot;id&quot;); <br />
  var VidTitle = $(this).text(); <br />
  $(&quot;#YouVidTitle&quot;).html(&quot;&quot; + VidTitle + &quot;&quot;);<br />
  $(&quot;#YouTubeBox&quot;).html(&quot;&lt;object type=&#8217;application/x-shockwave-flash&#8217; style=&#8217;width:560px; height:350px;&#8217; data=&#8217;http://www.youtube.com/v/&quot; + VidID1 + &quot;&amp;hl=en&amp;fs=1&amp;&#8217;&gt;&lt;param name=&#8217;movie&#8217; value=&#8217;http://www.youtube.com/v/&quot; + VidID1 + &quot;&amp;hl=en&amp;fs=1&amp;&#8217; /&gt;&lt;/object&gt;&quot;);<br />
  return false;<br />
});</p>
<p>
  })<br />
&lt;/script&gt;
</p>
</div>
<h2>The CSS</h2>
<div class="Code">
<p>#YouTubeContainer { width: 560px; font-family:Arial, Helvetica, sans-serif;  }<br />
  #YouTubeContainer h5 { width: 540px; padding:10px; background:#ececec; margin:0; font-size:20px; }<br />
  ul#YouVid, ul#YouVid li { list-style:none; padding:0; margin:0; }<br />
  ul#YouVid li { padding:10px; float:left; width:120px; text-align:center; display:block; background:#ececec; min-height:140px; }<br />
  ul#YouVid li:hover { background:#ccc; cursor:pointer; }<br />
  ul#YouVid li.YouTubeSelect { border-bottom:2px solid #666666; min-height:138px; }<br />
  ul#YouVid li img { padding:0 0 10px 0; }<br />
ul#YouVid li small { display:block; }</p>
</div>
<h2>The HTML</h2>
<p>You can change the order of the H5, UL and Div as long as they&#8217;re all in the YouTubeContainer Div</p>
<p>Give the List Item the ID of the youtube video found in the URL, type the title you&#8217;d like to show in the List Item</p>
<p>You can give the List Item Video you&#8217;d like to show up as default a class of &#8220;Selected&#8221;</p>
<div class="Code">
<p>&lt;div id=&quot;YouTubeContainer&quot;&gt; </p>
<p>  &lt;h5 id=&quot;YouVidTitle&quot;&gt;&lt;/h5&gt;</p>
<p>  &lt;div id=&quot;YouTubeBox&quot;&gt; <br />
  Youtube Video loads in here &#8211; alternatively you can place a link to your youtube page so people can still see a link if javascript is disabled<br />
  &lt;/div&gt; </p>
<p> &lt;ul id=&quot;YouVid&quot;&gt; <br />
  &lt;li id=&quot;BpWM0FNPZSs&quot; class=&quot;Selected&quot; &gt;DEADLINE post-it stop motion&lt;/li&gt; <br />
  &lt;li id=&quot;vS2sc9-4UaI&quot; &gt;7&#215;7x7 Stop Motion Assembly!!&lt;/li&gt; <br />
  &lt;li id=&quot;qBjLW5_dGAM&quot; &gt;Western Spaghetti by PES&lt;/li&gt; <br />
  &lt;li id=&quot;o1GyJpnTN1I&quot; &gt;Sweet Dreams by Kirsten Lepore&lt;/li&gt; <br />
  &lt;/ul&gt; </p>
<p>  &lt;br clear=&quot;all&quot; /&gt; </p>
<p>  &lt;/div&gt;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/jquery-youtube-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Doctor Who Site</title>
		<link>http://www.lukeishere.co.uk/the-doctor-who-site/</link>
		<comments>http://www.lukeishere.co.uk/the-doctor-who-site/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:30:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Doctor Who]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=316</guid>
		<description><![CDATA[www.thedoctorwhosite.co.uk is a Doctor Who, Torchwood, Sarah Jane Adventures and K9 Series fan website I set up in 2006]]></description>
			<content:encoded><![CDATA[<p><img class="WebImage"  src="/images/the-doctor-who-site-2009-l.jpg" alt="The Doctor Who Site" title="The Doctor Who Site" /></p>
<p><a href="http://www.thedoctorwhosite.co.uk">The Doctor Who Site</a> www.thedoctorwhosite.co.uk is a Doctor Who, Torchwood, Sarah Jane Adventures and K9 Series fan website I set up in 2006. Since then it has kept on growing, it now has over 1000 unique visitors a day, over 300 pages plus over 800 <a href="http://news.thedoctorwhosite.co.uk">news</a> and <a href="http://merchandise.thedoctorwhosite.co.uk">merchandise</a> posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/the-doctor-who-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Waters of Mars Flash Game</title>
		<link>http://www.lukeishere.co.uk/the-waters-of-mars-flash-game/</link>
		<comments>http://www.lukeishere.co.uk/the-waters-of-mars-flash-game/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:19:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Doctor Who]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=308</guid>
		<description><![CDATA[An unofficial Doctor Who game created for my Doctor Who fan website]]></description>
			<content:encoded><![CDATA[<div id="flashcontent">
<script type="text/javascript"> 
var so = new SWFObject("http://www.thedoctorwhosite.co.uk/wp-images/flash/watersofmars.swf", "TDWS", "550", "400", "8", "");
so.write("flashcontent");
</script>
</div>
<p>An unofficial Doctor Who game created for my <a href="http://www.thedoctorwhosite.co.uk/">Doctor Who fan website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/the-waters-of-mars-flash-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Mac&#8217;s</title>
		<link>http://www.lukeishere.co.uk/apple-macs/</link>
		<comments>http://www.lukeishere.co.uk/apple-macs/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 20:01:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=295</guid>
		<description><![CDATA[Some of the Apple Mac computers past and present]]></description>
			<content:encoded><![CDATA[<p><img src="/images/new-27-inch-apple-imac-l.gif" alt="The new 27 inch iMac" title="The new 27 inch iMac" width="650"  /></p>
<p>The new 27 inch iMac, created in Illustrator then gradients added in Photoshop</p>
<p><img src="/images/apple-mac-notebook-laptop-macbook.jpg" alt="The Macbook" title="The Macbook" width="650"  /></p>
<p>The current Apple Macbook</p>
<p><img src="/images/apple-imac.gif" alt="The previous Apple iMac" title="The previous Apple iMac" width="650"  /></p>
<p>The current Apple iMac normal size</p>
<p><img src="/images/original-apple-mac.jpg" alt="Original Apple Mac title="Original Apple Mac" width="650"  /></p>
<p>The original Apple Mac with the leopard desktop background</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/apple-macs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Devon October 2009</title>
		<link>http://www.lukeishere.co.uk/devon-october-2009/</link>
		<comments>http://www.lukeishere.co.uk/devon-october-2009/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 19:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Brixham]]></category>
		<category><![CDATA[October]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=283</guid>
		<description><![CDATA[Halloween at the Paignton and Dartmouth Steam Railway]]></description>
			<content:encoded><![CDATA[<p><img src="/images/halloween-devon-2009-l.jpg" alt="Halloween Devon 2009" title="Halloween Devon 2009" width="650"  /></p>
<p>Halloween at the Paignton and Dartmouth Steam Railway</p>
<p><img src="/images/brixham-lifeboat-harbour.jpg" alt="Brixham Lifeboat in the Harbour" title="Brixham Lifeboat in the Harbour" width="650"  /></p>
<p>The lifeboat in Brixham Harbour</p>
<p><img src="/images/world-war-bunker-devon-brixham.jpg" alt="World War Bunker in Brixham" title="World War Bunker in Brixham" width="650"  /></p>
<p>A lookout built for the World War in Brixham</p>
<p><img src="/images/babbacombe-model-village-2009.jpg" alt="Babbacombe model village near Torquay" title="Babbacombe model village near Torquay" width="650"  /></p>
<p>The impressive Babbacombe model village near Torquay, Devon</p>
<p><img src="/images/babbacombe-model-village-above-2009.jpg" alt="Babbacombe model village near Torquay" title="Babbacombe model village near Torquay" width="650"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/devon-october-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>September 2009</title>
		<link>http://www.lukeishere.co.uk/september-2009/</link>
		<comments>http://www.lukeishere.co.uk/september-2009/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 18:49:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Months]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[94]]></category>
		<category><![CDATA[Bus]]></category>
		<category><![CDATA[Cheltenham]]></category>
		<category><![CDATA[Gold]]></category>
		<category><![CDATA[September]]></category>
		<category><![CDATA[Stagecoach]]></category>
		<category><![CDATA[Transport]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=258</guid>
		<description><![CDATA[New bus service]]></description>
			<content:encoded><![CDATA[<p><img src="/images/september-stagecoach-gold-bus-stop-l.gif" alt="France Barn Countryside July Summer 2009" title="K550i Mobile Phone, and Pizzas! August summer 2009" width="650"  /></p>
<p>A picture summing up my September 2009! Cheltenham and Gloucester get a new <a href="http://www.lukeishere.co.uk/stagecoach-gold-94-cheltenham-gloucester/" title="Stagecoach Gold 94">bus service</a>, the one I use to get to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/september-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>August 2009</title>
		<link>http://www.lukeishere.co.uk/august-2009/</link>
		<comments>http://www.lukeishere.co.uk/august-2009/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 18:43:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Months]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[August]]></category>
		<category><![CDATA[K550i]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Pizza]]></category>
		<category><![CDATA[Summer]]></category>

		<guid isPermaLink="false">http://www.lukeishere.co.uk/?p=254</guid>
		<description><![CDATA[August 2009 - Pizzas and Phones]]></description>
			<content:encoded><![CDATA[<p><img src="/images/august-2009-k550i-pizza-l.gif" alt="France Barn Countryside July Summer 2009" title="K550i Mobile Phone, and Pizzas! August summer 2009" width="650"  /></p>
<p>A picture summing up my August 2009!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukeishere.co.uk/august-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
