<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <title>Fake QTVR and skimming</title>
</head>
<body>

<?php 
    
/*
        Note: THIS FAILS if $imageDir contains a hyphen.
        (And probably any other dir as well.)
        I don't know why. JS vars can't have hyphens?
    */
?>

<table border='0' cellpadding='5' cellspacing='0'>
    <tr>
        <!-- put each skimmable thumbnail into a table cell. -->
        <td>
            <?php
                $baseDir
='images';
                
$imageDir='mug_qtvr';
                
$thumbDir='thumbs';
                
$numImages='12';
                
$imageWidth='120';
                
$imageHeight='98';
                
$imageType='jpg';
                include 
'skim.php';
            
?>
        </td>
    
        <td>
            <?php
                $baseDir
='images';
                
$imageDir='baby_skim';
                
$thumbDir='thumbs';
                
$numImages='16';
                
$imageWidth='160';
                
$imageHeight='120';
                
$imageType='jpg';
                include 
'skim.php';
            
?>
        </td>
    
    </tr>
</table>

</body>
</html>