Just Hom has recently added images to his RSS feeds.

Here is a piece of code to display the feed in your pages:
PHP Code:
<?php
$afflink
="http://www.awin1.com/awclick.php?awinmid=1195&awinaffid=XXXXXX&p=";
$data=file_get_contents("http://www.justhom.com/rss.xml");
$p xml_parser_create();
xml_parse_into_struct($p$data$vals$index);
xml_parser_free($p);
$titlesindex=$index['TITLE'];
$linksindex=$index['LINK'];
$descindex=$index['DESCRIPTION'];
$catindex=$index['CATEGORY'];
$encindex=$index['ENCLOSURE'];
$pagetitle=$vals[$titlesindex[0]]['value'];
$pagelink=$vals[$linksindex[0]]['value'];
$pagedesc=$vals[$descindex[0]]['value'];
$pagecat=$vals[$catindex[0]]['value'];
array_shift($titlesindex);
array_shift($linksindex);
array_shift($descindex);
array_shift($catindex);
?>
<html>
<head></head>
<body>
<h1><?php echo $pagetitle ?></h1>
<h2><?php echo $pagedesc ?></h2>
<h2><?php echo $pagecat ?></h2>
<table>
<?php 
foreach ($titlesindex as $key=>$value)
{
?>
<tr><td colspan=2>
<a href="<?php echo $afflink.$vals[$linksindex[$key]]['value'];?>
title="<?php echo str_replace("Â","",$vals[$titlesindex[$key]]['value']);?>">
<?php echo str_replace("Â","",$vals[$titlesindex[$key]]['value']);?></a><br />
<?php echo $vals[$catindex[$key]]['value'];?>
</td></tr>
<tr><td><img src="<?php echo $vals[$encindex[$key]]['attributes']['URL'];?>
alt="<?php echo str_replace("Â","",$vals[$titlesindex[$key]]['value']);?>" /></td>
<td><?php echo $vals[$descindex[$key]]['value'];?></td>
</tr>
<?php }
?> 
</table></body></html>
Change the awinaffid=XXXXXX to your own affiliate ID or you could change $afflink to your Affiliate Future tracking code.

For a full list of available feeds go to Just Hom's Affiliate page and scroll down to RSS Feeds.

Regards