<?
include 'constants.php';
//echo "included constants<br>";
include 'functions.php';
//echo "included functions<br>";
?>
<html>
<head>
<title>Paintings</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="fist.css" type="text/css">
</head>

<body bgcolor="#99aaaa" text="#000000">
<table width="70%" border="0" cellpadding="2" align="center">
  <tr>
    <td>
<?
//list files in images/photos and make sure there are thumbnails in thumbs directory
$pics = listpics(PATHPAINTINGS, PATHTHUMBPAINTINGS);
?>
<table align="center" cellspacing="10">
<?
//for every pic in this directory display the thumb and link to big
piccells(PATHPAINTINGS, PATHTHUMBPAINTINGS, $pics);

?>
</table>
    </td>
  </tr>
  <tr>
  	<td>
  	Liisa appears to have taken up painting.
  	</td>
  </tr>
</table>
</body>
</html>