<?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>Productivedreams.com &#187; jQuery</title>
	<atom:link href="http://www.productivedreams.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.productivedreams.com</link>
	<description>A blog to keep you updated on the latest design trends.</description>
	<lastBuildDate>Sat, 27 Mar 2010 04:09:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>3 common requirements/issues and the corresponding Jquery solutions for your next web project</title>
		<link>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/</link>
		<comments>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 11:30:10 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1756</guid>
		<description><![CDATA[Hi friends&#8230; Another post to boost your productivity   Recently, while working on some client projects, I noticed a few requirements(I know there are many) that were common. I strongly feel, this will be useful for your next web project.<br />1. Empty form field value on focus/click<br />The requirement/issue:This is a very common requirement. You would [...]]]></description>
			<content:encoded><![CDATA[Hi friends&#8230; Another post to boost your productivity <span> <img src='http://www.productivedreams.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span><p>Recently, while working on some client projects, I noticed a few requirements(I know there are many) that were common. I strongly feel, this will be useful for your next web project.</p>
<br /><h1>1. Empty form field value on focus/click</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/form-focus.jpg" alt="form-focus" title="form-focus" width="508" height="209" class="alignnone size-full wp-image-1808" /><span id="more-1756"></span><br /><strong>The requirement/issue:</strong><p>This is a very common requirement. You would have noticed form fields that have a value by default which disappears when you click/focus on them. When you click outside, the value appears again.</p>
<strong>Solution:</strong><br /><a href="http://www.madewithlove.be/talk/the-jquery-emptyonclick-plugin">The jQuery emptyonclick Plugin</a> works like a charm. All you need to do is download this plugin to your project directory and include the following code within the head tags.<br /><br /><pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">01</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">02</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;jquery.emptyonclick.js&quot;&gt;&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">$(document).ready(function(){</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">    $('.emptyonclick').emptyonclick();</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});</pre></td></tr><tr><td class="devcodelines" width="1%">11</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">12</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre>
<br />Now add the class "emptyonclick" to all form fields that you would like to empty onclick.<br /><br />You can find more about the usage <a href="http://www.madewithlove.be/talk/the-jquery-emptyonclick-plugin">here</a><br /><br /><h1>2. Truncate lengthy text with either a "more" button or 3 dots at the end</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/truncate-with-dots.jpg" alt="truncate-with-dots" title="truncate-with-dots" width="508" height="209" class="alignnone size-full wp-image-1809" /><br /><strong>The requirement/issue:</strong><p>I am sure that most of you would already have faced this issue, especially with lengthy breadcrumbs. You don't have to run behind and bother a programmer anymore for a solution.</p>
<strong>Solution:</strong><p><a href="http://www.reindel.com/truncate">Truncate</a> is an awesome jQuery plugin that helps you achieve this in seconds. Download the plugin and include the following code within the head tags</p>
<br /><pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">01</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">02</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script charset=&quot;utf-8&quot; type=&quot;text/javascript&quot; src=&quot;jquery.truncate-2.3.js&quot;&gt;&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">$(function() {</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">    $(&quot;.classname&quot;).truncate( 60 );</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});</pre></td></tr><tr><td class="devcodelines" width="1%">11</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">12</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&nbsp;</pre></td></tr><tr><td class="devcodelines" width="1%">13</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>Replace the .classname with the class name of your HTML element that contains the text. Also, the number 60 in the code above is the maximum number of characters you would like to allow before truncating. Replace that with your value.</p><p>Adding a "more" link at the end of the text is another cool usage. You can find more about the usage <a href="http://www.reindel.com/truncate/">here</a>.</p>
<h1>3. Adding classes to the first and last list items</h1>
<img src="http://www.productivedreams.com/wp-content/uploads/2010/03/first-last-class-li.jpg" alt="first-last-class-li" title="first-last-class-li" width="508" height="209" class="alignnone size-full wp-image-1810" /><br /><strong>The requirement/issue:</strong><p>I don't think there will be a HTML/CSS developer who haven't abused wordpress for not adding first and last classes for their lists</p><p>Just imagine a menu that needs a different background for the first and last list item. You'll find this handy when creating themes for a CMS like wordpress where you have no control over the HTML code.</p>
<strong>Solution:</strong><p>After spending a few minutes on google, I found <a href="http://snipplr.com/view/26333/jquery--add-first-and-last-class-to-li/">this snippet</a></p>
<pre class="devcodeblock" title="Javascript"><table class="devcodetools"><tbody><tr><td>Javascript</td></tr></tbody></table><div class="devcodeoverflow"><table class="devcodearea" width="100%"><tr><td class="devcodelines" width="1%">01</td><td class="devcodelinesarea"><pre class="devcode devcodeline"></pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">02</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines" width="1%">03</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">04</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">&lt;script type=&quot;text/javascript&quot;&gt;</pre></td></tr><tr><td class="devcodelines" width="1%">05</td><td class="devcodelinesarea"><pre class="devcode devcodeline">$(function(){</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">06</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">  $(&quot;li:first-child&quot;).addClass(&quot;first_item&quot;);</pre></td></tr><tr><td class="devcodelines" width="1%">07</td><td class="devcodelinesarea"><pre class="devcode devcodeline">  $(&quot;li:last-child&quot;).addClass(&quot;last_item&quot;);</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">08</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline">});</pre></td></tr><tr><td class="devcodelines" width="1%">09</td><td class="devcodelinesarea"><pre class="devcode devcodeline">&lt;/script&gt;</pre></td></tr><tr><td class="devcodelines devcodelinesodd" width="1%">10</td><td class="devcodelinesarea devcodelinesareaodd"><pre class="devcode devcodeline"></pre></td></tr></table></div></pre><p>This can also be achieved using the :first-child and :last-child CSS pseudo-classes.</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/simple-css-based-usability-tip-for-search-buttons/" title="A simple CSS based usability tip for search buttons">A simple CSS based usability tip for search buttons</a></li><li><a href="http://www.productivedreams.com/making-gallery-submissions-easy-for-designers/" title="Making gallery submissions easy for designers">Making gallery submissions easy for designers</a></li><li><a href="http://www.productivedreams.com/everything-you-need-to-know-about-parallax/" title="Everything you need to know about Parallax">Everything you need to know about Parallax</a></li><li><a href="http://www.productivedreams.com/ie-css-hack-without-using-any-hacks/" title="IE CSS hack without using any hacks!">IE CSS hack without using any hacks!</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Everything you need to know about Parallax</title>
		<link>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/</link>
		<comments>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 18:50:04 +0000</pubDate>
		<dc:creator>Gopal Raju</dc:creator>
				<category><![CDATA[Inspirations]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Trends]]></category>

		<guid isPermaLink="false">http://www.productivedreams.com/?p=1374</guid>
		<description><![CDATA[1. What is parallax?If you are looking for a definition of parallax, here it goes. As far as the web (especially design) industry is concerned, parallax is the arrangement/animation of images in a way that lets you feel the distance between them. For example, imagine that you are looking through the window of a moving [...]]]></description>
			<content:encoded><![CDATA[<h1>1. What is parallax?</h1><p>If you are looking for a definition of parallax, <a href="http://en.wikipedia.org/wiki/Parallax">here it goes</a>. As far as the web (especially design) industry is concerned, <strong>parallax is the arrangement/animation of images in a way that lets you feel the distance between them</strong>. </p><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/parallax_post.jpg" alt="Everything about parallax" title="Everything about parallax" width="508" height="201" class="alignnone size-full wp-image-1446" /><p>For example, imagine that you are looking through the window of a moving vehicle. You will see the objects closer to you moving faster compared to the distant ones. The sun stays still while the trees, buildings and other objects move.</p><p>In this post I would like to walk you through different posts, examples and tutorials that would help you achieve this effect. </p><p>This technique was initially used in 2d video games and now mostly seen in single page portfolio websites and website headers.</p><span id="more-1374"></span><br /><h1>2. Parallax in use</h1><p>I would like to show you a few hand-picked websites that uses parallax before I proceed.</p><p><strong>Eric J</strong> &#8211; This is one of my favorite websites using Parallax in the way it should be. The motion of the wheel and the smoke that comes out of the silencer as the scooter moves  adds up to the parallax feel.</p>
<a href="http://ericj.se/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/ericj.jpg" alt="ericj" title="Ericj - javascript parallax" width="508" height="264" class="alignnone size-full wp-image-1386" /></a><p><strong>Markus Neidel</strong> &#8211; This is an awesome 3d vertical parallax (flash).</p>
<a href="http://www.markus-neidel.de/wayofthesheep.htm"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/markus-neidel.jpg" alt="Markus Neidel - Flash" title="markus-neidel" width="508" height="264" class="alignnone size-full wp-image-1388" /></a><p><strong>Silverback</strong> &#8211; To see the effect in this site, you would have to resize your browser window and notice the header region.</p>
<a href="http://www.silverbackapp.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/silverback.jpg" alt="Silverback - CSS Background parallax" title="silverback" width="508" height="264" class="alignnone size-full wp-image-1389" /></a><p><strong>Umaghet Zeggen</strong> &#8211; All you need to do is move your mouse (towards any direction).</p>
<a href="http://www.umaghetzeggen.nl"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/umaghetzeggen.jpg" alt="http://www.umaghetzeggen.nl/" title="umaghetzeggen" width="508" height="264" class="size-full wp-image-1391" /></a><p><strong>Squaredeye</strong> &#8211; Resize your browser window and notice the movement of clouds in the header. A css based parallax.</p>
<a href="http://squaredeye.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/squaredeye.jpg" alt="Squaredeye Header" title="Squaredeye Header" width="508" height="264" class="alignnone size-full wp-image-1394" /></a><p><strong>Dezignus</strong> &#8211; Move your mouse over the header region (towards any direction).</p>
<a href="http://dezignus.com/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/designus.jpg" alt="designus" title="designus" width="508" height="264" class="alignnone size-full wp-image-1397" /></a><br /><h1>3. Now, how do I create Parallax?</h1><p>Let&#8217;s see how to create this effect using javascript, flash and other frameworks.</p>
<h1>Using JQuery</h1><p>You&#8217;d probably be aware, I am  a JQuery fan and for that reason I would like to first list down the methods using JQuery to achieve the Parallax effect.</p><p>These tutorials use <strong>jparallax</strong> &#8211; a jQuery plugin to create parallax</p>
<a href="http://webdev.stephband.info/parallax.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/jparallax.jpg" alt="jParallax - A jQuery Parallax Plugin" title="jParallax - A jQuery Parallax Plugin" width="508" height="264" class="alignnone size-full wp-image-1402" /></a><p>Create a Parallax Website Header</p><a href="http://progtuts.info/186/create-a-parallax-website-header/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/progtuts.jpg" alt="progtuts - jParallax header" title="progtuts - jParallax header" width="508" height="264" class="alignnone size-full wp-image-1411" /></a><br /><h1>Using Mootools</h1><p>Not familiar with JQuery huh? Here goes a tutorial that uses mParallax a mootools adaptation similar to jParallax.</p><a href="http://www.piksite.com/mParallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/piksite.jpg" alt="piksite mParallax" title="piksite" width="508" height="264" class="alignnone size-full wp-image-1415" /></a><p>Another demo using Mootools</p>
<a href="http://www.csslab.cl/ejemplos/parallax_mootools/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/csslab.jpg" alt="csslab - Mootools" title="csslab - Mootools" width="508" height="264" class="alignnone size-full wp-image-1417" /></a><br /><h1>Using Scriptaculous</h1><p>This one uses scriptaculous another popular javascript framework.</p>
<a href="http://offtheline.net/2008/2/28/parallax-animation-with-css-js"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/offtheline.jpg" alt="offtheline - Scriptaculous" title="offtheline - Scriptaculous" width="508" height="264" class="alignnone size-full wp-image-1419" /></a><br /><h1>Using Javascript &#8211; A Vertical Parallax</h1>
A vertical parallax based on javascript.<br /><a href="http://inner.geek.nz/javascript/parallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/innergeek.jpg" alt="innergeek" title="innergeek" width="508" height="264" class="alignnone size-full wp-image-1424" /></a><br /><h1>Using pure CSS</h1><p>Unlike the ones above, this would work only when the user re-sizes the browser window. This is achieved using css positioning. </p><p>A tutorial on how to create the <a href="http://www.silverbackapp.com/">Silverback Parallax</a> (shown above) using CSS.</p>
<a href="http://carsonified.com/blog/design/how-to-recreate-silverbacks-parallax-effect/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/carsonified.jpg" alt="carsonified" title="carsonified" width="508" height="264" class="alignnone size-full wp-image-1426" /></a><p>Examples of and How to Create the CSS Parallax Effect</p>
<a href="http://forthelose.org/examples-of-and-how-to-do-the-css-parallax-effect"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/forthelose.jpg" alt="forthelose" title="forthelose" width="508" height="264" class="alignnone size-full wp-image-1429" /></a><p>This is a really interesting one! A parallax illusion with CSS</p><a href="http://www.marcofolio.net/css/a_parallax_illusion_with_css_the_horse_in_motion.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/marcofolio.jpg" alt="marcofolio - Parallax Illusion" title="marcofolio - Parallax Illusion" width="508" height="264" class="alignnone size-full wp-image-1431" /></a><br /><h1>Parallax using Flash</h1><p>A step by step tutorial by webdesignerwall.</p><a href="http://www.webdesignerwall.com/tutorials/parallax-gallery/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/webdesignerwall.jpg" alt="webdesignerwall" title="webdesignerwall" width="508" height="264" class="alignnone size-full wp-image-1434" /></a><p> Creating parallax with flash cs4</p>
<a href="http://www.webdesign.org/web/flash-&#038;-swish/flash-tutorials/create-a-classic-3d-effect--parallax--with-flash-cs4.17899.html"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/webdesignorg.jpg" alt="webdesignorg" title="webdesignorg" width="508" height="264" class="alignnone size-full wp-image-1436" /></a><br /><h1>Are you an AfterEffects freak?</h1><p>If so, this tutorial is for you. Create a Realistic Camera Move with Parallax.</p>
<a href="http://ae.tutsplus.com/tutorials/vfx/create-a-realistic-camera-move-with-parallax/"><img src="http://www.productivedreams.com/wp-content/uploads/2009/10/tutplus.jpg" alt="tutplus - Aftereffects Parallax" title="tutplus - Aftereffects Parallax" width="508" height="264" class="alignnone size-full wp-image-1439" /></a><p>So, that&#8217;s all about Parallax. I hope this post was informative</p><div class="relposts"><h3>RELATED POSTS</h3><ul class="related_post"><li><a href="http://www.productivedreams.com/common-requirements-for-website-design-and-corresponding-jquery-solutions/" title="3 common requirements/issues and the corresponding Jquery solutions for your next web project">3 common requirements/issues and the corresponding Jquery solutions for your next web project</a></li><li><a href="http://www.productivedreams.com/web-design-trend-paper-planes/" title="Trend Review: Paper Planes">Trend Review: Paper Planes</a></li><li><a href="http://www.productivedreams.com/trend-review-coffee-stains-webdesign/" title="Trend Review: Coffee Stains in Web Design">Trend Review: Coffee Stains in Web Design</a></li><li><a href="http://www.productivedreams.com/web20-rockets-and-gliders/" title="Trend Review: Web2.0 Rockets and Gliders in Webdesign!">Trend Review: Web2.0 Rockets and Gliders in Webdesign!</a></li><li><a href="http://www.productivedreams.com/parachutes-an-emerging-trend-in-webdesign/" title="Parachutes/Hot Air Balloons &#8211; An Emerging Trend in Webdesign">Parachutes/Hot Air Balloons &#8211; An Emerging Trend in Webdesign</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.productivedreams.com/everything-you-need-to-know-about-parallax/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
