<?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>hv-designs &#187; jquery</title>
	<atom:link href="http://www.hv-designs.co.uk/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hv-designs.co.uk</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 07:01:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery Menu w/ Drop Down Tutorial</title>
		<link>http://www.hv-designs.co.uk/2011/05/30/jquery-menu-w-drop-down-tutorial/</link>
		<comments>http://www.hv-designs.co.uk/2011/05/30/jquery-menu-w-drop-down-tutorial/#comments</comments>
		<pubDate>Mon, 30 May 2011 06:01:23 +0000</pubDate>
		<dc:creator>Afraz Shahid</dc:creator>
				<category><![CDATA[JQuery Tutorials]]></category>
		<category><![CDATA[drop down]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mouse over]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.hv-designs.co.uk/?p=4741</guid>
		<description><![CDATA[Before 2006, it was not possible to make transitions, animations and other decent web stuff quickly within seconds. You will find a lot of plugins for menus, banners, etc. for the jQuery. With the same purpose, my today’s tutorial is about a menu which has all the decent and stylish animated functionality, what you may [...]]]></description>
			<content:encoded><![CDATA[<p>Before 2006, it was not possible to make transitions, animations and other decent web stuff quickly within seconds. You will find a lot of plugins for menus, banners, etc. for the jQuery.</p>
<p>With the same purpose, my today’s tutorial is about a menu which has all the decent and stylish animated functionality, what you may be looking for. I’ll not go into details of HTML and CSS, I’m assuming you know about that or you can copy the HTML and CSS from below.<span id="more-4741"></span></p>
<h2>Slicing PSD</h2>
<p>We have a free PSD for this tutorial and we’re using that in our tutorial, scroll down to download the PSD. Following is the snapshot how we will slice out.</p>
<p><img src="http://www.hv-designs.co.uk/wordpress/wp-content/uploads/2011/05/slicing-psd.jpg" alt="slicing PSD" /></p>
<h2>The HTML Structure</h2>
<p>As you can see in the PSD, there are Menu items and one Search Bar on right side. The HTML for all those elements goes here.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;main-navigation&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;

			&lt;ul&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 1&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 2&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 4&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 5&lt;/a&gt;&lt;/li&gt;

			&lt;/ul&gt;

		&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Services&lt;/a&gt;

			&lt;ul&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 1&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 2&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 4&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 5&lt;/a&gt;&lt;/li&gt;

			&lt;/ul&gt;

		&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Portfolio&lt;/a&gt;

			&lt;ul&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 1&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 2&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 4&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 5&lt;/a&gt;&lt;/li&gt;

			&lt;/ul&gt;

		&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Contact&lt;/a&gt;

			&lt;ul&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 1&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 2&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 4&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Sub Menu Item 5&lt;/a&gt;&lt;/li&gt;
			&lt;/ul&gt;
		&lt;/li&gt;
	&lt;/ul&gt;

	&lt;div class=&quot;search&quot;&gt;
		&lt;input type=&quot;text&quot; name=&quot;search&quot; class=&quot;search-input&quot; /&gt;
		&lt;input type=&quot;submit&quot; name=&quot;search&quot; value=&quot;&quot; class=&quot;search-btn&quot; /&gt;
	&lt;/div&gt;

&lt;/div&gt;
</pre>
<p>Keep in mind I’ve added sub menus within the list item.</p>
<h2>The CSS</h2>
<p>Below is the CSS which used to format the menu. Apply the styles and see results in browser.</p>
<pre class="brush: css; title: ; notranslate">
.main-navigation{
	width:890px;
	height:44px;
	border:1px dashed #a2d2cf;
	background:url(../images/nav-bg.jpg) left repeat-x;
	top:50%;
	left:50%;
	margin:-22px 0 0 -445px;
	position:absolute;
	}

ul{
	margin:0px;
	padding:0px;
	list-style:none;

	}

li{
	float:left;
	font-size:15px;
	color:#FFFFFF;
	height:42px;
	display:block;
	position:relative;

	}

li .hover{
	color:#FFFFFF;
	text-decoration:none;
	position:absolute;
	background:url(../images/hover-bg.png) top left no-repeat;
	top:0;
	left:0;
	z-index:0;
	height:44px;
	display:none;
	}

li a{
	display:block;
	color:#FFFFFF;
	text-decoration:none;
	padding:14px 43px 13px 44px;
	z-index:1000;
	position:relative;
	}

.search{
	float:right;
	margin:9px 26px 0 0;
	padding:0px;
	}

.search-input{
	font-family:LucidaGrande, Lucida Sans, Arial;
	font-size:12px;
	color:#FFFFFF;
	width:117px;
	height:26px;
	padding:0 5px 0 10px;
	padding:5px 5px 0 10px \9;/* IE 7 and 8 */
	border:0;
	outline:none;
	background:url(../images/search-input-bg.png) top left no-repeat;
	float:left;
	}

.search-btn{
	width:37px;
	height:26px;
	border:0;
	outline:none;
	background:url(../images/search-btn.png) top left no-repeat;
	float:left;
	}

ul li ul{
	width:200px;
	position:absolute;
	display:none;
	top:44px;
	padding:1px 0 0 0;
	}

ul li:hover ul{

	display:block;

	}

ul li ul li{
	display:block;
	padding:10px 10px 10px 0;
	width:200px;
	padding:0px;
	margin:0px;
	background:url(../images/nav-bg.jpg) left repeat-x;
	position:relative;
	}

ul li ul li a{
	display:block;
	color:#FFFFFF;
	text-decoration:none;
	padding:14px 43px 13px 28px;
	z-index:1000;
	position:relative;
	}
</pre>
<p>Now you can view a decent looking menu with search box. You can check it’s functionality, it’s simple. Now we go ahead and work with jQuery to apply some effects to look it more decent. Here is the CSS menu snapshot.</p>
<p><img src="http://www.hv-designs.co.uk/wordpress/wp-content/uploads/2011/05/css-xhtml-view.jpg" alt="CSS XHTML View" /></p>
<h2>The jQuery</h2>
<p>Now, the actual part of tutorial begins here. I will teach you step by step here. Go to the head section of your page and paste the following code.</p>
<pre class="brush: plain; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot; src=&quot; https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {

});

