<html>
	<head>
		<title>Winamp Comps</title>
		<style type="text/css">
			body
				{
				font:10px verdana;
				margin:0px;
				padding:0px;
				}
		</style>
	</head>
<body>
<?php

$images = array(
	"Homepage-vA.jpg",
	"Homepage-vC1.jpg",
	"Music-Browse-Music.jpg",
	"Player-Main.jpg",
	"Player-Purchase-Checkout.jpg",
	"Search-Results.jpg",
	"Skins-Category.jpg",
	"Skins-Details.jpg",
	"Skins-Featured.jpg");

if($_GET["id"] != null)
	{
	$link = $_GET["id"]+1;
	if($link == count($images)) $link = "index.php";
	else $link = "index.php?id=$link";
	echo "<a href=\"$link\"><img src=\"".$images[$_GET["id"]]."\"/></a>";
	}
else
	{
	echo <<<HTML
	<p style="padding:20px; width:300px;">
	These screens are mock ups for a redesign of Winamp.com. This was done in collaboration
	with Odopod.com.  My role was designer and creator/illustrator of the 'speakerheads.' <a href="index.php?id=0">begin</a>
	
HTML;
	}
?>
</body>
</html>