Hi,
You should avoid bumping your messages as it goes back at the top of the queue on our end and thus you will have to wait more for us to answer you which is the opposite of what you want
Regarding the lightbox, instead of the line:
<a class="modal" rel="{handler: 'iframe', size: {x: 450, y: 480}}" href="<?php echo $link;?>" title="<?php echo $this->escape($this->row->product_name); ?>" onhover="SqueezeBox.fromElement(this,{parse: 'rel'});return false;">
which will display the full product page in the lightbox, you should instead use:
<a class="modal" rel="{handler: 'iframe', size: {x: 450, y: 480}}" href="<?php echo $link;?>?tmpl=component" title="<?php echo $this->escape($this->row->product_name); ?>" onhover="SqueezeBox.fromElement(this,{parse: 'rel'});return false;">
which will only display the content of the product page without the template.