function menu(page)
{
	var home 		= 	"<dd><a href=\"index.html\">		Home			</a></dd>"
	var menu 		= 	"<dd><a href=\"menus.html\">		Menu			</a></dd>"
	var price 		= 	"<dd><a href=\"price.html\">		Price List		</a></dd>"
	var service 		= 	"<dd><a href=\"services.html\">		Services		</a></dd>"
	var info 		= 	"<dd><a href=\"us.html\">		About us		</a></dd>"
	var promotions 		= 	"<dd><a href=\"prom.html\">		Promotions		</a></dd>"
	var testimonial 	= 	"<dd><a href=\"testimonial.html\">	Testimonials		</a></dd>"
	var photo 		= 	"<dd><a href=\"photo.html\">		Photo Gallery		</a></dd>" 
	var cooking 		= 	"<dd><a href=\"cooking.html\">		Cooking Class		</a></dd>" 
	var contacts 		= 	"<dd><a href=\"contacts.html\">		Contact Info		</a></dd>"
	var activities		= 	"<dd><a href=\"activities.html\">	All our activities	</a></dd>"
	var book		= 	"<dd><a href=\"book.html\">		Recipe book		</a></dd>"

		document.write("<dt>" + home  + menu + price + service + info + promotions + testimonial + book + cooking + activities + contacts + "</dt>")
}

