<?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>Mosuro &#124; UI/Web Designer</title>
	<atom:link href="http://www.mosuro.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mosuro.co.uk</link>
	<description>A young, entrepreneurial UI Designer and Developer based in London</description>
	<lastBuildDate>Tue, 15 May 2012 11:05:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Google Chart Tools</title>
		<link>http://www.mosuro.co.uk/google-chart-tools/</link>
		<comments>http://www.mosuro.co.uk/google-chart-tools/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 14:59:07 +0000</pubDate>
		<dc:creator>amosuro</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Skills]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google api]]></category>
		<category><![CDATA[google chart tools]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mosuro.co.uk/?p=350</guid>
		<description><![CDATA[In brief, Google Chart Tools is a service which allows you to easily display charts on your web page using the Google Chart Tools API. To give you an example, I&#8217;m currently working on implementing the data used for a project with Google Chart Tools in order to achieve a variety in data visualisation. You<a href="http://www.mosuro.co.uk/google-chart-tools/">...read more</a>]]></description>
			<content:encoded><![CDATA[<p>In brief, Google Chart Tools is a service which allows you to easily display charts on your web page using the Google Chart Tools API.</p>
<p>To give you an example, I&#8217;m currently working on implementing the data used for a project with Google Chart Tools in order to achieve a variety in data visualisation.</p>
<p>You can use the Google Chart Tools service in two ways:</p>
<ul>
<li>The Easy Way</li>
<li>The Very Easy Way</li>
</ul>
<p>Starting with the latter, Google Chart Tools can be as simple as including a URL in your webpage. You can use the <a title="Google Chart Playground" href="http://code.google.com/intl/en-EN/apis/chart/image/docs/chart_playground.html">Google Chart Playground</a> to edit the parameters to fine-tune the results and then output the results in a PNG image using the URL generated. Here&#8217;s an example:</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li>http://chart.googleapis.com/chart?cht=bvg<span style="color: #ddbb00;">&amp;chs=250x150&amp;chd=s:Monkeys&amp;chxt=x,y&amp;chxs=0,ff0000,12,0,lt|1,0000ff,10,1,lt</li></ol></div></pre><!--END_DEVFMTCODE--><br />
<pre class="brush: xhtml; gutter: true">&nbsp;</pre><br />
Alternatively, we can use the easy way &#8211; which is the best method for me, because it allows me to grab the data and display it within the charts generated by Google Chart Tools &#8211; via AJAX.</p>
<p>However we grab the data, we&#8217;ll need to place it into a dataTable object, which is simply a table with columns and rows, whereby each column is defined with a data type (e.g. string, integer).</p>
<p><strong>First, load the Google Visualization API<br />
</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.google.com/jsapi&quot;</span>&gt;</span><span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p><strong>Include the required Google Visualization library</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>google.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;visualization&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;1&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>packages<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;corechart&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>The second parameter indicates the version of API to use, and the &#8216;packages&#8217; array consists of all the visualizations used (in this case, I&#8217;ve selected corechart in order to use a line chart).</p>
<p><strong>Ensure the Google Visualization library is fully loaded by registering a callback</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li><span style="color: #003366; font-weight: bold;">var</span> dataTable <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> google.<span style="color: #660066;">visualization</span>.<span style="color: #660066;">DataTable</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p><strong>Create the dataTable</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li><span style="color: #003366; font-weight: bold;">var</span> dataTable <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> google.<span style="color: #660066;">visualization</span>.<span style="color: #660066;">DataTable</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p><strong>Define all of the columns in our table</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>data.<span style="color: #660066;">addColumn</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'string'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'Month'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>data.<span style="color: #660066;">addColumn</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'number'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'Updated Data'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>data.<span style="color: #660066;">addColumn</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'number'</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">'Synced Alumni'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p><strong>Then define all of the rows in the table</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>data.<span style="color: #660066;">addRows</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span></li><li><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'Jan'</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1000</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">400</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span></li><li><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'Feb'</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1170</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">460</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span></li><li><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'Mar'</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">860</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">580</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span></li><li><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'Apr'</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1030</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">540</span><span style="color: #009900;">&#93;</span></li><li><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Here we have a set of arrays within an array. This is because each row is an array, and all data within that row is enclosed in an array.</p>
<p><strong>There a number of options to manipulate the visualization (e.g. chart width, height, background colour etc).</strong></p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li>var<span style="color: #339933;">&amp;</span>nbsp<span style="color: #339933;">;</span>options<span style="color: #339933;">&amp;</span>nbsp<span style="color: #339933;">;=&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #009900;">&#123;</span></li><li>width<span style="color: #339933;">:&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #CC0000;">950</span><span style="color: #339933;">,&amp;</span>nbsp<span style="color: #339933;">;</span>height<span style="color: #339933;">:&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #CC0000;">250</span><span style="color: #339933;">,</span></li><li>title<span style="color: #339933;">:&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #3366CC;">''</span><span style="color: #339933;">,</span></li><li>backgroundColor<span style="color: #339933;">:&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #3366CC;">'#F0F0F0'</span><span style="color: #339933;">,</span></li><li>colors<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'#920000'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'#7FA02D'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span></li><li>fontName<span style="color: #339933;">:&amp;</span>nbsp<span style="color: #339933;">;</span><span style="color: #3366CC;">'Helvetica'</span><span style="color: #339933;">,</span></li><li><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Once everything is set, we simply need to initiate and then draw our chart object.</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Javascript"><div class="devcodeoverflow"><ol><li><span style="color: #003366; font-weight: bold;">var</span> chart <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> google.<span style="color: #660066;">visualization</span>.<span style="color: #660066;">LineChart</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'chartDiv'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li><li>chart.<span style="color: #660066;">draw</span><span style="color: #009900;">&#40;</span>data<span style="color: #339933;">,</span> options<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Finally, set the div where the chart will be displayed and that&#8217;s it!</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="HTML"><div class="devcodeoverflow"><ol><li><span style="color: #009900;">&lt;div&amp;nbsp;<span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;chartDiv&quot;</span>&amp;nbsp;<span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;width:950;&amp;nbsp;height:250&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>See the <a title="Google Chart Tools" href="http://www.mosuro.co.uk/tutorials/google-charts/">demo</a> in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mosuro.co.uk/google-chart-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Creating simple, flexible jQuery Tooltips</title>
		<link>http://www.mosuro.co.uk/tutorial-creating-simple-flexible-jquery-tooltips/</link>
		<comments>http://www.mosuro.co.uk/tutorial-creating-simple-flexible-jquery-tooltips/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 22:07:17 +0000</pubDate>
		<dc:creator>amosuro</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[animate]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://mosuro.co.uk/?p=333</guid>
		<description><![CDATA[I don&#8217;t often post tutorials on my blog, as I usually focus on forums and Stackoverflow, but here&#8217;s a very simple, straight-forward tutorial that will be useful for anybody just getting to grips with jQuery. The Aim The idea here is to avoid any uneccessary steps and focus 100% on what we&#8217;re trying to achieve<a href="http://www.mosuro.co.uk/tutorial-creating-simple-flexible-jquery-tooltips/">...read more</a>]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t often post tutorials on my blog, as I usually focus on forums and Stackoverflow, but here&#8217;s a very simple, straight-forward tutorial that will be useful for anybody just getting to grips with jQuery.</p>
<p><strong>The Aim</strong></p>
<p>The idea here is to avoid any uneccessary steps and focus 100% on what we&#8217;re trying to achieve &#8211; a flexible jQuery tooltip to add and customize to your website without the need for any clunky plugins.</p>
<p><strong>How to</strong></p>
<p>First, we will start off with a very simple HTML page with no design whatsoever, so we can keep our attention on the tooltip and nothing else.<br />
<pre class="brush: html; gutter: true">&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
    &lt;title&gt;jQuery Tooltips&lt;/title&gt;
    &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"&gt;&lt;/script&gt;
    &lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;h1&gt;Ashley's Tooltips (Jquery)&lt;/h1&gt;
    &lt;p&gt;This has a tooltip: &lt;a href="#" id="ashTip"&gt;Hover over me!&lt;/a&gt;&lt;/p&gt;
    &lt;div id="tooltip1"&gt;
        &lt;p&gt;Hello!&lt;/p&gt;
    &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre><br />
Notice that I have already included my jQuery library by using the link provided by <a href="http://code.google.com/apis/libraries/devguide.html">Google&#8217;s CDN</a>.</p>
<p>We need to add some simple CSS to this page, in order for the tooltip functionality to work. Although most of this CSS is optional, there are some parts of the code which need to be included in order to make this all work:</p>
<p>&nbsp;<br />
<pre class="brush: css; gutter: true">&lt;style type="text/css"&gt;
    .toolTip {
        display:none;
        position:absolute;
        opacity:0.0;
    }
    #tooltip1 {
        background:#CF0;
        border-radius:5px;
        padding:20px;
        text-align:center;
    }
&lt;/style&gt;</pre><br />
The <strong>.tooltip</strong> element must be set to <strong>display none</strong> and <strong>opacity 0.0</strong>, because the whole idea of a tooltip is that they appear on <strong>click</strong> or <strong>on hover</strong>, so we do not need the element to display until we trigger it, and when it does display we want to fade the opacity to visible, so it&#8217;s intial state should be invisible (hence the need to declare it&#8217;s opacity).</p>
<p>Now that we have the HTML page set up and some basic CSS styling, let&#8217;s add some jQuery to create the tooltip functionality. Add this piece of code to the head of the page:<br />
<pre class="brush: javascript; gutter: true">&lt;script type="text/javascript"&gt;
        $(function() {
            $("#ashTip").hover(
                function() {
                    var offset = $("p").offset();
                    $("#tooltip1").css("top", offset.top).css("left", offset.left).css("display", "block");
                    $("#tooltip1").animate({ opacity: 1.0 }, 300);
                },
                function() {
                    $("#tooltip1").animate({ opacity: 0.0 }, 300, function() {
                        $("#tooltip1").css("display", "none");
                    });
                }
            );
        });
    &lt;/script&gt;</pre><br />
So to get a better understanding of what&#8217;s happening here, I&#8217;ve broken up the above code to explain exactly what is happening:<br />
<pre class="brush: javascript; gutter: true">var offset = $("p").offset();</pre><br />
This gets the position (offset) of the element. In this case, the element is the <strong>p tag</strong>.<br />
<pre class="brush: javascript; gutter: true">$("#tooltip1").css("top", offset.top).css("left", offset.left).css("display", "block");</pre><br />
We position the element to top/left of the element above (<strong>p tag</strong>) and show the tooltip by editing the CSS and setting the <strong>display</strong> to <strong>block</strong>.<br />
<pre class="brush: javascript; gutter: true">$("#tooltip1").animate({ opacity: 1.0 }, 300);</pre><br />
Here we create a fade in animation for the element when the tooltip displays.<br />
<pre class="brush: javascript; gutter: true">function() {
                 $("#tooltip1").animate({ opacity: 0.0 }, 300, function() {
                     $("#tooltip1").css("display", "none");
                   });
                }</pre><br />
The above piece of code simply does the opposite of everything we have declared in the jQuery code so far, but for when the user&#8217;s mouse moves away from the tooltip link. So it simply creates another fade effect to make the tooltip disappear and then sets the <strong>display</strong> to <strong>none</strong> using CSS.</p>
<p>So with all of that in place, our simple but very flexible tooltip will be working! By using this method, there are a number of different ways you can use the functionality. A good example is to use it as a method of displaying an image whenever the user hovers over a thumbnail of that image.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mosuro.co.uk/tutorial-creating-simple-flexible-jquery-tooltips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mark Randall &#8211; brave soldier, great artist. Loving Grandad.</title>
		<link>http://www.mosuro.co.uk/mark-randall-brave-soldier-great-artist-loving-grandad/</link>
		<comments>http://www.mosuro.co.uk/mark-randall-brave-soldier-great-artist-loving-grandad/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 17:27:04 +0000</pubDate>
		<dc:creator>amosuro</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://mosuro.co.uk/?p=246</guid>
		<description><![CDATA[Mark Randall was born in Coventry. He studied for a short time at Coventry School of Art, before war time service with the Royal Navy (1941- 1946), interrupted his studies. After leaving the forces, he settled in London working as a commercial artist and graphic designer in advertising, whilst continuing with evening studies at Hornsey<a href="http://www.mosuro.co.uk/mark-randall-brave-soldier-great-artist-loving-grandad/">...read more</a>]]></description>
			<content:encoded><![CDATA[<p><em>Mark Randall was born in Coventry. He studied for a short time at Coventry School of Art, before war time service with the Royal Navy (1941- 1946), interrupted his studies. After leaving the forces, he settled in London working as a commercial artist and graphic designer in advertising, whilst continuing with evening studies at Hornsey Art School and subsequently at the Central School of Arts and Crafts. Mark retired in 1986 and has since concentrated all his activities into fine art.</em><a href="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall.png"><img class="size-medium wp-image-250 alignright" title="mark-randall" src="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall-201x300.png" alt="" width="201" height="300" /></a></p>
<p><em>He has a painting exhibited in the Royal Academy in 1960, and for many years he was a regular exhibitor with the Royal Institute of Oil painters, and also the Pastel Society, and the National Society. In 1985 he was awarded the Cornelissen Prize for his painting at the National Society Exhibition at the Mall Galleries, London.</em></p>
<p><em>His oils and pastels have mainly concentrated on capturing the landscape and marine life of East Anglia, but for the last few years an interest in the moving figure has entered his work. This is conveyed in his dramatic equestrian scenes and the magical world of ballet.</em></p>
<p>May he rest in peace and let us celebrate his fascinating 90-year life.</p>
<p><a href="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall-mediterranean.jpg"><img class="alignnone size-full wp-image-248" title="mark-randall-mediterranean" src="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall-mediterranean.jpg" alt="" width="500" height="415" /></a></p>
<p><a href="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall-church.jpg"><img class="alignnone size-full wp-image-247" title="mark-randall-church" src="http://mosuro.co.uk/wp-content/uploads/2011/10/mark-randall-church.jpg" alt="" width="500" height="411" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mosuro.co.uk/mark-randall-brave-soldier-great-artist-loving-grandad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web site launch &#8211; Enlightenment Business Solutions</title>
		<link>http://www.mosuro.co.uk/web-site-launch-enlightenment-business-solutions/</link>
		<comments>http://www.mosuro.co.uk/web-site-launch-enlightenment-business-solutions/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 20:44:52 +0000</pubDate>
		<dc:creator>amosuro</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[enlightenment business solutions]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://mosuro.co.uk/?p=234</guid>
		<description><![CDATA[Founded by Shamim Sarif &#38; Hanan Kattan, Enlightenment Business Solutions (EBS) provides a number of online marketing solutions in the UK and USA. EBS required a complete Web site re-design, implementing a user-friendly content management system. I decided that WordPress would be perfect for the project and this is the outcome&#8230; Visit the new EBS<a href="http://www.mosuro.co.uk/web-site-launch-enlightenment-business-solutions/">...read more</a>]]></description>
			<content:encoded><![CDATA[<p>Founded by Shamim Sarif &amp; Hanan Kattan, Enlightenment Business Solutions (EBS) provides a number of online marketing solutions in the UK and USA.</p>
<p>EBS required a complete Web site re-design, implementing a user-friendly content management system. I decided that WordPress would be perfect for the project and this is the outcome&#8230;</p>
<p><a title="Enlightenment Business Solutions" href="http://www.enlightenmentbusinesssolutions.com">Visit the new EBS site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mosuro.co.uk/web-site-launch-enlightenment-business-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Engage, inspire, motivate</title>
		<link>http://www.mosuro.co.uk/engage-inspire-motivate/</link>
		<comments>http://www.mosuro.co.uk/engage-inspire-motivate/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 16:37:48 +0000</pubDate>
		<dc:creator>amosuro</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Work in Progress]]></category>

		<guid isPermaLink="false">http://mosuro.co.uk/?p=215</guid>
		<description><![CDATA[A design concept I&#8217;m working on for a video production company based in Cambridge. Web site launch coming soon!]]></description>
			<content:encoded><![CDATA[<p>A design concept I&#8217;m working on for a video production company based in Cambridge. Web site launch coming soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mosuro.co.uk/engage-inspire-motivate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

