<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Image Replacement Gallery</title>
	<atom:link href="http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/feed/" rel="self" type="application/rss+xml" />
	<link>http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/</link>
	<description>Web Developer with an unhealthy love for HTML, CSS &#38; jQuery</description>
	<lastBuildDate>Mon, 28 Jun 2010 16:21:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: greg</title>
		<link>http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/comment-page-1/#comment-70</link>
		<dc:creator>greg</dc:creator>
		<pubDate>Mon, 28 Jun 2010 16:21:46 +0000</pubDate>
		<guid isPermaLink="false">http://benmacgowan.co.uk/?p=269#comment-70</guid>
		<description>Hi Ben
Love the tutorial! Quick question, how hard would it be to expand this example to automate the switching of the images, say every 5 seconds? I&#039;m struggling a little bit with making this work in my working example.</description>
		<content:encoded><![CDATA[<p>Hi Ben<br />
Love the tutorial! Quick question, how hard would it be to expand this example to automate the switching of the images, say every 5 seconds? I&#8217;m struggling a little bit with making this work in my working example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/comment-page-1/#comment-56</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 25 Jul 2009 15:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://benmacgowan.co.uk/?p=269#comment-56</guid>
		<description>Hi Adrian,

Thanks for the comment! I have e-mailed you in regards to updating the code with the requested additional features.</description>
		<content:encoded><![CDATA[<p>Hi Adrian,</p>
<p>Thanks for the comment! I have e-mailed you in regards to updating the code with the requested additional features.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adrian</title>
		<link>http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/comment-page-1/#comment-55</link>
		<dc:creator>adrian</dc:creator>
		<pubDate>Fri, 24 Jul 2009 02:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://benmacgowan.co.uk/?p=269#comment-55</guid>
		<description>WOW,
I am a newcomer to js and jquery and I too had stumbled across the Web Designer Wall example while looking for a portfolio gallery for my site.
I have modified the script to include a hover on the thumbnails and was starting to look at some way of fading in and out the large images.-
$(document).ready(function(){

	$(&quot;h5&quot;).append(&#039;&lt;em&gt;&lt;/em&gt;&#039;)

	$(function() {
            $(&#039;#navrollover img&#039;).animate({&quot;opacity&quot;: .7 });

            $(&#039;#navrollover img&#039;).hover(function() {
                $(this).stop().animate({ &quot;opacity&quot;: 1 });
            }, function() {
                $(this).stop().animate({ &quot;opacity&quot;: .7 });
            });
        });
		
		$(&quot;.thumbs a&quot;).click(function(){
	
		
		var largePath = $(this).attr(&quot;href&quot;);
		var largeAlt = $(this).attr(&quot;title&quot;);
		
		$(&quot;#largeImg&quot;).attr({ src: largePath, alt: largeAlt });
		
		$(&quot;h5 em&quot;).html(&quot; &quot; + largeAlt + &quot;&quot;); return false;
	});
	
});

I was also using the variable alt data to provide a description of each large image.
I currently have a working example at - http://rosa.actewagl.net.au/graphic_design_c1_p1C.html

Is it possible to add the thumb hover event and variable alt data function to your new gallery?? Because it is much better!</description>
		<content:encoded><![CDATA[<p>WOW,<br />
I am a newcomer to js and jquery and I too had stumbled across the Web Designer Wall example while looking for a portfolio gallery for my site.<br />
I have modified the script to include a hover on the thumbnails and was starting to look at some way of fading in and out the large images.-<br />
$(document).ready(function(){</p>
<p>	$(&#8220;h5&#8243;).append(&#8216;<em></em>&#8216;)</p>
<p>	$(function() {<br />
            $(&#8216;#navrollover img&#8217;).animate({&#8220;opacity&#8221;: .7 });</p>
<p>            $(&#8216;#navrollover img&#8217;).hover(function() {<br />
                $(this).stop().animate({ &#8220;opacity&#8221;: 1 });<br />
            }, function() {<br />
                $(this).stop().animate({ &#8220;opacity&#8221;: .7 });<br />
            });<br />
        });</p>
<p>		$(&#8220;.thumbs a&#8221;).click(function(){</p>
<p>		var largePath = $(this).attr(&#8220;href&#8221;);<br />
		var largeAlt = $(this).attr(&#8220;title&#8221;);</p>
<p>		$(&#8220;#largeImg&#8221;).attr({ src: largePath, alt: largeAlt });</p>
<p>		$(&#8220;h5 em&#8221;).html(&#8221; &#8221; + largeAlt + &#8220;&#8221;); return false;<br />
	});</p>
<p>});</p>
<p>I was also using the variable alt data to provide a description of each large image.<br />
I currently have a working example at &#8211; <a href="http://rosa.actewagl.net.au/graphic_design_c1_p1C.html" rel="nofollow">http://rosa.actewagl.net.au/graphic_design_c1_p1C.html</a></p>
<p>Is it possible to add the thumb hover event and variable alt data function to your new gallery?? Because it is much better!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Boas</title>
		<link>http://benmacgowan.co.uk/2009/07/20/image-replacement-gallery/comment-page-1/#comment-54</link>
		<dc:creator>Mark Boas</dc:creator>
		<pubDate>Thu, 23 Jul 2009 13:16:21 +0000</pubDate>
		<guid isPermaLink="false">http://benmacgowan.co.uk/?p=269#comment-54</guid>
		<description>I was looking for something like this to use on this site : http://paolobenvenuti.com 

Thanks!</description>
		<content:encoded><![CDATA[<p>I was looking for something like this to use on this site : <a href="http://paolobenvenuti.com" rel="nofollow">http://paolobenvenuti.com</a> </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
