<?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: Creating Image Preview Tooltips with the YUI Overlay Widget</title>
	<atom:link href="http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/feed/" rel="self" type="application/rss+xml" />
	<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/</link>
	<description>Where stuff from my brain lands</description>
	<lastBuildDate>Tue, 07 Feb 2012 16:14:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-881</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Wed, 29 Apr 2009 02:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-881</guid>
		<description>Hm, you might try double checking styles for your tooltip.  I need to update this post with new pictures since my example site no longer exists.</description>
		<content:encoded><![CDATA[<p>Hm, you might try double checking styles for your tooltip.  I need to update this post with new pictures since my example site no longer exists.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mo</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-880</link>
		<dc:creator>Mo</dc:creator>
		<pubDate>Mon, 27 Apr 2009 15:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-880</guid>
		<description>This is excellent piece of code. I have used it, but I have some problem when I have larger Images.

In IE, these images don&#039;t show up to their full size, and therefore the Image looks distorted.

But the same page when viewed in foreFox looks perfect.

Here&#039;s my javasciprt:

		function createPhotoTip(elem,itemId) {
 			if (!yh_tt &#124;&#124; !elem &#124;&#124; elem.tt_div ) return ; // already initialized or not ready to initialize yet.
 			if ( !Dom.get(&#039;photo_tooltip&#039; + itemId)) {
	  			var i;
	  			i = new Image();
	  			i.src = &quot;${pageContext.request.contextPath}/viewThumbNail?objectId=&quot; + itemId;
	  			var d = document.createElement ( &#039;div&#039; );
				d.className=&#039;tooltip&#039;;
	 			d.id = &#039;photo_tooltip&#039; + itemId;
	 			var img = document.createElement ( &#039;img&#039; );
	 			img.id = &#039;photo_for_&#039; + itemId;
	  			img.src = imgLoading.src;
	  			d.appendChild(img);
	 			document.body.appendChild(d);
	 			if (!i.complete) {
					Event.on ( i, &#039;load&#039;, function(e) {
					var img = Dom.get(&#039;photo_for_&#039; + itemId);
					img.src = i.src;
					img.width = i.width;
					img.height = i.height;
					} );
				} else {
					img.src = i.src;
					img.width = i.width;
					img.height = i.height;
				}
			}
 			createTip ( elem, &#039;photo_tooltip&#039; + itemId, false );
		}

Any help will highly be appriciated.</description>
		<content:encoded><![CDATA[<p>This is excellent piece of code. I have used it, but I have some problem when I have larger Images.</p>
<p>In IE, these images don&#8217;t show up to their full size, and therefore the Image looks distorted.</p>
<p>But the same page when viewed in foreFox looks perfect.</p>
<p>Here&#8217;s my javasciprt:</p>
<p>		function createPhotoTip(elem,itemId) {<br />
 			if (!yh_tt || !elem || elem.tt_div ) return ; // already initialized or not ready to initialize yet.<br />
 			if ( !Dom.get(&#8216;photo_tooltip&#8217; + itemId)) {<br />
	  			var i;<br />
	  			i = new Image();<br />
	  			i.src = &#8220;${pageContext.request.contextPath}/viewThumbNail?objectId=&#8221; + itemId;<br />
	  			var d = document.createElement ( &#8216;div&#8217; );<br />
				d.className=&#8217;tooltip&#8217;;<br />
	 			d.id = &#8216;photo_tooltip&#8217; + itemId;<br />
	 			var img = document.createElement ( &#8216;img&#8217; );<br />
	 			img.id = &#8216;photo_for_&#8217; + itemId;<br />
	  			img.src = imgLoading.src;<br />
	  			d.appendChild(img);<br />
	 			document.body.appendChild(d);<br />
	 			if (!i.complete) {<br />
					Event.on ( i, &#8216;load&#8217;, function(e) {<br />
					var img = Dom.get(&#8216;photo_for_&#8217; + itemId);<br />
					img.src = i.src;<br />
					img.width = i.width;<br />
					img.height = i.height;<br />
					} );<br />
				} else {<br />
					img.src = i.src;<br />
					img.width = i.width;<br />
					img.height = i.height;<br />
				}<br />
			}<br />
 			createTip ( elem, &#8216;photo_tooltip&#8217; + itemId, false );<br />
		}</p>
<p>Any help will highly be appriciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-754</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 12 Dec 2008 11:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-754</guid>
		<description>Did you include the style file?  Do you have firebug installed in FireFox?  If so, you can look at the styles of the tooltip that is created and manually adjust them as necessary to get what you want.</description>
		<content:encoded><![CDATA[<p>Did you include the style file?  Do you have firebug installed in FireFox?  If so, you can look at the styles of the tooltip that is created and manually adjust them as necessary to get what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Levi</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-753</link>
		<dc:creator>Levi</dc:creator>
		<pubDate>Fri, 12 Dec 2008 06:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-753</guid>
		<description>Can somebody help me with resizing? No news from webmaster so far....</description>
		<content:encoded><![CDATA[<p>Can somebody help me with resizing? No news from webmaster so far&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sreenivas</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-739</link>
		<dc:creator>sreenivas</dc:creator>
		<pubDate>Wed, 26 Nov 2008 19:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-739</guid>
		<description>hey thank u very much</description>
		<content:encoded><![CDATA[<p>hey thank u very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Levi</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-738</link>
		<dc:creator>Levi</dc:creator>
		<pubDate>Wed, 26 Nov 2008 08:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-738</guid>
		<description>Hi, I hope you can help me out on this.

I appended the createPhotoTip function into the yh_tooltip.js and managed to create the tooltip. 
However, I was testing with a 1024x768 jpg image, and the tooltip image on screen is very small, about 1cm x 1cm.

How do I adjust the size?

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi, I hope you can help me out on this.</p>
<p>I appended the createPhotoTip function into the yh_tooltip.js and managed to create the tooltip.<br />
However, I was testing with a 1024&#215;768 jpg image, and the tooltip image on screen is very small, about 1cm x 1cm.</p>
<p>How do I adjust the size?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-652</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 15 Aug 2008 12:29:34 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-652</guid>
		<description>Everyones tooltip needs are different.  Under the Usage header does give you an example of exactly how you can do it.  The 3rd part simply shows a way to customize it for a specific usage.  You&#039;ll have to provide your own customization if you have a specific usage.  For most people, steps 1-2 above the photo loading example should be sufficient though.</description>
		<content:encoded><![CDATA[<p>Everyones tooltip needs are different.  Under the Usage header does give you an example of exactly how you can do it.  The 3rd part simply shows a way to customize it for a specific usage.  You&#8217;ll have to provide your own customization if you have a specific usage.  For most people, steps 1-2 above the photo loading example should be sufficient though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-651</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Fri, 15 Aug 2008 11:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-651</guid>
		<description>the example is not good. Here no have good tutorial how we can do it. By</description>
		<content:encoded><![CDATA[<p>the example is not good. Here no have good tutorial how we can do it. By</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-573</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 16 Jul 2008 15:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-573</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-572</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 15 Jul 2008 21:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-572</guid>
		<description>Check the yh_tooltip.css file.  You can tweak the tooltip class and the .tt_header class to have a width I&#039;d think.  I imagine with a little tweaking, you&#039;ll be able to find the look you&#039;re after.</description>
		<content:encoded><![CDATA[<p>Check the yh_tooltip.css file.  You can tweak the tooltip class and the .tt_header class to have a width I&#8217;d think.  I imagine with a little tweaking, you&#8217;ll be able to find the look you&#8217;re after.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-571</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Tue, 15 Jul 2008 21:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-571</guid>
		<description>Hi, Dennis,

Great work! I have tried your code and i have a question for you. I am wondering if it is possible to change the width of the toop_tips (or if I want to have a fixed width 250px). Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hi, Dennis,</p>
<p>Great work! I have tried your code and i have a question for you. I am wondering if it is possible to change the width of the toop_tips (or if I want to have a fixed width 250px). Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeyaseelan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-555</link>
		<dc:creator>jeyaseelan</dc:creator>
		<pubDate>Thu, 10 Jul 2008 01:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-555</guid>
		<description>ya..Thank you dennis, again  i tried it working smoothly..Thanks a lot ..</description>
		<content:encoded><![CDATA[<p>ya..Thank you dennis, again  i tried it working smoothly..Thanks a lot ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-554</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 08 Jul 2008 22:06:42 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-554</guid>
		<description>Perhaps if you post the page your working on, someone can take a look to see what the problem you&#039;re having is.</description>
		<content:encoded><![CDATA[<p>Perhaps if you post the page your working on, someone can take a look to see what the problem you&#8217;re having is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeyaseelan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-553</link>
		<dc:creator>jeyaseelan</dc:creator>
		<pubDate>Tue, 08 Jul 2008 04:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-553</guid>
		<description>please tell me what are changable tags or elements in the createPhotoTip script..

Please help me..]
advance Thank u for ur kind reply</description>
		<content:encoded><![CDATA[<p>please tell me what are changable tags or elements in the createPhotoTip script..</p>
<p>Please help me..]<br />
advance Thank u for ur kind reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeyaseelan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-552</link>
		<dc:creator>jeyaseelan</dc:creator>
		<pubDate>Tue, 08 Jul 2008 03:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-552</guid>
		<description>Thank you for your kind reply,
I explain about i did show below
1.I selected one image for preview named as &#039;image1.jpg&#039; and id is &#039;img&#039;
2.i paste your JS and css 5 links in the head tage of Html that links are container.css,event.js,container-min.js,yh_tooltip.css,yh_tooltip.js. 
3. I paste createPhotoTip script code also in the haed.
I modified only the imgLoading.src=&#039;images/image1.jpg&#039;;in the createPhotoTip script.
4.image html tage is 
&lt;a href=&quot;images/image1.jpg&quot; title=&quot;　Green Teas&quot; rel=&quot;nofollow&quot;&gt;
&lt;/a&gt;

please give the solution...what is wrong in that code..
I waiting for your reply</description>
		<content:encoded><![CDATA[<p>Thank you for your kind reply,<br />
I explain about i did show below<br />
1.I selected one image for preview named as &#8216;image1.jpg&#8217; and id is &#8216;img&#8217;<br />
2.i paste your JS and css 5 links in the head tage of Html that links are container.css,event.js,container-min.js,yh_tooltip.css,yh_tooltip.js.<br />
3. I paste createPhotoTip script code also in the haed.<br />
I modified only the imgLoading.src=&#8217;images/image1.jpg&#8217;;in the createPhotoTip script.<br />
4.image html tage is<br />
<a href="images/image1.jpg" title="　Green Teas" rel="nofollow"><br />
</a></p>
<p>please give the solution&#8230;what is wrong in that code..<br />
I waiting for your reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-549</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Mon, 07 Jul 2008 12:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-549</guid>
		<description>You can use the code wherever you&#039;d like the effects for your images.  Just follow the instructions above for each page you want to have image overlays on.</description>
		<content:encoded><![CDATA[<p>You can use the code wherever you&#8217;d like the effects for your images.  Just follow the instructions above for each page you want to have image overlays on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeyaseelan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-547</link>
		<dc:creator>jeyaseelan</dc:creator>
		<pubDate>Mon, 07 Jul 2008 09:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-547</guid>
		<description>This is jeyaseelan.Thank you for your great guidance...Where shall i put u recommented code?

please reply me....

Thank you for ur time consideration</description>
		<content:encoded><![CDATA[<p>This is jeyaseelan.Thank you for your great guidance&#8230;Where shall i put u recommented code?</p>
<p>please reply me&#8230;.</p>
<p>Thank you for ur time consideration</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dylan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-289</link>
		<dc:creator>dylan</dc:creator>
		<pubDate>Sun, 03 Feb 2008 06:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-289</guid>
		<description>Funny I did the same thing pretty much line for line on mine before reading your comment:

if (!i.complete) {
   YUE.on ( i, &#039;load&#039;, function(e) {
    var img = YUD.get(&#039;photo_for_&#039;+photo_id);
	img.src = i.src;
	img.width = i.width;
 	img.height = i.height;
   } );
  } else {
	img.src = i.src;
	img.width = i.width;
 	img.height = i.height;
  }</description>
		<content:encoded><![CDATA[<p>Funny I did the same thing pretty much line for line on mine before reading your comment:</p>
<p>if (!i.complete) {<br />
   YUE.on ( i, &#8216;load&#8217;, function(e) {<br />
    var img = YUD.get(&#8216;photo_for_&#8217;+photo_id);<br />
	img.src = i.src;<br />
	img.width = i.width;<br />
 	img.height = i.height;<br />
   } );<br />
  } else {<br />
	img.src = i.src;<br />
	img.width = i.width;<br />
 	img.height = i.height;<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-288</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Tue, 29 Jan 2008 18:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-288</guid>
		<description>Looks like I have a slightly updated version I was using in production..  I think I ran across the same error.  Here is what I did to fix it:

replace the whole if (!i.complete) block with the following and see if that also solves your problem:

var i=new Image();
Event.on ( i, &#039;load&#039;,  function(e) {
&#160;img.src=i.src;
&#160;img.width=i.width;
&#160;img.height=i.height;
} );
i.src=&#039;&lt;the path to your photo&gt;&#039;;</description>
		<content:encoded><![CDATA[<p>Looks like I have a slightly updated version I was using in production..  I think I ran across the same error.  Here is what I did to fix it:</p>
<p>replace the whole if (!i.complete) block with the following and see if that also solves your problem:</p>
<p>var i=new Image();<br />
Event.on ( i, &#8216;load&#8217;,  function(e) {<br />
&nbsp;img.src=i.src;<br />
&nbsp;img.width=i.width;<br />
&nbsp;img.height=i.height;<br />
} );<br />
i.src=&#8217;&lt;the path to your photo>&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dylan</title>
		<link>http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/comment-page-1/#comment-287</link>
		<dc:creator>dylan</dc:creator>
		<pubDate>Mon, 28 Jan 2008 01:05:16 +0000</pubDate>
		<guid isPermaLink="false">http://allmybrain.com/2007/12/05/creating-image-preview-tooltips-with-the-yui-overlay-widget/#comment-287</guid>
		<description>I&#039;m trying to use this on a site that I&#039;m buidling. It&#039;s really nice - I appreciate your creating it. One thing though - in IE6, my installation is not resizing the image correctly after the SRC value is changed (after the image has finished downloading). For instance, if my loader.gif is 32x32, the large size image remains that way. I have seen a bug like this before where IE has trouble resizing images if you leave out a width or height, but I believe it should redraw the image completely if both are left out.

Let me know what you think - Ive set the loading image URL to your loading image just to be sure it wasnt a JPEG/GIF redrawing type thing.

http://www.dylanbutler.com/client/mapmashup/

(Find a listing with photos and mouse over one)

Thanks in advance</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to use this on a site that I&#8217;m buidling. It&#8217;s really nice &#8211; I appreciate your creating it. One thing though &#8211; in IE6, my installation is not resizing the image correctly after the SRC value is changed (after the image has finished downloading). For instance, if my loader.gif is 32&#215;32, the large size image remains that way. I have seen a bug like this before where IE has trouble resizing images if you leave out a width or height, but I believe it should redraw the image completely if both are left out.</p>
<p>Let me know what you think &#8211; Ive set the loading image URL to your loading image just to be sure it wasnt a JPEG/GIF redrawing type thing.</p>
<p><a href="http://www.dylanbutler.com/client/mapmashup/" rel="nofollow">http://www.dylanbutler.com/client/mapmashup/</a></p>
<p>(Find a listing with photos and mouse over one)</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

