<?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: Weakening neighbors</title>
	<atom:link href="http://www.dhteumeuleu.com/weakening-neighbors/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dhteumeuleu.com/weakening-neighbors/</link>
	<description>Javascript animations and experiments</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:12:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rajesh</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-2/#comment-1850</link>
		<dc:creator>Rajesh</dc:creator>
		<pubDate>Tue, 27 Dec 2011 15:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1850</guid>
		<description>It is very simple.
First this is the structure of the images we need to add

&lt;pre&gt;&lt;div id=&quot;screen&quot;&gt;
&lt;div&gt;&lt;img title=&quot;http://mail.google.com&quot; src=&quot;images/weakening/english/h-1.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com&quot; src=&quot;images/weakening/english/h-2.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/1&quot; src=&quot;images/weakening/english/h-3.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/2&quot; src=&quot;images/weakening/english/h-4.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/3&quot; src=&quot;images/weakening/english/h-5.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/4&quot; src=&quot;images/weakening/english/v-1.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/5&quot; src=&quot;images/weakening/english/v-2.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/6&quot; src=&quot;images/weakening/english/v-3.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/7&quot; src=&quot;images/weakening/english/v-4.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/pre&gt;


means we need to add link as title.
Now search for following code
if (moves[0] == this)
moves = new Array();
replace it with following code
if (moves[0] == this){
for (var p in this) {
if(p == ‘i’){
var ci = this[p] – 1;
}
}
window.open(document.getElementById(“screen”).getElementsByTagName(“div”)[ci].getElementsByTagName(“img”)[0].title,’_blank’);
moves = new Array();
}</description>
		<content:encoded><![CDATA[<p>It is very simple.<br />
First this is the structure of the images we need to add</p>
<pre>&lt;div id=&quot;screen&quot;&gt;
&lt;div&gt;&lt;img title=&quot;http://mail.google.com&quot; src=&quot;images/weakening/english/h-1.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com&quot; src=&quot;images/weakening/english/h-2.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/1&quot; src=&quot;images/weakening/english/h-3.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/2&quot; src=&quot;images/weakening/english/h-4.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/3&quot; src=&quot;images/weakening/english/h-5.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/4&quot; src=&quot;images/weakening/english/v-1.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/5&quot; src=&quot;images/weakening/english/v-2.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/6&quot; src=&quot;images/weakening/english/v-3.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;div&gt;&lt;img title=&quot;http://www.google.com/7&quot; src=&quot;images/weakening/english/v-4.jpg&quot; alt=&quot;2,4&quot; /&gt;&lt;/div&gt;
&lt;/div&gt;</pre>
<p>means we need to add link as title.<br />
Now search for following code<br />
if (moves[0] == this)<br />
moves = new Array();<br />
replace it with following code<br />
if (moves[0] == this){<br />
for (var p in this) {<br />
if(p == ‘i’){<br />
var ci = this[p] – 1;<br />
}<br />
}<br />
window.open(document.getElementById(“screen”).getElementsByTagName(“div”)[ci].getElementsByTagName(“img”)[0].title,’_blank’);<br />
moves = new Array();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-2/#comment-1848</link>
		<dc:creator>Rajesh</dc:creator>
		<pubDate>Tue, 27 Dec 2011 15:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1848</guid>
		<description>It is very simple.

First this is the structure of the images we need to add
 
&lt;img src=&quot;images/weakening/english/h-1.jpg&quot; alt=&quot;3,3&quot; /&gt;&lt;/a&gt;
&lt;img src=&quot;images/weakening/english/h-2.jpg&quot; alt=&quot;3,3&quot; /&gt;
&lt;img src=&quot;images/weakening/english/v-3.jpg&quot; alt=&quot;2,4&quot; /&gt;
&lt;img src=&quot;images/weakening/english/v-4.jpg&quot; alt=&quot;2,4&quot; /&gt;


means we need to add link as title.

Now search for following code
if (moves[0] == this)
moves = new Array(); 


replace it with following code

if (moves[0] == this){
			for (var p in this) {
			  if(p == &#039;i&#039;){
			    var ci = this[p] - 1;
			    }
			  }	
			window.open(document.getElementById(&quot;screen&quot;).getElementsByTagName(&quot;div&quot;)[ci].getElementsByTagName(&quot;img&quot;)[0].title,&#039;_blank&#039;);
			moves = new Array();
			}</description>
		<content:encoded><![CDATA[<p>It is very simple.</p>
<p>First this is the structure of the images we need to add</p>
<p><img src="images/weakening/english/h-1.jpg" alt="3,3" /><br />
<img src="images/weakening/english/h-2.jpg" alt="3,3" /><br />
<img src="images/weakening/english/v-3.jpg" alt="2,4" /><br />
<img src="images/weakening/english/v-4.jpg" alt="2,4" /></p>
<p>means we need to add link as title.</p>
<p>Now search for following code<br />
if (moves[0] == this)<br />
moves = new Array(); </p>
<p>replace it with following code</p>
<p>if (moves[0] == this){<br />
			for (var p in this) {<br />
			  if(p == &#8216;i&#8217;){<br />
			    var ci = this[p] &#8211; 1;<br />
			    }<br />
			  }<br />
			window.open(document.getElementById(&#8220;screen&#8221;).getElementsByTagName(&#8220;div&#8221;)[ci].getElementsByTagName(&#8220;img&#8221;)[0].title,&#8217;_blank&#8217;);<br />
			moves = new Array();<br />
			}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K_Soze</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-2/#comment-1833</link>
		<dc:creator>K_Soze</dc:creator>
		<pubDate>Fri, 02 Dec 2011 22:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1833</guid>
		<description>Can&#039;t seem to add links to the expanded image through the title like you&#039;ve shown. Could you explain a little further ? I&#039;m not able to pass the link and have an undefined link error.

Kind Regards</description>
		<content:encoded><![CDATA[<p>Can&#8217;t seem to add links to the expanded image through the title like you&#8217;ve shown. Could you explain a little further ? I&#8217;m not able to pass the link and have an undefined link error.</p>
<p>Kind Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Benhamou</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-4/#comment-1829</link>
		<dc:creator>William Benhamou</dc:creator>
		<pubDate>Wed, 30 Nov 2011 02:53:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1829</guid>
		<description>thank you again for your job i worked all night for make my slideshow work. 
my principal problem was to understand that both files needed to have the same name.
one in HTML and the other in XML. after that almost simple... :)
the result: 
http://www.williambenhamou.com/SLIDE-SHOWS/Slideshow-tableaux/TABLEAUX.html</description>
		<content:encoded><![CDATA[<p>thank you again for your job i worked all night for make my slideshow work.<br />
my principal problem was to understand that both files needed to have the same name.<br />
one in HTML and the other in XML. after that almost simple&#8230; <img src='http://www.dhteumeuleu.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
the result:<br />
<a href="http://www.williambenhamou.com/SLIDE-SHOWS/Slideshow-tableaux/TABLEAUX.html" rel="nofollow">http://www.williambenhamou.com...LEAUX.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radek</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-4/#comment-1789</link>
		<dc:creator>Radek</dc:creator>
		<pubDate>Thu, 20 Oct 2011 13:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1789</guid>
		<description>Genialne!!! [polish; brilliant]
simple, clear, intriguing

I made &quot;5 minutes&quot; info site, in the meantime trying to desing final website for my architectual projects... until i found “Weakening neighbors”. Your work is an answer for all my aesthetic needs.
Thank you, best wishes and keep on.
R</description>
		<content:encoded><![CDATA[<p>Genialne!!! [polish; brilliant]<br />
simple, clear, intriguing</p>
<p>I made &#8220;5 minutes&#8221; info site, in the meantime trying to desing final website for my architectual projects&#8230; until i found “Weakening neighbors”. Your work is an answer for all my aesthetic needs.<br />
Thank you, best wishes and keep on.<br />
R</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thomas</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-4/#comment-1688</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Sat, 09 Jul 2011 21:17:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1688</guid>
		<description>tout simplement parfait!</description>
		<content:encoded><![CDATA[<p>tout simplement parfait!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: akkimbo</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-4/#comment-1653</link>
		<dc:creator>akkimbo</dc:creator>
		<pubDate>Mon, 13 Jun 2011 09:14:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1653</guid>
		<description>bonjour,

comment intégrer ce code à iweb ? par un fragment html directement ? comment l&#039;utiliser correctement ? merci d&#039;avance et très beau travail.</description>
		<content:encoded><![CDATA[<p>bonjour,</p>
<p>comment intégrer ce code à iweb ? par un fragment html directement ? comment l&#8217;utiliser correctement ? merci d&#8217;avance et très beau travail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ge1doot</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1639</link>
		<dc:creator>ge1doot</dc:creator>
		<pubDate>Sat, 04 Jun 2011 17:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1639</guid>
		<description>Salut Agen.. Toulouse c&#039;est pas loin ;-)

No simple way to do so in this &lt;b&gt;demo&lt;/b&gt;, sorry. Image dimensions will adjust in function of container&#039;s size.</description>
		<content:encoded><![CDATA[<p>Salut Agen.. Toulouse c&#8217;est pas loin <img src='http://www.dhteumeuleu.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>No simple way to do so in this <b>demo</b>, sorry. Image dimensions will adjust in function of container&#8217;s size.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: letofus</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1633</link>
		<dc:creator>letofus</dc:creator>
		<pubDate>Tue, 31 May 2011 12:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1633</guid>
		<description>hello
and huge congratulations for your job and passion.
by the way hello from agen :)

just one question: where to &quot;touch&quot; the script to change dimensions of the pictures?
or is it too complicate?
thanks
le tophe</description>
		<content:encoded><![CDATA[<p>hello<br />
and huge congratulations for your job and passion.<br />
by the way hello from agen <img src='http://www.dhteumeuleu.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>just one question: where to &#8220;touch&#8221; the script to change dimensions of the pictures?<br />
or is it too complicate?<br />
thanks<br />
le tophe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nahuel José</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1526</link>
		<dc:creator>Nahuel José</dc:creator>
		<pubDate>Thu, 07 Apr 2011 00:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1526</guid>
		<description>Brilliant... just brilliant.</description>
		<content:encoded><![CDATA[<p>Brilliant&#8230; just brilliant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1416</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sun, 23 Jan 2011 01:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1416</guid>
		<description>Im sorry I forgot. Sorry for double post - Is it possible anyhow to add here  more pictures - I mean even 30 boxes?</description>
		<content:encoded><![CDATA[<p>Im sorry I forgot. Sorry for double post &#8211; Is it possible anyhow to add here  more pictures &#8211; I mean even 30 boxes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1415</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sun, 23 Jan 2011 01:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1415</guid>
		<description>Hi! First I want to say to you that I&#039;ve spent here few hours and I&#039;m amazed. Your imagination and sense of phisics etc is just amazing.

And fact that you allow people to use your scripts make me even more amazed. I&#039;ve tried to do it my self but Im not so good programmer and wanna ask something. My ida is to put some bigger images in that and when you click on some box and it get bigger I wanted to make it possible to move image like in that (http://www.dhteumeuleu.com/tomorrow-again/) example. Can you give some tips how to do it?</description>
		<content:encoded><![CDATA[<p>Hi! First I want to say to you that I&#8217;ve spent here few hours and I&#8217;m amazed. Your imagination and sense of phisics etc is just amazing.</p>
<p>And fact that you allow people to use your scripts make me even more amazed. I&#8217;ve tried to do it my self but Im not so good programmer and wanna ask something. My ida is to put some bigger images in that and when you click on some box and it get bigger I wanted to make it possible to move image like in that (<a href="http://www.dhteumeuleu.com/tomorrow-again/" rel="nofollow">http://www.dhteumeuleu.com/tom...row-again/</a>) example. Can you give some tips how to do it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JonnyAG</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1398</link>
		<dc:creator>JonnyAG</dc:creator>
		<pubDate>Tue, 11 Jan 2011 17:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1398</guid>
		<description>This is brilliant. Exactly what I meant.  What is interesting about this script is the automatic resizing depending on window size.  It makes sense, so there is ample space for each box to move accordingly, but i bet you can also have fixed thumbnail sizes if you wanted.  
Really nice work, Gerard. Thank you.</description>
		<content:encoded><![CDATA[<p>This is brilliant. Exactly what I meant.  What is interesting about this script is the automatic resizing depending on window size.  It makes sense, so there is ample space for each box to move accordingly, but i bet you can also have fixed thumbnail sizes if you wanted.<br />
Really nice work, Gerard. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ge1doot</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1394</link>
		<dc:creator>ge1doot</dc:creator>
		<pubDate>Mon, 10 Jan 2011 22:12:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1394</guid>
		<description>This is a good idea, thanks for asking.

This script is certainly one of the most complex I have ever written. But the good news is that I have added the necessary logic to handle the &quot;auto-loop&quot; :)

http://www.dhteumeuleu.com/dhtml/qc-diapo-auto.html

Please give a try to this version and let me know what you think.

Gerard</description>
		<content:encoded><![CDATA[<p>This is a good idea, thanks for asking.</p>
<p>This script is certainly one of the most complex I have ever written. But the good news is that I have added the necessary logic to handle the &#8220;auto-loop&#8221; <img src='http://www.dhteumeuleu.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.dhteumeuleu.com/dhtml/qc-diapo-auto.html" rel="nofollow">http://www.dhteumeuleu.com/dht...-auto.html</a></p>
<p>Please give a try to this version and let me know what you think.</p>
<p>Gerard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JonnyAG</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1393</link>
		<dc:creator>JonnyAG</dc:creator>
		<pubDate>Mon, 10 Jan 2011 20:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1393</guid>
		<description>First off, this is a fantastic script.  Love the fluidity.  I was wondering if there is a simple way of making the script run automatically without .onclick functions.
Any thoughts would be greatly appreciated. 
Donating as we speak. Credit where credit is due.</description>
		<content:encoded><![CDATA[<p>First off, this is a fantastic script.  Love the fluidity.  I was wondering if there is a simple way of making the script run automatically without .onclick functions.<br />
Any thoughts would be greatly appreciated.<br />
Donating as we speak. Credit where credit is due.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1333</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 21 Nov 2010 21:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1333</guid>
		<description>For all of the demos here on this site, I&#039;m pretty impressed. It runs smooth without glitches, which is rare. 

I have developed css and  javascript for years, until about 1 and a half year ago, where I completely put my focus on Actionscript, which makes it so much easier to accomplish these kind of things, but by far not as native and accessible.

Keep up the cool work!</description>
		<content:encoded><![CDATA[<p>For all of the demos here on this site, I&#8217;m pretty impressed. It runs smooth without glitches, which is rare. </p>
<p>I have developed css and  javascript for years, until about 1 and a half year ago, where I completely put my focus on Actionscript, which makes it so much easier to accomplish these kind of things, but by far not as native and accessible.</p>
<p>Keep up the cool work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanbhu</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1259</link>
		<dc:creator>Sanbhu</dc:creator>
		<pubDate>Fri, 08 Oct 2010 11:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1259</guid>
		<description>I have just started javascript, i can&#039;t get  this working on my computer. i need some help, plz help me, direct download link is not working as well,

i admire your talent, salutes from my side

Sanbhu</description>
		<content:encoded><![CDATA[<p>I have just started javascript, i can&#8217;t get  this working on my computer. i need some help, plz help me, direct download link is not working as well,</p>
<p>i admire your talent, salutes from my side</p>
<p>Sanbhu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andréa Zambrana</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-1143</link>
		<dc:creator>Andréa Zambrana</dc:creator>
		<pubDate>Tue, 14 Sep 2010 04:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-1143</guid>
		<description>I&#039;m very happy,  the gallery is visually attractive and beautiful, ty for share!

now... I want to use this gallery on a site I&#039;m working on, but for this site the number of columns and rows would move to smaller or larger depending on the amount of photos, how can I do this correctly? my attempts has given some problems because the photograph is open under some thumbnails :~( u can help me?</description>
		<content:encoded><![CDATA[<p>I&#8217;m very happy,  the gallery is visually attractive and beautiful, ty for share!</p>
<p>now&#8230; I want to use this gallery on a site I&#8217;m working on, but for this site the number of columns and rows would move to smaller or larger depending on the amount of photos, how can I do this correctly? my attempts has given some problems because the photograph is open under some thumbnails :~( u can help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikhil</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-3/#comment-818</link>
		<dc:creator>nikhil</dc:creator>
		<pubDate>Sat, 31 Jul 2010 08:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-818</guid>
		<description>ohh   gr8 .... what a script. i like it very much.
thanks for sharing it.</description>
		<content:encoded><![CDATA[<p>ohh   gr8 &#8230;. what a script. i like it very much.<br />
thanks for sharing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ge1doot</title>
		<link>http://www.dhteumeuleu.com/weakening-neighbors/comment-page-2/#comment-785</link>
		<dc:creator>ge1doot</dc:creator>
		<pubDate>Wed, 14 Jul 2010 13:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.dhteumeuleu.com/?p=377#comment-785</guid>
		<description>Hi Michiel,

Wow... cracking your brain for 2 days in a row... all my apologies about that ;)

The Javascript &quot;&lt;a href=&quot;http://www.klauskomenda.com/code/javascript-programming-patterns/&quot;&gt;module pattern&lt;/a&gt;&quot; I use is very powerfull. All variables and methods used in the script are &quot;private&quot; members and cannot be accessed from the outside. 

You can create &quot;public&quot; resources in the return {} bloc. In your case, let&#039;s add an &quot;open&quot; function :


&lt;pre&gt;
	return {
		// ==== public bloc ====
		init : init,
		open : function (index) {
			divs[index].click();
		}
	}
&lt;/pre&gt;

You will be able to call it from the outside (e.g. in an event bloc) like this:


&lt;pre&gt;
res.open(0); // 0 for the first image, 1 for the next one, etc...
&lt;/pre&gt;

for example, this code will launch the script and open the first image:


&lt;pre&gt;
// ==== start script ====
setTimeout(function() {
	res.init();
	res.open(0);
}, 100);
&lt;/pre&gt;

Hope this helps,

Gerard</description>
		<content:encoded><![CDATA[<p>Hi Michiel,</p>
<p>Wow&#8230; cracking your brain for 2 days in a row&#8230; all my apologies about that <img src='http://www.dhteumeuleu.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The Javascript &#8220;<a href="http://www.klauskomenda.com/code/javascript-programming-patterns/">module pattern</a>&#8221; I use is very powerfull. All variables and methods used in the script are &#8220;private&#8221; members and cannot be accessed from the outside. </p>
<p>You can create &#8220;public&#8221; resources in the return {} bloc. In your case, let&#8217;s add an &#8220;open&#8221; function :</p>
<pre>
	return {
		// ==== public bloc ====
		init : init,
		open : function (index) {
			divs[index].click();
		}
	}
</pre>
<p>You will be able to call it from the outside (e.g. in an event bloc) like this:</p>
<pre>
res.open(0); // 0 for the first image, 1 for the next one, etc...
</pre>
<p>for example, this code will launch the script and open the first image:</p>
<pre>
// ==== start script ====
setTimeout(function() {
	res.init();
	res.open(0);
}, 100);
</pre>
<p>Hope this helps,</p>
<p>Gerard</p>
]]></content:encoded>
	</item>
</channel>
</rss>

