<?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>web design west midlands blog</title>
	<atom:link href="http://www.cjb-i.co.uk/web-design-blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cjb-i.co.uk/web-design-blog</link>
	<description>our website design blog from cjb - i</description>
	<lastBuildDate>Sat, 30 Jul 2011 12:42:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Launched of online shop</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/launched-of-online-shop/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/launched-of-online-shop/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 12:42:22 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce shop]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[web design west midlands]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=115</guid>
		<description><![CDATA[We have launched a new online shop: Stunning Hair and Beauty. The website features hair products which can be purchased online. We worked with the client to come up with a design that would have the impression of a quality product. The shop features online ordering and the ability in the admin to add / [...]]]></description>
			<content:encoded><![CDATA[<p>We have launched a new online shop: <a href="http://www.stunninghairandbeauty.com/">Stunning Hair and Beauty</a>. The website features hair products which can be purchased online. We worked with the client to come up with a design that would have the impression of a quality product.</p>
<p>The shop features online ordering and the ability in the admin to add / edit and remove products and details.</p>
<p>Already the shop has started to receive orders and we are working with the client on ways of increasing conversion rates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/launched-of-online-shop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a facebook gallery in own website</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/building-a-facebook-gallery-in-own-website/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/building-a-facebook-gallery-in-own-website/#comments</comments>
		<pubDate>Thu, 26 May 2011 10:31:08 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=110</guid>
		<description><![CDATA[We were looking for a way to integrate a facebook gallery into a clients website, so that they could update the gallery on there facebook page and that be transfered to the gallery on their own website. The way of approaching this was by using the facebook graph api. This allows you to get information [...]]]></description>
			<content:encoded><![CDATA[<p>We were looking for a way to integrate a facebook gallery into a clients website, so that they could update the gallery on there facebook page and that be transfered to the gallery on their own website.</p>
<p>The way of approaching this was by using the facebook graph api. This allows you to get information from a facebook page and into your own website.</p>
<p>The first thing to do is look at facebook&#8217;s api page, which is here: http://developers.facebook.com/docs/reference/api/</p>
<p>You will need to login to facebook to be able to see the api page.</p>
<p>The next thing you need is the id of the gallery [theid], this can be found in the url of the gallery. There are a few numbers but the one that you want is normall after the &#8220;a.&#8221; and the &#8220;.&#8221; before the user id. If you copy that then use the following url:</p>
<p>https://graph.facebook.com/[theid]/photos</p>
<p>This should give you a list of the photos in an array. The trick is then to use the array in either JSON or php as below,</p>
<pre>&lt;?php

$jsonurl = "https://graph.facebook.com/[theid]/photos";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);

$json_output = json_decode($json, true);

echo '&lt;pre&gt;';
print_r($json_output);
echo '&lt;/pre&gt;';

echo $json_output['data'][0]['images']['0']['source'];

?&gt;</pre>
<p>Or if you want to use javascript an example would be:</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/
1.4.2/jquery.min.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body onLoad="fbFetch()"&gt;
&lt;div&gt;Loading...&lt;/div&gt;

&lt;script&gt;
function fbFetch(){
//Set Url of JSON data from the facebook graph api. make sure callback is set with a '?'
to overcome the cross domain problems with JSON
var url = "https://graph.facebook.com/198234086888111/photos?limit=5&amp;callback=?";

//Use jQuery getJSON method to fetch the data from the url and then create our unordered list
with the relevant data.
$.getJSON(url,function(json){
var html = "&lt;ul&gt;";

//loop through and within data array's retrieve the message variable.
$.each(json.data,function(i,fb){
html += "&lt;li&gt;&lt;img alt='"+ fb.from.name +"' height='" + fb.height + "' width='" +
fb.width + "' src='" + fb.picture + "'/&gt;&lt;/li&gt;&lt;div style='clear:both;'&gt;&amp;nbsp;&lt;/div&gt;";
});

html += "&lt;/ul&gt;";

//A little animation once fetched
$('.facebookfeed').animate({opacity:0}, 500, function(){
$('.facebookfeed').html(html);
});
$('.facebookfeed').animate({opacity:1}, 500);
});
};

&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>That&#8217;s a quick guide to using images but you can use other things as well using the technique above but replacing the photos in the call url with other facebook calls such as:</p>
<table>
<tbody>
<tr>
<td><code><a href="https://graph.facebook.com/platform/feed?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">feed</a></code></td>
<td>The Page&#8217;s wall</td>
<td>No access token required</td>
<td>An Array of <code>Post</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/picture?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">picture</a></code></td>
<td>The Page&#8217;s profile picture</td>
<td>No access token required</td>
<td>Returns a HTTP 302 with the URL of the user&#8217;s profile picture</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/tagged?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">tagged</a></code></td>
<td>The photos, videos, and posts in which the Page has been tagged</td>
<td>No access token required</td>
<td>An heterogeneous array of <code>Photo</code>, <code>Video</code> or <code>Post</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/links?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">links</a></code></td>
<td>The Page&#8217;s posted links</td>
<td>No access token required</td>
<td>An array of <code>link</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/photos?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">photos</a></code></td>
<td>The Page&#8217;s uploaded photos</td>
<td>No access token required</td>
<td>An array of <code>Photo</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/groups?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">groups</a></code></td>
<td>Groups the Page belongs to</td>
<td>No access token required</td>
<td>An array containing <code>group id</code>, <code>version</code>, <code>name</code> and <code>unread</code> fields</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/albums?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">albums</a></code></td>
<td>The photo albums the Page has uploaded</td>
<td>No access token required</td>
<td>An array of <code>Album</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/statuses?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">statuses</a></code></td>
<td>The Page&#8217;s status updates</td>
<td>No access token required</td>
<td>An array of <code>Status message</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/videos?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">videos</a></code></td>
<td>The videos the Page has uploaded</td>
<td>No access token required</td>
<td>An array of <code>Video</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/notes?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">notes</a></code></td>
<td>The Page&#8217;s notes</td>
<td>No access token required</td>
<td>An array of <code>Note</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/posts?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">posts</a></code></td>
<td>The Page&#8217;s own posts</td>
<td>No access token required</td>
<td>An array of <code>Post</code> objects</td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/events?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">events</a></code></td>
<td>The events the Page is attending</td>
<td>No access token required</td>
<td>An array containing <code>event id</code>, <code>name</code>, <code>start_time</code>, <code>end_time</code>, <code>location</code> and <code>rsvp_status</code></td>
</tr>
<tr>
<td><code><a href="https://graph.facebook.com/platform/checkins?access_token=2227470867%7C2.AQDDx6rhCy_yrN51.3600.1306411200.0-720676123%7CkAYbji8hAXDnFW2m3Cpe1ltJsW8">checkins</a></code></td>
<td>Checkins made by friends of the current session user</td>
<td>Requires <code>friends_checkins</code> permissions</td>
<td>An array of <code>Checkin</code> objects</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/building-a-facebook-gallery-in-own-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website design Packaging365</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/website-design-packaging365/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/website-design-packaging365/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 14:39:34 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[shop design]]></category>
		<category><![CDATA[web design west midlands]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=107</guid>
		<description><![CDATA[New packaging365 website has been launched, designed and developed by CJB Interactive.]]></description>
			<content:encoded><![CDATA[<p>New packaging365 website has been launched, designed and developed by CJB Interactive. The online packaging shop sells a variety of boxes and packaging and includes a create your own boxes section in which custom sized boxes can be created and ordered online.</p>
<p>To view the <a title="Packaging shop" href="http://www.packaging365.co.uk/">packaging shop</a>.</p>
<p>The custom box creator works out the costings for the box that the customer creates and then allows the customer to order and buy the required amount of boxes online.</p>
<p>The shop was designed by CJB Interactive for the client using the fresh take on packaging concept as the starting point. A secure checkout is used to make ordering by the customer really easy and secure, giving the customer confidence in the shop and increasing orders taken. We are also working with Packaging365 to build the shop into a leading online packaging shop in the UK.</p>
<p>We also were involved in the Ebay and Amazon setup giving multiple selling channels and increasing awareness of the company.</p>
<p>For more information about our online shops and ecommerce projects please just contact us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/website-design-packaging365/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New website launch Tej</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/new-website-launch-tej/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/new-website-launch-tej/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 14:57:42 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[web design west midlands]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=104</guid>
		<description><![CDATA[We have launched a new website, called Tej and co. Working with a designer we built the website using WordPress CMS so that the client could edit and add to the website in an online admin. The website is: http://www.tejandco.co.uk/. If you are looking for a website for your company or organisation then please contact [...]]]></description>
			<content:encoded><![CDATA[<p>We have launched a new website, called Tej and co. Working with a designer we built the website using WordPress CMS so that the client could edit and add to the website in an online admin.</p>
<p>The website is: <a href="http://www.tejandco.co.uk/">http://www.tejandco.co.uk/</a>.</p>
<p>If you are looking for a website for your company or organisation then please contact us today and see what we can offer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/new-website-launch-tej/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web design</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/web-design/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/web-design/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 10:58:56 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web design company]]></category>
		<category><![CDATA[web design west midlands]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=100</guid>
		<description><![CDATA[At CJB Interactive we have been building websites for all different businesses across many different sectors. We work with start-ups, to help launch their business and also more established companies, working with them to grow their online presence. Our web design services can make sales and help grow your business. Growing your business online makes [...]]]></description>
			<content:encoded><![CDATA[<p>At CJB Interactive we have been building websites for all different businesses across many different sectors. We work with start-ups, to help launch their business and also more established companies, working with them to grow their online presence.</p>
<p>Our <a href="http://www.cjb-i.co.uk/web-design.htm">web design services</a> can make sales and help grow your business. Growing your business online makes use of the still growing number of people that are using the Internet to find products, services and organisations. Having the right impression and making sure you are found is an important part of business.</p>
<p>Using our knowledge of the web and social media, we work hard for your company building a website that performs brilliant and looks great.</p>
<p>If you would be interested in our service, then please contact us to start talking about how our web design, online marketing and online strategy services can be of use to you. We have many great stories of clients who have gone from a couple of enquiries on their website, to having the web as the most important lead and sales generating part of their business.</p>
<p>For more information view our <a href="http://www.cjb-i.co.uk/">web design west midlands</a> site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launch of ecommerce site</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/launch-of-ecommerce-site/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/launch-of-ecommerce-site/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 12:57:28 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[bespoke design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[ecommerce shop]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=98</guid>
		<description><![CDATA[We have launched ecommerce site http://www.houseofsheepskin.co.uk/ which has a unique web design with our ecommerce system running the shop. Have a browse of the shop.]]></description>
			<content:encoded><![CDATA[<p>We have launched ecommerce site <a href="http://www.houseofsheepskin.co.uk/">http://www.houseofsheepskin.co.uk/</a> which has a unique web design with our ecommerce system running the shop. Have a browse of the shop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/launch-of-ecommerce-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon shop website</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/amazon-shop-website/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/amazon-shop-website/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 16:44:17 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[amazon shop]]></category>
		<category><![CDATA[shop design]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=92</guid>
		<description><![CDATA[CJB Interactive have been working with clients, boxesdirect2u.co.uk to build an amazon store that sell&#8217;s packaging of all different kinds. The amazon store works along side boxesdirect2u&#8217;s ebay shop and online ecommerce shop, selling their products to different audiences. Having an amazon shop have added an extra sales avenue to the online selling strategy and [...]]]></description>
			<content:encoded><![CDATA[<p>CJB Interactive have been working with clients, boxesdirect2u.co.uk to build an amazon store that sell&#8217;s packaging of all different kinds. The amazon store works along side boxesdirect2u&#8217;s ebay shop and online ecommerce shop, selling their products to different audiences. Having an amazon shop have added an extra sales avenue to the online selling strategy and brings in new customers to buy the products and introduce them to the online shop as well.</p>
<p>We worked with the client to develop the shop and set it live.</p>
<p><img class="alignnone size-full wp-image-93" title="Amazon shop" src="http://www.cjb-i.co.uk/web-design-blog/wp-content/uploads/2010/11/amazon.jpg" alt="Amazon shop" width="400" height="225" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/amazon-shop-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website for Flavas</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/website-for-flavas/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/website-for-flavas/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 10:33:09 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=88</guid>
		<description><![CDATA[New website launch for Flavas group. A new local coffee lounge and pizzeria in Wolverhampton. &#8220;Flava&#8217;s is set in the heart of Perton, Wolverhampton providing a fresh, fine coffee lounge lounge to sit back and have a quality hot drink, or order from our range of hot and cold food.&#8221; We designed and developed the [...]]]></description>
			<content:encoded><![CDATA[<p>New website launch for <a href="http://www.flavasgroup.co.uk/">Flavas group</a>. A new local coffee lounge and pizzeria in Wolverhampton.</p>
<p>&#8220;Flava&#8217;s is set in the heart of Perton, Wolverhampton providing a fresh,  fine coffee lounge lounge to sit back and have a quality hot drink, or  order from our range of hot and cold food.&#8221;</p>
<p>We designed and developed the website bringing a modern fresh feel to the site to attract new customers to the restaurant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/website-for-flavas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website Launch</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/wilkes-engineering-website/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/wilkes-engineering-website/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 08:14:09 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[company website]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=83</guid>
		<description><![CDATA[We have launched the new Wilkes Engineering website today. It features a new design, CMS so that it can be edited online and also a product catalogue. To visit the site click on Wilkes Engineering. The website design has been refined to present a clean and modern image so to show the services of the [...]]]></description>
			<content:encoded><![CDATA[<p>We have launched the new Wilkes Engineering website today. It features a new design, CMS so that it can be edited online and also a product catalogue. To visit the site click on <a href="http://www.wilkes-engineering.co.uk/">Wilkes Engineering</a>.</p>
<p>The website design has been refined to present a clean and modern image so to show the services of the company as a modern engineering company.</p>
<p>We also added Google Analytics to keep an eye on the statistics knowing how many people find and use the website and where people come from. This will inform website marketing descisions for the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/wilkes-engineering-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New CJB Interactive website</title>
		<link>http://www.cjb-i.co.uk/web-design-blog/web-design/new-cjb-interactive-website/</link>
		<comments>http://www.cjb-i.co.uk/web-design-blog/web-design/new-cjb-interactive-website/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 16:25:33 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.cjb-i.co.uk/web-design-blog/?p=80</guid>
		<description><![CDATA[We have re-designed our main website to update it a bit. Have a look around the new design. Hope you like it.]]></description>
			<content:encoded><![CDATA[<p>We have re-designed our main website to update it a bit. Have a look around the new design. Hope you like it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cjb-i.co.uk/web-design-blog/web-design/new-cjb-interactive-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

