
function write_menu(page)
{
var output = "<p> <span style='font-size:18pt;font-family:tahoma;color:white;background-color:#954A00'>";
output +="<center>"; 
output +="<br>";	
output +="<a href=\"index.html\"><img src=\"tslogo.gif\" width=\"150\" border=\"0\"></a><br>";
output += "Rockaway, NJ";
output +="</center>";
output +="</span>";
output +="<br>";
output +="<span style='font-size:14pt;font-family:tahoma;color:white'>";
if (page==0)
{
	output +="<a href=\"index.html\" style=\"text-decoration: none; color:'#F6D399'\"> &nbsp; Home</a><br><br>";
}
else
{
	output +="<a href=\"index.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Home</a><br><br>";
}

if (page==1)
{
	output +="<a href=\"ts_directions.html\" style=\"text-decoration: none; color:'#F6D399'\">&nbsp;&nbsp;Directions&nbsp;</a><br>";
}
else
{
	output +="<a href=\"ts_directions.html\" style=\"text-decoration: none; color:'white' \">&nbsp;&nbsp;Directions&nbsp;</a><br>";
}

if (page==2)
{
	output +="<a href=\"ts_menu.html\" style=\"text-decoration: none;color:'#F6D399'\"> &nbsp; Menu</a><br>";
}
else
{
	output +="<a href=\"ts_menu.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Menu</a><br>";
}
if (page==3)
{
	output +="<a href=\"ts_catering.html\" style=\"text-decoration: none; color:'#F6D399' \"> &nbsp; Catering Menu</a><br>";
}
else
{
	output +="<a href=\"ts_catering.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Catering Menu</a><br>";
}
if (page==4)
{
	output +="<a href=\"ts_pitmaster.html\" style=\"text-decoration: none; color:'#F6D399'\"> &nbsp; Pitmaster Awards</a><br>";
}
else
{
	output +="<a href=\"ts_pitmaster.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Pitmaster Awards</a><br>";
}
if (page==5)
{
	output +="&nbsp; Schedule of Events<br>";
	output +="<span style=\"color:'white'; font-size:14pt\"> &nbsp; &nbsp; April - July</span><br>";
	output +="<a href=\"ts_fall.html\" style=\"text-decoration: none;font-size:14pt\"> &nbsp; &nbsp; August - November</a><br>";

}
else
{
	
	if (page==6)
	{
		output +="&nbsp; Schedule of Events<br>";
		output +="<span ><a href=\"ts_summer.html\" style=\"text-decoration: none;'\"> &nbsp; &nbsp; April - July</a></span><br>";
		output +="<span style=\" color:'white';'\"> &nbsp; &nbsp; August - November</span><br>";

	}
	else
	{
		output +="<a href=\"ts_summer.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Schedule of Events<br>";
	}
}
if (page==7)
{
	output +="<a href=\"ts_photo.html\" style=\"text-decoration: none; color:'#F6D399';\"> &nbsp; Photo Gallery</a><br>";
}
else
{
	output +="<a href=\"ts_photo.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Photo Gallery</a><br>";
}
/*
if (page==8)
{
	output +="<a href=\"ts_videos.html\" style=\"text-decoration: none; color:'#F6D399';\"> &nbsp; Videos</a><br>";
}
else
{
	output +="<a href=\"ts_videos.html\" style=\"text-decoration: none; color:'white'\"> &nbsp; Videos</a><br>";
}*/
output +="</span>";
output +="<br>";
output +="<span style='font-size:14.0pt;font-family:tahoma;color:white'>";
output +="  &nbsp;&nbsp;Monday-Saturday: &nbsp;&nbsp;11am-8pm<br>";
output +="  &nbsp;&nbsp;Sunday: 11am-7pm<br><br>";
output +="  &nbsp;&nbsp;Delivery Available<br><br>";
output +="  &nbsp;&nbsp;Voice: 862-209-4078<br>";
output +="  &nbsp;&nbsp;Fax: 862-209-4079<br><br>";
output +="<a href='mailto:mreidcarmen@yahoo.com' >  Contact Us</a><br>";
output +="</span><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>";
return output;

}
