<?php
	$pageTitle = "MIXXR: Get your tunes on!";
	$section = "New Releases!" ;
	include('inc/header.php');
?>
	<div class="container">
		<img src="img/header.png" alt="header" id="header" />
		<div class="cds">
			<?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 < 3) {
								$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');
?>