&lt;/script&gt;
</pre>
<p>I’ve included jQuery library from google libraries. After that, a normal script is started and in the //</p>
<p>After this, we will go for another function. That will do the same as we use some mouseover and mouseout functions. Let’s see the code.</p>
<pre class="brush: plain; title: ; notranslate">
$(&quot;li&quot;).hover(function() {
	//This function will call the HOVER event on any li.
} , function() {
	//This function will call the HOVER OUT event on the li which was hovered.
});
</pre>
<p>A basic function is ready and we will add all the transitions for menu here.</p>
<pre class="brush: plain; title: ; notranslate">
var itemwidth = $(this).width(); /* Getting the LI width */
$(this).prepend(&quot;&lt;div class='hover'&gt;&lt;/div&gt;&quot;); /* Inserting a blank div into within li above the &lt;a&gt; tag*/
$(this).find(&quot;div&quot;).fadeIn('10000').css({ 'width' : itemwidth}); /* Using the itemwidth for the div to display properly*/
$(this).find(&quot;ul&quot;).fadeIn('1000').slideDown('10000').css(&quot;display&quot;, &quot;block&quot;);
</pre>
<p>After putting the above code into HOVER function, our code will look like this.</p>
<pre class="brush: plain; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot; https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function() {

$(&quot;li&quot;).hover(function() {

var itemwidth = $(this).width(); /* Getting the LI width */
$(this).prepend(&quot;&lt;div class='hover'&gt;&lt;/div&gt;&quot;); /* Inserting a blank div into within li above the &lt;a&gt; tag*/
$(this).find(&quot;div&quot;).fadeIn('10000').css({ 'width' : itemwidth}); /* Using the itemwidth for the div to display properly*/
$(this).find(&quot;ul&quot;).fadeIn('1000').slideDown('10000').css(&quot;display&quot;, &quot;block&quot;);

} , function() {
	//This function will call the HOVER OUT event on the li which was hovered.
});

});

&lt;/script&gt;
</pre>
<p>Now, we will work down the HOVER OUT event. Remove the HOVER OUT comments and put the following code in it.</p>
<pre class="brush: plain; title: ; notranslate">
$(this).find(&quot;div&quot;).slideUp('1000').fadeOut('1000');/* sliding up and fading out the hover div */
$(this).find(&quot;div&quot;).remove();/* removing the &lt;div&gt; code from html at every mouseout event*/
$(this).find(&quot;ul&quot;).fadeOut('1000'); /* fading out the sub menu */
</pre>
<p>Well. If you test the menu, it’s really amazing drop down and hover effects. The menu part has been done. We will go ahead and work on the animation of search box.</p>
<p>We will create two functions here. Focus and Focus out. Both are as follows:</p>
<pre class="brush: plain; title: ; notranslate">

$(&quot;.search-input&quot;).focus(function(){
$(this).animate({width:'180px'}, 500); /* on focus, increasing the input width of search to left side*/
	});

$(&quot;.search-input&quot;).focusout(function(){
	$(this).animate({width:'117px'}, 500);  /* on focus, decreasing the input width of search to left side*/
	});
