<?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>Marius&#039; Blog</title>
	<atom:link href="http://mariuscristiandonea.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariuscristiandonea.com</link>
	<description>A collection of code samples I use for my work ... and my work.</description>
	<lastBuildDate>Sat, 02 Jul 2011 09:35:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Eva Daniels Productions</title>
		<link>http://mariuscristiandonea.com/2011/07/01/eva-daniels-productions/</link>
		<comments>http://mariuscristiandonea.com/2011/07/01/eva-daniels-productions/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 09:43:59 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=478</guid>
		<description><![CDATA[Description: Eva Daniels Productions website. Website: http://www.evadanielsproductions.com/ Design: Vifil Prunner Technologies: AJAX, CSS, HTML, JavaScript/jQuery, PHP, WordPress]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evadanielsproductions.com/"><img class="post-image" src="http://mariuscristiandonea.com/wp-content/uploads/2011/06/eva-daniels-productions.png" alt="va Daniels Productions" title="Eva Daniels Productions" width="460" height="345"/></a></p>
<p><strong>Description:</strong> Eva Daniels Productions website.<br />
<strong>Website:</strong> <a title="Eva Daniels Productions" href="http://www.evadanielsproductions.com/" target="_blank">http://www.evadanielsproductions.com/</a><br />
<strong>Design:</strong> Vifil Prunner<br />
<strong>Technologies: </strong>AJAX, CSS, HTML, JavaScript/jQuery, PHP, WordPress</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/07/01/eva-daniels-productions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Front End AJAX in WordPress</title>
		<link>http://mariuscristiandonea.com/2011/06/29/front-end-ajax-in-wordpress/</link>
		<comments>http://mariuscristiandonea.com/2011/06/29/front-end-ajax-in-wordpress/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 08:14:36 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=451</guid>
		<description><![CDATA[This code will help you use AJAX in WordPress Front End.]]></description>
			<content:encoded><![CDATA[<p>Copy the below code in a file (frontend-ajax.php) and call it as an AJAX url.</p>
<p><strong>PHP code:</strong></p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;"><a href="http://www.php.net/define"><span class="kw3">define</span></a><span class="br0">&#40;</span><span class="st0">&quot;DOING_AJAX&quot;</span><span class="sy0">,</span> <span class="kw4">true</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<span class="kw1">require_once</span><span class="br0">&#40;</span><span class="st0">&quot;../../../wp-load.php&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// Add wp-load.php file.</span><br />
<span class="kw1">if</span><span class="br0">&#40;</span><span class="sy0">!</span><a href="http://www.php.net/isset"><span class="kw3">isset</span></a><span class="br0">&#40;</span><span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;action&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span> <span class="sy0">||</span> <a href="http://www.php.net/trim"><span class="kw3">trim</span></a><span class="br0">&#40;</span><span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;action&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">==</span><span class="st0">&quot;&quot;</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/die"><span class="kw3">die</span></a><span class="br0">&#40;</span><span class="st0">&quot;-1&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span><br />
&nbsp; &nbsp; <br />
<span class="sy0">@</span><a href="http://www.php.net/header"><span class="kw3">header</span></a><span class="br0">&#40;</span><span class="st0">&quot;Content-Type: text/html; charset=&quot;</span><span class="sy0">.</span>get_option<span class="br0">&#40;</span><span class="st0">&quot;blog_charset&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span></p>
<p><span class="kw1">include_once</span><span class="br0">&#40;</span><span class="st0">&quot;filePath&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span> <span class="co1">// Including your plugin&#8217;s main file where ajax actions are defined.</span><br />
send_nosniff_header<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; <br />
<span class="kw1">if</span><span class="br0">&#40;</span>has_action<span class="br0">&#40;</span><span class="st0">&quot;wp_ajax_&quot;</span><span class="sy0">.</span><span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;action&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; do_action<span class="br0">&#40;</span><span class="st0">&quot;wp_ajax_&quot;</span><span class="sy0">.</span><span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;action&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; <a href="http://www.php.net/exit"><span class="kw3">exit</span></a><span class="sy0">;</span><br />
<span class="br0">&#125;</span></p>
<p>status_header<span class="br0">&#40;</span>404<span class="br0">&#41;</span><span class="sy0">;</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/06/29/front-end-ajax-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thumbnail Gallery (WordPress Plugin)</title>
		<link>http://mariuscristiandonea.com/2011/06/17/thumbnail-gallery-wordpress-plugin/</link>
		<comments>http://mariuscristiandonea.com/2011/06/17/thumbnail-gallery-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 07:05:54 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=442</guid>
		<description><![CDATA[Description: This Plugin will help you to easily add a thumbnail gallery to your WordPress website or blog. The gallery is completely customizable, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones). You will be able to insert it in any page or post you want with inbuilt short code [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/thumbnail-gallery-wordpress-plugin/294024?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Thumbnail Gallery (WordPress Plugin)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/06/thumbnail-gallery-wordpress.png" alt="Thumbnail Gallery (WordPress Plugin)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> This Plugin will help you to easily add a thumbnail gallery to your WordPress website or blog. The gallery is completely customizable, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones). You will be able to insert it in any page or post you want with inbuilt<br />
short code generator.<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/thumbnail-gallery-wordpress-plugin/294024?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>AJAX, CSS, HTML, JavaScript, jQuery, PHP, WordPress</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/06/17/thumbnail-gallery-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wall/Grid Gallery (WordPress Plugin)</title>
		<link>http://mariuscristiandonea.com/2011/06/14/wallgrid-gallery-wordpress-plugin/</link>
		<comments>http://mariuscristiandonea.com/2011/06/14/wallgrid-gallery-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 10:04:11 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=438</guid>
		<description><![CDATA[Description: This Plugin will help you to easily add a grid gallery to your WordPress website or blog. The gallery is completely customizable, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones). You will be able to insert it in any page or post you want with inbuilt short code [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/wallgrid-gallery-wordpress-plugin/270895?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Wall/Grid Gallery (WordPress Plugin)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/06/wall-grid-gallery-wordpress.png" alt="Wall/Grid Gallery (WordPress Plugin)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> This Plugin will help you to easily add a grid gallery to your WordPress website or blog. The gallery is completely customizable, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones). You will be able to insert it in any page or post you want with inbuilt short code generator.<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/wallgrid-gallery-wordpress-plugin/270895?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>AJAX, CSS, HTML, JavaScript, jQuery, PHP, WordPress</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/06/14/wallgrid-gallery-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX Booking Calendar Pro (jQuery Plugin)</title>
		<link>http://mariuscristiandonea.com/2011/05/30/ajax-booking-calendar-pro-jquery-plugin/</link>
		<comments>http://mariuscristiandonea.com/2011/05/30/ajax-booking-calendar-pro-jquery-plugin/#comments</comments>
		<pubDate>Mon, 30 May 2011 08:20:57 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=435</guid>
		<description><![CDATA[Description: This item is ideal if you want to add information about bookings to your rentals website. The Back End is easy to use and can be easily integrated into your own CMS as the Front End can be easily integrated into your website. Both Back End and Front End can be customized separately, and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/ajax-booking-calendar-pro-jquery-plugin/244645?ref=MariusCristianDonea"><img class="post-image" title="AJAX Booking Calendar Pro" src="http://mariuscristiandonea.com/wp-content/uploads/2011/05/booking-calendar-jquery.png" alt="" width="460" height="345" /></a></p>
<p><strong>Description:</strong> This item is ideal if you want to add information about bookings to your rentals website. The Back End is easy to use and can be easily integrated into your own CMS as the Front End can be easily integrated into your website. Both Back End and Front End can be customized separately, and the number of usages on your webpage or website is unlimited.<br />
The Calendar comes with a PHP script, but any server side script can be used to load or to save data from any database. The Booking Calendar is compatible with all browsers and devices (iPhone, iPad and Android smartphones).<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/ajax-booking-calendar-pro-jquery-plugin/244645?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>AJAX, CSS, HTML, JavaScript, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/05/30/ajax-booking-calendar-pro-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Image Loader (jQuery Plugin)</title>
		<link>http://mariuscristiandonea.com/2011/05/11/image-loader-jquery-plugin/</link>
		<comments>http://mariuscristiandonea.com/2011/05/11/image-loader-jquery-plugin/#comments</comments>
		<pubDate>Wed, 11 May 2011 07:09:00 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=426</guid>
		<description><![CDATA[This jQuery Plugin is ideal to load, preload, resize … the images on your website. The Plugin is compatible with all browsers and devices (iPhone, iPad and Android smartphones).]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/image-loader-jquery-plugin/238077?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Image Loader (jQuery Plugin)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/05/image-loader-jquery.png" alt="Image Loader (jQuery Plugin)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> This jQuery Plugin is ideal to load, preload, resize … the images on your website. The Plugin is compatible with all browsers and devices (iPhone, iPad and Android smartphones).<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/image-loader-jquery-plugin/238077?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>CSS, HTML, JavaScript, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/05/11/image-loader-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use gradient and a background image on the same element with CSS3</title>
		<link>http://mariuscristiandonea.com/2011/03/29/how-to-use-gradient-and-a-background-image-on-the-same-element-with-css3/</link>
		<comments>http://mariuscristiandonea.com/2011/03/29/how-to-use-gradient-and-a-background-image-on-the-same-element-with-css3/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 11:22:05 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=412</guid>
		<description><![CDATA[Use this CSS code to use gradient and a background image on the same element.]]></description>
			<content:encoded><![CDATA[<p>Use this CSS code to use gradient and a background image on the same element.</p>
<p><strong>CSS code:</strong></p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;"><span class="re0">#id</span><span class="sy0">,</span> .class<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">background</span><span class="sy0">:</span> <span class="kw2">url</span><span class="br0">&#40;</span><span class="br0">&#91;</span>IMAGE URL<span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">,</span> -webkit-gradient<span class="br0">&#40;</span>linear<span class="sy0">,</span> <span class="kw1">left</span> <span class="kw1">bottom</span><span class="sy0">,</span> <span class="kw1">left</span> <span class="kw1">top</span><span class="sy0">,</span> color-stop<span class="br0">&#40;</span>0<span class="sy0">,</span> <span class="br0">&#91;</span>COLOR<span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">,</span> color-stop<span class="br0">&#40;</span>1<span class="sy0">,</span> <span class="br0">&#91;</span>COLOR<span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; <span class="kw1">background</span><span class="sy0">:</span> <span class="kw2">url</span><span class="br0">&#40;</span><span class="br0">&#91;</span>IMAGE URL<span class="br0">&#93;</span><span class="br0">&#41;</span> <span class="re3">0px</span> <span class="re3">-80px</span><span class="sy0">,</span> -moz-linear-gradient<span class="br0">&#40;</span><span class="kw2">center</span> <span class="kw1">bottom</span><span class="sy0">,</span> <span class="br0">&#91;</span>COLOR<span class="br0">&#93;</span> <span class="re3"><span class="nu0">0</span>%</span><span class="sy0">,</span> <span class="br0">&#91;</span>COLOR<span class="br0">&#93;</span> <span class="re3"><span class="nu0">100</span>%</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/03/29/how-to-use-gradient-and-a-background-image-on-the-same-element-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thumbnail Scroller (jQuery Plugin / XML)</title>
		<link>http://mariuscristiandonea.com/2011/03/16/thumbnail-scroller-jquery-plugin-xml/</link>
		<comments>http://mariuscristiandonea.com/2011/03/16/thumbnail-scroller-jquery-plugin-xml/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 06:06:01 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=400</guid>
		<description><![CDATA[This jQuery Plugin is ideal if you need a fast and very customizable Thumbnail Scroller. The scroller is completely editable from a XML file, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/thumbnail-scroller-jquery-plugin-xml/168867?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Thumbnail Scroller (jQuery Plugin / XML)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/03/thumbnail-scroller-jquery.png" alt="Thumbnail Scroller (jQuery Plugin / XML)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> This jQuery Plugin is ideal if you need a fast and very customizable Thumbnail Scroller. The scroller is completely editable from a XML file, resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/thumbnail-scroller-jquery-plugin-xml/168867?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>CSS, HTML, JavaScript, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/03/16/thumbnail-scroller-jquery-plugin-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thumbnail Gallery (jQuery Plugin / XML)</title>
		<link>http://mariuscristiandonea.com/2011/03/03/thumbnail-gallery-jquery-plugin-xml/</link>
		<comments>http://mariuscristiandonea.com/2011/03/03/thumbnail-gallery-jquery-plugin-xml/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 08:40:10 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=396</guid>
		<description><![CDATA[A very customizable jQuery Plugin Thumbnail Gallery, that can be edited from a XML file. The gallery is completely resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/thumbnail-gallery-jquery-plugin-xml/164050?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Thumbnail Gallery (jQuery Plugin / XML)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/02/thumbnail-gallery-jquery.png" alt="Thumbnail Gallery (jQuery Plugin / XML)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> A very customizable jQuery Plugin Thumbnail Gallery, that can be edited from a XML file. The gallery is completely resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/thumbnail-gallery-jquery-plugin-xml/164050?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>CSS, HTML, JavaScript, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/03/03/thumbnail-gallery-jquery-plugin-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wall/Grid Gallery (jQuery Plugin / XML)</title>
		<link>http://mariuscristiandonea.com/2011/02/20/wallgrid-gallery-jquery-plugin-xml/</link>
		<comments>http://mariuscristiandonea.com/2011/02/20/wallgrid-gallery-jquery-plugin-xml/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 13:30:14 +0000</pubDate>
		<dc:creator>Marius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript jQuery]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://mariuscristiandonea.com/?p=381</guid>
		<description><![CDATA[A very customizable jQuery Plugin Gallery, that can be edited from a XML file. The gallery is completely resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).]]></description>
			<content:encoded><![CDATA[<p><a href="http://codecanyon.net/item/wallgrid-gallery-jquery-plugin-xml/161458?ref=MariusCristianDonea" target="_blank"><img class="post-image" title="Wall/Grid Gallery (jQuery Plugin / XML)" src="http://mariuscristiandonea.com/wp-content/uploads/2011/02/wall-grid-gallery-jquery1.png" alt="Wall/Grid Gallery (jQuery Plugin / XML)" width="460" height="345" /></a></p>
<p><strong>Description:</strong> A very customizable jQuery Plugin Gallery, that can be edited from a XML file. The gallery is completely resizable and is compatible with all browsers and devices (iPhone, iPad and Android smartphones).<br />
<strong>Download &amp; Preview:</strong> <a title="CodeCanyon" href="http://codecanyon.net/item/wallgrid-gallery-jquery-plugin-xml/161458?ref=MariusCristianDonea" target="_blank">CodeCanyon</a><br />
<strong>Technologies: </strong>CSS, HTML, JavaScript, jQuery</p>
]]></content:encoded>
			<wfw:commentRss>http://mariuscristiandonea.com/2011/02/20/wallgrid-gallery-jquery-plugin-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

