<?php 
$pageTitle = "Cuddly Fluff";
include('inc/header.php'); ?>
<div class="section bears page">
			<div class="wrappertwo">
	
			<div id="images">
				<img id="image1" src="img/slider/1.jpg" />
				<img id="image2" src="img/slider/2.jpg" />
				<img id="image3" src="img/slider/3.jpg" />
				<img id="image4" src="img/slider/4.jpg" />
				<img id="image5" src="img/slider/5.jpg" />
			</div>

			<div id="slider">
				<a href="#image1">1</a>
				<a href="#image2">2</a>
				<a href="#image3">3</a>
				<a href="#image4">4</a>
				<a href="#image5">5</a>
			</div>

			
				<h1>Best Sellers' Cuddly Fluff Bears</h1>
				<?php include("inc/products.php"); ?>
					<ul class="products">
						<?php 

						$total_products = count($products);
						$position = 0;
						$list_view_html = "";
						foreach($products as $product_id => $product) { 
							$position = $position + 1;
							if ($total_products - $position < 4) {
								$list_view_html = get_list_view_html($product_id,$product) . $list_view_html;
							}
						}
						echo $list_view_html;
						?>								
					</ul>
			</div>
		</div>
			

<?php include('inc/footer.php'); ?>
	