<?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>Adrian Tomic</title>
	<atom:link href="http://www.adriantomic.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adriantomic.se</link>
	<description>The Portfolio &#38; Blog of Adrian Tomic</description>
	<lastBuildDate>Fri, 03 Sep 2010 09:48:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Panama!</title>
		<link>http://www.adriantomic.se/portfolio/panama/</link>
		<comments>http://www.adriantomic.se/portfolio/panama/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 09:45:53 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=362006058</guid>
		<description><![CDATA[Panama is a TV show on SVT (Swedish Television) about visual communication. The entire site is bulit as a WordPress template. It is a heavily modified with jQuery. I was a part of the early planning team for the web site acting as a freelance technical consultant. I did all of the CSS and HTML, [...]]]></description>
			<content:encoded><![CDATA[<p>Panama is a TV show on SVT (Swedish Television) about visual communication. The entire site is bulit as a WordPress template. It is a heavily modified with jQuery. I was a part of the early planning team for the web site acting as a freelance technical consultant. I did all of the CSS and HTML, as well as some jQuery  and some WordPress tinkering.</p>
<p class="button">See the <a href="http://svtpanama.se" target="_blank">Live site</a></p>
<p style="text-align: center;"><a class="thickbox" rel="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama_frontpage.jpg"><img class="aligncenter size-large wp-image-362006063" title="Panama front page" src="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama_frontpage-590x324.jpg" alt="" width="590" height="324" /></a></p>
<p style="text-align: center;"><a class="thickbox" rel="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama_archive.jpg"><img class="aligncenter size-large wp-image-362006065" title="Panama Archive Page" src="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama_archive-590x324.jpg" alt="" width="590" height="324" /></a></p>
<p style="text-align: center;"><a class="thickbox" rel="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama-single.jpg"><img class="aligncenter size-large wp-image-362006064" title="Panama-single" src="http://www.adriantomic.se/wp-content/uploads/2010/09/Panama-single-590x324.jpg" alt="" width="590" height="324" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/portfolio/panama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress: Edit link highlight with jQuery</title>
		<link>http://www.adriantomic.se/blog/wordpress-edit-link-highlight-with-jquery/</link>
		<comments>http://www.adriantomic.se/blog/wordpress-edit-link-highlight-with-jquery/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 20:29:44 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=362006051</guid>
		<description><![CDATA[
This is a simple jQuery script that you can use for your WordPress theme. I use it on a theme I made for a client. It makes it easier to see what they are editing when they mover the house over the edit-button.
Anyway, here&#8217;s the script:

$&#40;&#34;a.post-edit-link&#34;&#41;.hover&#40;
	  function &#40;&#41; &#123;
	  $&#40;this&#41;.parents&#40;&#34;.hentry&#34;&#41;.css&#40;&#34;background&#34;, &#34;yellow&#34;&#41;;
		&#125;,
	  function [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-362006053" href="http://www.adriantomic.se/blog/wordpress-edit-link-highlight-with-jquery/attachment/highlighted/"><img class="aligncenter size-large wp-image-362006053" title="highlighted" src="http://www.adriantomic.se/wp-content/uploads/2010/07/highlighted-590x348.jpg" alt="" width="590" height="348" /></a></p>
<p>This is a simple jQuery script that you can use for your WordPress theme. I use it on a theme I made for a client. It makes it easier to see what they are editing when they mover the house over the edit-button.</p>
<p>Anyway, here&#8217;s the script:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;a.post-edit-link&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">hover</span><span style="color: #009900;">&#40;</span>
	  function <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	  $<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">parents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.hentry&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">css</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;background&quot;</span>, <span style="color: #0000ff;">&quot;yellow&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>,
	  function <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	  $<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">parents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;.hentry&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">css</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;background&quot;</span>, <span style="color: #0000ff;">&quot;none&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	  <span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>It will highligt the parent div (.hentry) when doing a mouse over of the edit-post link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/blog/wordpress-edit-link-highlight-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add jQuery to WordPress + jQuery plugin</title>
		<link>http://www.adriantomic.se/blog/how-to-add-jquery-to-wordpress-jquery-plugin/</link>
		<comments>http://www.adriantomic.se/blog/how-to-add-jquery-to-wordpress-jquery-plugin/#comments</comments>
		<pubDate>Thu, 06 May 2010 12:59:33 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=300</guid>
		<description><![CDATA[Adding jQuery functionality to a WordPress theme is pretty easy. But there are a few things you need to do to make it right. This is a tutorial describing how to activate jQuery (since it&#8217;s already built into WordPress) and later adding a jQuery plugin.
Start by going into your header.php file in your theme directory.
Add [...]]]></description>
			<content:encoded><![CDATA[<p>Adding jQuery functionality to a WordPress theme is pretty easy. But there are a few things you need to do to make it right. This is a tutorial describing how to activate jQuery (since it&#8217;s already built into WordPress) and later adding a jQuery plugin.</p>
<p>Start by going into your header.php file in your theme directory.</p>
<p>Add the code <strong>BEFORE</strong> the <strong>&lt;?php wp_head(); ?&gt;</strong> function.</p>
<p>That&#8217;s it. Now let&#8217;s try if it works.  Create a directory in your theme directory called &#8220;js&#8221; (short for javascript). In the js directory, create a file called <strong>myscript.js.</strong> The <strong>myscript.js</strong> file will contain all the scripts.  In the file <strong>myscript.js</strong> copy and pase the code below.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #006633;">ready</span><span style="color: #009900;">&#40;</span>function<span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// When the document (page) has finished loading.</span>
&nbsp;
alert<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;jQuery is working!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Shows a window displaying &quot;jQuery is working!&quot;</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Save the file and go to your site. You should see a window displaying the text &#8220;jQuery is working!&#8221;</p>
<p>The third step is adding a jQuery plugin. There are a lot of plugins for jQuery out there. I&#8217;ve decided to use the <a href="http://malsup.com/jquery/cycle/" target="_blank">jQuery Cycle plugin</a>. jQuery Cycle will cycle through images or div containers. Take a look at the examples on the site of the plugin.</p>
<p>The first thing you should do is to download the jQuery Cycle files. You can find them <a href="http://malsup.com/jquery/cycle/download.html" target="_blank">here</a>. Place the files in your &#8220;js&#8221; folder.</p>
<p>You now need to notify WordPress about the new jQuery plugin files. You do that by using the wp_enqueue_script (same as the jQuery code). Place the code BEFORE<br />
the <strong> &lt;?php wp_head(); ?&gt;</strong> function and the <strong>&lt;?php wp_enqueue_script(&#8220;jquery&#8221;); ?&gt;</strong>. Like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;?php wp_enqueue_script('myscript', '/wp-content/themes/yourtheme/js/myscript.js'); ?&gt;</pre></div></div>

<p>In your <strong>myscript.js </strong>add the jQuery cycle code. In this example the contents of your <strong>myscript.js </strong>should look like this after you have copy and pasted one of the examples from the jQuery cycle page.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #006633;">ready</span><span style="color: #009900;">&#40;</span>function<span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// When the document (page) has finished loading.</span>
&nbsp;
$<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#s1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">cycle</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'fade'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//jQuery cycle code.</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I hope I made myself clear in this tutorial. If you have any questions or like this tutorial, please make a comment below <img src='http://www.adriantomic.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/blog/how-to-add-jquery-to-wordpress-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery LocalScroll Tutorial</title>
		<link>http://www.adriantomic.se/blog/jquery-localscroll-tutorial/</link>
		<comments>http://www.adriantomic.se/blog/jquery-localscroll-tutorial/#comments</comments>
		<pubDate>Wed, 05 May 2010 00:01:09 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=293</guid>
		<description><![CDATA[This is originally a post that was on my Tumblr blog. Since I just redesigned my portofolio and incorporated my blog into it I now repost the tutorial here. If you (for some reason) like the Tumblr post better, you can find it here.
Another note: I accidentally deleted the demo files   If you [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is originally a post that was on my Tumblr blog. Since I just redesigned my portofolio and incorporated my blog into it I now repost the tutorial here. If you (for some reason) like the Tumblr post better, you can find it <a href="http://adriantomic.tumblr.com/post/75671123/jquery-localscroll-tutorial" target="_blank">here</a>.</em></p>
<p><em>Another note: I accidentally deleted the demo files <img src='http://www.adriantomic.se/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  If you can&#8217;t get the code to work from the tutorial, please comment and I&#8217;ll try to find the time to recreate the demo files. </em></p>
<p>I´m writing this small tutorial since I found it a bit tricky to  implement the jQuery plugin LocalScroll.</p>
<p>This tutorial will help  you add the nice scrolling effect that you can see on <a href="../">my portfolio </a>to your own site. Go  to my portfolio and try clicking on “Contact Me” on my portfolio and  you´ll understand what I´m talking about.</p>
<p><strong>Step one:</strong><br />
Download  jQuery, LocalScroll and ScrollTo. jQuery is the base code. LocalScroll  and ScrollTo are plugins that you can use with jQuery.</p>
<p>jQuery<br />
<a href="http://jquery.com/">http://jquery.com/</a></p>
<p>LocalScroll  &amp; ScrollTo (scroll to the bottom of the page for downloads)<br />
<a href="http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html">http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html</a></p>
<p>You´ll  also need to setup a menu and have &lt;div&gt; tags with a unique id.  For example: A link in the menu to a &lt;div&gt; with the id “#aboutMe”.  If you don´t know what I´m talking about, you can <a href="http://adriantomic.se/blogcontent/localScrollTutorial/localScrollTutorial.html">view</a> or <a href="http://adriantomic.se/blogcontent/localScrollTutorial/jQueryLocalScrollTutorial.zip">download</a> the example files i made.</p>
<p><strong>Step 2:</strong><br />
When you have  downloaded the files you should put them in a folder called “js” (short  for java script). You don´t have to, but it´s good to keep things  organized <img src='http://www.adriantomic.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Make sure the js folder is in the same folder as your  index.html.</p>
<p>These are the files you should have in your js  folder (the version numbers may differ though).<br />
jquery-1.3.1.min.js<br />
jquery.localscroll-1.2.6-min.js<br />
jquery.scrollTo-1.4.0-min.js</p>
<p><strong>Step  3:</strong><br />
Now when you have all the files you need, you just have to  put some code in your html file.</p>
<p>Let´s start with importing the  .js files. Put these lines of code in the &lt;head&gt; tag of your html  file.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=”text/javascript” src=”js/jquery-1.3.1.min.js”&gt;&lt;/script&gt;
&lt;script type=”text/javascript” src=”js/jquery.localscroll-1.2.6-min.js”&gt;&lt;/script&gt;
&lt;script type=”text/javascript” src=”js/jquery.scrollTo-1.4.0-min.js”&gt;&lt;/script&gt;</pre></div></div>

<p>And  then copy and paste this below too (also in your &lt;head&gt; tag).</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=”text/javascript”&gt;
$(document).ready(function () {
$.localScroll();
});
&lt;/script&gt;</pre></div></div>

<p>What we just did was  to first import the .js files. And then implement the localScroll and  scrollTo plugin so it starts when the site is loaded.</p>
<p>The code  below adds a smooth scrolling effect to all your anchor links on the  page.<br />
$.localScroll();<br />
<strong><br />
Step 4:</strong><br />
Click and enjoy the  super smooth scrolling <img src='http://www.adriantomic.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/blog/jquery-localscroll-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Truth About Dyson</title>
		<link>http://www.adriantomic.se/portfolio/the-truth-about-dyson/</link>
		<comments>http://www.adriantomic.se/portfolio/the-truth-about-dyson/#comments</comments>
		<pubDate>Mon, 03 May 2010 15:18:03 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=248</guid>
		<description><![CDATA[The truth about Dyson campaign is just what the name implies. The Japanese customers had some misinformation about the Dyson products. The aim of the campaign was to educate and answer many of the questions the customers asks and might ask about Dyson. I was a part of the idea and strategy team, but I [...]]]></description>
			<content:encoded><![CDATA[<p>The truth about Dyson campaign is just what the name implies. The Japanese customers had some misinformation about the Dyson products. The aim of the campaign was to educate and answer many of the questions the customers asks and might ask about Dyson. I was a part of the idea and strategy team, but I did not take part in the production phase of the campaign.</p>
<p class="button">See the <a href="http://dyson.co.jp/tad/" target="_blank">Live site</a></p>
<p><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/05/fullpage.jpg"><img class="aligncenter size-large wp-image-261" title="fullpage" src="http://www.adriantomic.se/wp-content/uploads/2010/05/fullpage-590x413.jpg" alt="" width="590" height="413" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/portfolio/the-truth-about-dyson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plants</title>
		<link>http://www.adriantomic.se/portfolio/nature/</link>
		<comments>http://www.adriantomic.se/portfolio/nature/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 20:42:20 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.adriantomic.se/?p=156</guid>
		<description><![CDATA[&#8220;Plants&#8221; is a short bumper for a fictional nature documentary  program. I made this while attending Hyper Island. It is the first  project I did in Adobe After Effects, but not my first project as an  animator.
Take a look at my other videos on Vimeo

]]></description>
			<content:encoded><![CDATA[<p>&#8220;Plants&#8221; is a short bumper for a fictional nature documentary  program. I made this while attending <a href="http://www.hyperisland.se" target="_blank">Hyper Island</a>. It is the first  project I did in Adobe After Effects, but not my first project as an  animator.</p>
<p class="button">Take a look at my other videos on <a href="http://vimeo.com/user868507/videos" target="_blank">Vimeo</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="590" height="332" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2959505&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=fff381&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="590" height="332" src="http://vimeo.com/moogaloop.swf?clip_id=2959505&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=fff381&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/portfolio/nature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL dump path and MAMP</title>
		<link>http://www.adriantomic.se/blog/blog-post-2/</link>
		<comments>http://www.adriantomic.se/blog/blog-post-2/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 21:28:29 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://localhost:8888/adriantomic/?p=38</guid>
		<description><![CDATA[When moving this site, I used WordPress DBmanager plugin to back up my database. I had trouble finding the path to mySQL and the mysqldump.
The path to the &#8220;files&#8221; are as follows.
To mysqldump: /Applications/MAMP/Library/bin/mysqldump
To mysql: /Applications/MAMP/Library/bin/mysql
Hope it will help someone  
]]></description>
			<content:encoded><![CDATA[<p>When moving this site, I used WordPress DBmanager plugin to back up my database. I had trouble finding the path to mySQL and the mysqldump.</p>
<p>The path to the &#8220;files&#8221; are as follows.</p>
<p>To mysqldump: /Applications/MAMP/Library/bin/mysqldump<br />
To mysql: /Applications/MAMP/Library/bin/mysql</p>
<p>Hope it will help someone <img src='http://www.adriantomic.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/blog/blog-post-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Night Stories</title>
		<link>http://www.adriantomic.se/portfolio/the-night-stories/</link>
		<comments>http://www.adriantomic.se/portfolio/the-night-stories/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 19:30:42 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://localhost:8888/adriantomic/?p=26</guid>
		<description><![CDATA[Nine talented Swedish film makers got together with Tiger Jeans to  promote their nine new washes. I worked together with my friends at Lowe  Brindfors as a WordPress developer putting everything together  into a  small campaign web site.


]]></description>
			<content:encoded><![CDATA[<p>Nine talented Swedish film makers got together with Tiger Jeans to  promote their nine new washes. I worked together with my friends at <a href="http://www.lowebrindfors.se/" target="_blank">Lowe  Brindfors</a> as a WordPress developer putting everything together  into a  small campaign web site.</p>
<p style="text-align: center;"><a class="thickbox" rel="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/1_over.jpg"><img class="aligncenter size-large wp-image-227 " title="The Night Stories - Landing Page" src="http://www.adriantomic.se/wp-content/uploads/2010/03/1_over-590x442.jpg" alt="" width="590" height="442" /></a></p>
<p style="text-align: center;"><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/4.jpg"><img class="aligncenter size-large wp-image-235" title="4" src="http://www.adriantomic.se/wp-content/uploads/2010/03/4-590x442.jpg" alt="" width="590" height="442" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/portfolio/the-night-stories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dyson DC26</title>
		<link>http://www.adriantomic.se/portfolio/dyson-dc26/</link>
		<comments>http://www.adriantomic.se/portfolio/dyson-dc26/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 19:28:21 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://localhost:8888/adriantomic/?p=23</guid>
		<description><![CDATA[Dyson wanted a digital campaign to raise the awareness of the new DC26 vacuum cleaner on the Japanese market. I designed and directed the interactive banners and the landing page.



Take a look at the Live banner
]]></description>
			<content:encoded><![CDATA[<p>Dyson wanted a digital campaign to raise the awareness of the new DC26 vacuum cleaner on the Japanese market. I designed and directed the interactive banners and the landing page.</p>
<p><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/dysonDc26LandingPage.jpg"><img class="aligncenter size-large wp-image-241" title="dysonDc26LandingPage" src="http://www.adriantomic.se/wp-content/uploads/2010/03/dysonDc26LandingPage-590x762.jpg" alt="" width="590" height="762" /></a></p>
<p style="text-align: center;"><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/dysonDc26LandingPage.jpg"></a><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/dc26banner.jpg"><img class="aligncenter size-large wp-image-278" title="dc26banner" src="http://www.adriantomic.se/wp-content/uploads/2010/03/dc26banner-590x406.jpg" alt="" width="590" height="406" /></a></p>
<p style="text-align: center;"><a class="thickbox" href="http://www.adriantomic.se/wp-content/uploads/2010/03/dc26bannerexpanded.jpg"><img class="aligncenter size-large wp-image-279" title="dc26bannerexpanded" src="http://www.adriantomic.se/wp-content/uploads/2010/03/dc26bannerexpanded-590x407.jpg" alt="" width="590" height="407" /></a></p>
<p class="button">Take a look at the <a href="http://www.adriantomic.se/dc26banner/nikkei_banner_nosecure.html" target="_blank">Live banner</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/portfolio/dyson-dc26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iNSTANT KÖKSBORD</title>
		<link>http://www.adriantomic.se/blog/362006038/</link>
		<comments>http://www.adriantomic.se/blog/362006038/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 22:21:00 +0000</pubDate>
		<dc:creator>Adrian Tomic</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://adriantomic.tumblr.com/post/362006038</guid>
		<description><![CDATA[
En must have app.
http://www.mittegetjavlanarnia.se/?p=2034
]]></description>
			<content:encoded><![CDATA[<div class="figure"><img src="http://30.media.tumblr.com/tumblr_kx2zf0XlH71qz95two1_500.jpg" alt="" /></div>
<p>En must have app.</p>
<p><a href="http://www.mittegetjavlanarnia.se/?p=2034">http://www.mittegetjavlanarnia.se/?p=2034</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adriantomic.se/blog/362006038/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
