<?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>squirrel_factory &#187; jQuery</title>
	<atom:link href="http://www.flamingsquirrel.co.uk/blog/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flamingsquirrel.co.uk/blog</link>
	<description>Creative development</description>
	<lastBuildDate>Wed, 15 Apr 2009 09:06:42 +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>jQuery fading images</title>
		<link>http://www.flamingsquirrel.co.uk/blog/jquery-fading-images/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/jquery-fading-images/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 09:37:36 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/jquery-fading-images/</guid>
		<description><![CDATA[A nice way to fade in and out of images
include
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;js/jquery-1.2.1.min.js&#8221;&#62;&#60;/script&#62;
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;js/common.js&#8221;&#62;&#60;/script&#62;
&#60;script type=&#8221;text/javascript&#8221; src=&#8221;js/jquery.slideshow.js&#8221;&#62;&#60;/script&#62;
javascript for common.js
    // Animate homepage banner&#8230;
var obj = $(&#8216;#slideshow&#8217;);
// check object exists&#8230;
if (obj.length&#62;0) {
// remove the hideslide class as javascript is enabled&#8230;
$(&#8216;#slideshow img.hideslide&#8217;).each(function(i){
$(this).removeClass(&#8220;hideslide&#8221;);
});
$(obj).slideshow({
timeout: 5000,
type: &#8217;sequence&#8217;
});
}

 CSS
#slideshow{
margin:0;
padding:0;
height:161px;
}
#slideshow img {
position: relative;
left: 0;
top: 0;
width: 900px;
height: 161px;
}
XHTML 
&#60;div id=&#8221;slideshow&#8221;&#62;
&#60;img src=&#8221;images.jpg&#8221; alt=&#8221;slide 1&#8243; /&#62;
&#60;img src=&#8221;images.jpg&#8221; alt=&#8221;slide [...]]]></description>
			<content:encoded><![CDATA[<p>A nice way to fade in and out of images</p>
<p><strong>include</strong><br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/jquery-1.2.1.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/common.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;js/jquery.slideshow.js&#8221;&gt;&lt;/script&gt;</p>
<p><strong>javascript for common.js<br />
</strong>    // Animate homepage banner&#8230;<br />
var obj = $(&#8216;#slideshow&#8217;);<br />
// check object exists&#8230;<br />
if (obj.length&gt;0) {<br />
// remove the hideslide class as javascript is enabled&#8230;<br />
$(&#8216;#slideshow img.hideslide&#8217;).each(function(i){<br />
$(this).removeClass(&#8220;hideslide&#8221;);<br />
});</p>
<p>$(obj).slideshow({<br />
timeout: 5000,<br />
type: &#8217;sequence&#8217;<br />
});<br />
}<strong><br />
</strong></p>
<p><strong> CSS</strong></p>
<p>#slideshow{<br />
margin:0;<br />
padding:0;<br />
height:161px;<br />
}</p>
<p>#slideshow img {<br />
position: relative;<br />
left: 0;<br />
top: 0;<br />
width: 900px;<br />
height: 161px;<br />
}</p>
<p><strong>XHTML </strong></p>
<p>&lt;div id=&#8221;slideshow&#8221;&gt;<br />
&lt;img src=&#8221;images.jpg&#8221; alt=&#8221;slide 1&#8243; /&gt;<br />
&lt;img src=&#8221;images.jpg&#8221; alt=&#8221;slide 2&#8243; width=&#8221;900&#8243; height=&#8221;161&#8243; class=&#8221;hideslide&#8221; /&gt;<br />
&lt;img src=&#8221;images.jpg&#8221; alt=&#8221;slide 3&#8243; width=&#8221;900&#8243; height=&#8221;161&#8243; class=&#8221;hideslide&#8221; /&gt;<br />
&lt;img src=&#8221;images.jpg&#8221; alt=&#8221;slide 4&#8243; width=&#8221;900&#8243; height=&#8221;161&#8243; class=&#8221;hideslide&#8221; /&gt;<br />
&lt;/div&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/jquery-fading-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery Easing</title>
		<link>http://www.flamingsquirrel.co.uk/blog/jquery-easing/</link>
		<comments>http://www.flamingsquirrel.co.uk/blog/jquery-easing/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 09:30:15 +0000</pubDate>
		<dc:creator>andy</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.flamingsquirrel.co.uk/blog/jquery-easing/</guid>
		<description><![CDATA[Really nice lightweight jQuery &#8217;sliding&#8217; menu.
http://www.gmarwaha.com/blog/?p=7
]]></description>
			<content:encoded><![CDATA[<p>Really nice lightweight jQuery &#8217;sliding&#8217; menu.</p>
<p><a href="http://www.gmarwaha.com/blog/?p=7">http://www.gmarwaha.com/blog/?p=7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flamingsquirrel.co.uk/blog/jquery-easing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
