<!DOCTYPE html>
<html>
<head>
<title>Vanessa's Garage</title>
<link href='css/style.css?Version=1.02' rel='Stylesheet' />
<style type='text/css'>
body {
	background: url(<?chp 
	varchar50 $image;
	MakeRandomHomeImage($image);
	echo($image); ?>) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
</style>
</head>
<body>
	<center><h1><div class='PrettyBorder' style='display:inline-block;background-color:#ffffff'>Vanessa's Garage</div></h1></center>
	<center><div class='PrettyBorder' style='display:inline-block;background-color:#c0c0ff'>
		<a href='login.chp' class='g_button'>Log in</a><br />
		<a href='signup.chp' class='g_button'>Sign up</a><br />
		<a href='search.chp' class='g_button'>Product Search</a><br />
		<a href='forsale.chp' class='g_button'>Items For Sale</a></div></center>
	<br />
	<center><div class='PrettyBorder' style='display:inline-block;background-color:#ffffff;width:40%'>Keep track of the stuff you have and what location, room, and shelf it's on in a private database. Then, mark some items for sale to make them publicly visible.</div></center>
</body>
</html><?chp
public:
using php;
static void MakeRandomHomeImage(varchar &image)
{
	image = "/Images/Home";
	image += random_int(1,3);
	image += ".jpg";
	return;
}
?>
