<?php 
include("inc/header.php");
$pageTitle = "Time's Up";
 include("inc/wristwatch.php"); 
?>

	<div id="watch">
		<ul id="products">
		<?php foreach($products as $product_id => $product) {
			echo "<li>";
			echo	'<a href="catalog.php?id=' . $product_id . '">';
			echo '<img src=" ' .  $product["img"] . ' " alt=" ' . $product["name"] .' ">';									
		 } ?>
		</ul>
	</div>
<?php 
include("inc/footer.php");
?>