</pre>
<p>Your jQuery menu including sub menu and search box are ready to use.</p>
<h2>Conclusion</h2>
<p>There are thousands of jQuery plugins available to use but the purpose of this tutorial is to give you a detailed practice how the jQuery work and how it creates animation in no time. I hope you will like the menu and give us feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hv-designs.co.uk/2011/05/30/jquery-menu-w-drop-down-tutorial/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Simple jQuery/CSS3 Modal Box</title>
		<link>http://www.hv-designs.co.uk/2011/03/20/simple-jquerycss3-modal-box/</link>
		<comments>http://www.hv-designs.co.uk/2011/03/20/simple-jquerycss3-modal-box/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 20:18:09 +0000</pubDate>
		<dc:creator>Lee Grant</dc:creator>
				<category><![CDATA[JQuery Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[media]]></category>

		<guid isPermaLink="false">http://www.hv-designs.co.uk/?p=4318</guid>
		<description><![CDATA[Seeing as how my last tutorial about the &#8220;jQuery slide effect&#8221; had a great response I thought I&#8217;d be back to write another simple easy-to-follow jQuery tutorial for you guys. What we&#8217;ll be making today is a jQuery modal box which can be used can used for all sorts including images, forms and in my [...]]]></description>
			<content:encoded><![CDATA[<p>Seeing as how my last tutorial about the &#8220;<a href="http://www.hv-designs.co.uk/2010/10/20/jquery-slide-effect">jQuery slide effect</a>&#8221; had a great response I thought I&#8217;d be back to write another simple easy-to-follow jQuery tutorial for you guys.<span id="more-4318"></span></p>
<p>What we&#8217;ll be making today is a jQuery modal box which can be used can used for all sorts including images, forms and in my case, my blogging profile.<!--more--></p>
<h2>The Live Demo</h2>
<p>You can view the Live Demo <a href="http://www.klevermedia.co.uk/tutorials/simple-jquery-css3-modal-box/#">Here</a></p>
<h2>What Makes This Effect</h2>
<ul>
<li>HTML</li>
<li>CSS3</li>
<li>jQuery</li>
<li>Dreamweaver (or your favorite text editor)</li>
</ul>
<h2>New document</h2>
<p>For the purpose of this tutorial I will include all css and jQuery in one file (index.html) but would advise not to do so when using this script in a live website, always call you styles and jQuery from an external file.</p>
<p>With that done and said, create yourself a new html file and name it index.html</p>
<h2>Calling jQuery</h2>
<p>I like to use google&#8217;s jQuery, it&#8217;s useful if your user has already visited a site using google hosted jQuery as it&#8217;ll be cached on their machine already.</p>
<p>So, in your document inside the head section insert the following script tag.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;!--mce:0--&gt;&lt;/script&gt;
</pre>
<h2>Some markup</h2>
<p>We&#8217;ll start by creating our modal box, using only on div to contain our elements such a heading, a few paragraphs and some social media icons. You can use the images included in the <a title="Download jQuery modal box" href="http://www.klevermedia.co.uk/tutorials/simple-jquery-css3-modal-box/">download</a> or simply link to my online images.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;modal-profile&quot;&gt;
&lt;h2&gt;Nam liber tempor cum soluta nobis eleifend&lt;/h2&gt;
    &lt;a class=&quot;modal-close-profile&quot; title=&quot;Close profile window&quot; href=&quot;#&quot;&gt;&lt;img src=&quot;close.png&quot; alt=&quot;Close profile window&quot; /&gt;&lt;/a&gt;

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.

Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit littera um formas humanitatis per seacula quarta decima et quinta decima.Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.

	&lt;a class=&quot;modal-social&quot; href=&quot;http://www.klevermedia.co.uk&quot;&gt;&lt;img src=&quot;http://www.klevermedia.co.uk/themes/klevermedia/images/social/lovedsgn.png&quot; alt=&quot;Love design&quot; /&gt;&lt;/a&gt;
    &lt;a class=&quot;modal-social&quot; href=&quot;http://www.klevermedia.co.uk&quot;&gt;&lt;img src=&quot;http://www.klevermedia.co.uk/themes/klevermedia/images/social/forrst.png&quot; alt=&quot;Forrst&quot; /&gt;&lt;/a&gt;
    &lt;a class=&quot;modal-social&quot; href=&quot;http://www.klevermedia.co.uk&quot;&gt;&lt;img src=&quot;http://www.klevermedia.co.uk/themes/klevermedia/images/social/twitter.png&quot; alt=&quot;Love design&quot; /&gt;&lt;/a&gt;
    &lt;a class=&quot;modal-social&quot; href=&quot;http://www.klevermedia.co.uk&quot;&gt;&lt;img src=&quot;http://www.klevermedia.co.uk/themes/klevermedia/images/social/skype.png&quot; alt=&quot;Love design&quot; /&gt;&lt;/a&gt;
    &lt;a class=&quot;modal-social&quot; href=&quot;http://www.klevermedia.co.uk&quot;&gt;&lt;img src=&quot;http://www.klevermedia.co.uk/themes/klevermedia/images/social/rss.png&quot; alt=&quot;Love design&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
</pre>
<h2>Style the modal box</h2>
<p>With the barebones of the modal box set up, it&#8217;s time to bring it to life with some styling. We&#8217;re going to be using a little bit off css3 to give our modal box some nicely rounded corners and a box shadow, as in most cases internet explorer doesn&#8217;t recognise the css rule &#8220;border-radius&#8221; and will show squared corners instead.</p>
<pre class="brush: css; title: ; notranslate">
.modal-profile h2 {
	font-size:2em;
	letter-spacing:-1px;
}
.modal-profile {
	display:none;
	height: 250px;
	width: 500px;
	padding:25px;
	border:1px solid #fff;
	box-shadow: 0px 2px 7px #292929;
	-moz-box-shadow: 0px 2px 7px #292929;
	-webkit-box-shadow: 0px 2px 7px #292929;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	background: #f2f2f2;
	z-index:50;
}
a.modal-close-profile {
	position:absolute;
	top:-15px;
	right:-15px;
}
a.modal-social {
	margin:0 10px 0 0;
}
</pre>
<p><strong>-moz-box-shadow</strong><br />
Allows mozilla firefox to recognise the box shadow property</p>
<p><strong>-webkit-box-shadow</strong><br />
Allows google chrome to recognise the box shadow property</p>
<p><strong>-moz-border-radius</strong><br />
Allows mozilla firefox to recognise the border radius property</p>
<p><strong>-webkit-border-radius</strong><br />
Allows google chrome to recognise the border radius property</p>
<h2>Lights out</h2>
<p>To create the block overlay on the body of our webpage once the modal box is opened we&#8217;ll be creating an effect known as &#8220;lights out&#8221;, quite self explanatory as it give the illusion of flicking the light switch off on our webpage.</p>
<p>Create a new div below our modal box with the class of &#8220;modal-lightsout&#8221; like so.</p>
<pre class="brush: xml; title: ; notranslate">

&lt;div class=&quot;modal-lightsout&quot;&gt;&lt;/div&gt;
</pre>
<p>Thats&#8217;s it, just one div, simple right?</p>
<p>Now to apply some css to position the div and apply a black background (you could use white for this tutorial if you have a lighter website).</p>
<pre class="brush: css; title: ; notranslate">
.modal-lightsout {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:25;
	background:#000;
}
</pre>
<h2>Make it pop with jQuery</h2>
<p>Now with all our markup and styles set it&#8217;s time to make things work with the help of jQuery. Apply this code in your head section below you google jQuery reference</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
$.fn.center = function () {
		this.css(&quot;position&quot;,&quot;absolute&quot;);
		this.css(&quot;top&quot;, ( jQuery(window).height() - this.height() ) / 2+jQuery(window).scrollTop() + &quot;px&quot;);
		this.css(&quot;left&quot;, ( jQuery(window).width() - this.width() ) / 2+jQuery(window).scrollLeft() + &quot;px&quot;);
		return this;
	  }

	$(&quot;.modal-profile&quot;).center();

	$('.modal-lightsout').css(&quot;height&quot;, jQuery(document).height());	

	$('a[rel=&quot;modal-profile&quot;]').click(function() {
		$('.modal-profile').fadeIn(&quot;slow&quot;);
		$('.modal-lightsout').fadeTo(&quot;slow&quot;, .9);
	});

	$('a.modal-close-profile, .modal-lightsout').click(function() {
		$('.modal-profile').fadeOut(&quot;slow&quot;);
		$('.modal-lightsout').fadeOut(&quot;slow&quot;);
	});
&lt;/script&gt;
</pre>
<h2>Creating the link</h2>
<p>Our modal box is now complete and ready for action, all it takes is us to create a link to call it. It&#8217;s important that for any link we want to use our modal box we apply the &#8220;rel&#8221; name of &#8220;modal-profile&#8221; like this.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;a rel=&quot;modal-profile&quot; href=&quot;#&quot;&gt;Open modal box&lt;/a&gt;
</pre>
<h2>Simples!</h2>
<p>This was just a basic and simple way of creating a modal box, there are plenty of other ways to do this I just thought I&#8217;d show you how I do mine. As stated, this is great to use as a profile pop-up, or be a little more creative and show us what you&#8217;ve done? Hope you&#8217;ve enjoyed the read.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hv-designs.co.uk/2011/03/20/simple-jquerycss3-modal-box/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.hv-designs.co.uk @ 2012-02-10 22:33:09 -->
