5 images was missing, i think the lightbox module has not been fully installed,
Name:  404.jpg
Views: 164
Size:  21.5 KB

edit includes/modules/YOUR_TEMPLATE/additional_images.php (OR includes/modules/additional_images.php),
find the code below:

PHP Code:
$script_link '<script language="javascript" type="text/javascript"><!--' "\n" 'document.write(\'' . ($flag_display_large '<a href="javascript:popupWindow(\\\'' $large_link '\\\')">' $thumb_slashes '<br />' TEXT_CLICK_TO_ENLARGE '</a>' $thumb_slashes) . '\');' "\n" '//--></script>'
then change the HREF attribute to $base_image like this:

PHP Code:
$script_link sprintf('<a href="%s" target="_top">%s<span class="zoom"></span></a>'$base_image$thumb_slashes); 
finally, add the `image` css class to the params:
find the code below:
PHP Code:
$list_box_contents[$row][$col] = array('params' => 'class="additionalImages centeredContent back"' ' ' 'style="width:' $col_width '%;"'
then add image class like this:
PHP Code:
$list_box_contents[$row][$col] = array('params' => 'class="image additionalImages centeredContent back"' ' ' 'style="width:' $col_width '%;"'