What's on Tap
Our Tap Room features over 32 taps including room for rotating guest taps. Our selection of both our brews and guest brews can change daily. The list below if updated daily. If you don't see the beer your looking for feel free to give our Tap Room a call for details on when it will be available.
Year Around Flagships
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'flagship'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Dam Release™ Seasonals
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'dam'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Big Water™ High Gravitys
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'big water'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Trail Magic Ales™
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'trailmagic'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Barrel Aged Series
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'barrel'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Mad Zymology™ Pilot Brews
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE series = 'mad'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>
Guest Brews
Beer Name
Beer Description
ABV
On Tap
To Go

// Loop through the table and display all records in tabular format
$query = "SELECT * FROM ontap WHERE brewery = 'guest'";
$result = mysql_query ($query);
$count = mysql_num_rows($result); // Count table rows
while ($row = mysql_fetch_array($result))
{
$id = $row["id"];
$beer_name = $row["beer_name"];
$beer_desc = $row["beer_desc"];
$abv = $row ["abv"];
$status = $row ["status"];
$growler = $row ["growler"];
?>