O.K so searched for <div id="image_viewer" with developers tool kit.
and it came back with:
includes/templates/custom/templates/tpl_modules_ajax_image_viewer.php
THe file reads:
<?php
include(DIR_WS_MODULES . 'AJAX_image_swapper.php');
?>
<div id="image_viewer" style="height: <?php echo (IMAGE_VIEWER_MEDIUM_IMAGE_HEIGHT + IMAGE_VIEWER_SMALL_IMAGE_HEIGHT + 10)?>px">
<!-- bof Zen Slimbox v0.1 btyler 2007-12-04 -->
<?php
if( FUAL_SLIMBOX == 'true' || ZEN_LIGHTBOX_STATUS == 'true' ) {
// Set the title
if ( $current_page_base == 'product_reviews' ) {
$fual_slimbox_title = htmlentities($review->fields['products_name'],ENT_QUOTES);
} else {
$fual_slimbox_title = htmlentities($products_name,ENT_QUOTES);
}
// Get the href for the large image
$fual_slimbox_href = zen_lightbox($products_image_large, $fual_slimbox_title, LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
$fual_slimbox_a = '<a href="' . $fual_slimbox_href . '" rel="lightbox[gallery]" title="' . $fual_slimbox_title . '">';
// Get the img element for this product.
$fual_slimbox_image = zen_image($products_image_medium, $fual_slimbox_title, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT);
// Test remote images to simulate slow loading for local development
//$fual_slimbox_image = '<img src="http://demos.mootools.net/demos/DomReadyVS.Load/moo.png" width="150px" height="150px;" alt="test" />';
// Note if you want to test a slow DOM load, then in /index.php add sleep(5); (in php brackets) just before the final </html>
// This will make the DOM take an extra 5 seconds to load, which simulates dialup (what a cool feature)
$fualSlimboxContent = "";
if( ZEN_LIGHTBOX_STATUS == 'true' ) {
$fualNervousSwitch = 0;
} else {
$fualNervousSwitch = FUAL_SLIMBOX_NERVOUS;
}
switch( $fualNervousSwitch ) {
case 2:
echo '<div id="image_medium_container">';
break;
case 1:
echo '<div id="image_medium_container" style="display:block;">';
break;
case 0:
default:
echo '<div id="image_medium_container" style="display:block; visibility:visible;">';
}
?>
<?php
echo '</div>';
}
else {
?>
<div id="image_medium_container">
</div>
<?php
}
?>
<div id="image_nav_container">
<a id="arrow_left" href="javascript:viewPrevious()" class="back"></a>
<a id="arrow_right" href="javascript:viewNext()" class="forward"></a>
</div>
</div>
<input type="hidden" id="ais_image_num" value="<?php echo IMAGE_VIEWER_IMAGES_NUM;?>" />
<input type="hidden" id="ais_small_container_width" value="<?php echo IMAGE_VIEWER_SMALL_IMAGE_WIDTH;?>" />
<input type="hidden" id="ais_small_container_height" value="<?php echo IMAGE_VIEWER_SMALL_IMAGE_HEIGHT;?>" />
<input type="hidden" id="ais_scroll_size" value="<?php echo IMAGE_VIEWER_SCROLL_SIZE;?>" />
<input type="hidden" id="products_id" name="products_id" value="<?php echo $products_id; ?>" />