<!--
function onLoad() {
    window.products = new Menu("products");
   	products.menuItemBgColor = "#B70000";
   	products.fontColor = "white";
   	products.addMenuItem("Equipment Specials" , "location='specials.htm'");
   	products.addMenuItem("Wine Making" , "location='wine.htm'");
	products.addMenuItem("Seafood" , "location='fish.htm'");
	products.addMenuItem("Italian Fiesta Sausage Tray" , "location='saustry.htm'");
	products.addMenuItem("Italian Sausage" , "location='sausrope.htm'");
	products.addMenuItem("Deer & Meat processing" , "location='deer.htm'");
	products.addMenuItem("Vegetable and Cheese Trays" , "location='tray.htm'");
	products.addMenuItem("Beef Portion Cuts" , "location='beef.htm'");
	products.addMenuItem("Beef Primal Cuts" , "location='beefprime.htm'");
	products.addMenuItem("Chicken Cuts" , "location='chix.htm'");
	products.addMenuItem("Pork Cuts" , "location='pork.htm'");
	products.addMenuItem("Deep Fried Turkey" , "location='turkey.htm'");
	products.addMenuItem("New Years Eve Party Kit" , "location='newyears.htm'");
	products.addMenuItem("View the Product List" , "location='products.txt'");
   	products.addMenuItem("Free Classified Ads" , "location='/cgi-bin/classifieds/classifieds.cgi'");

    window.service = new Menu("service");
    service.menuItemBgColor = "#B70000";
    service.fontColor = "white";
    service.addMenuItem("Cash N Carry" , "location='public.htm'");
    service.addMenuItem("Restaurants" , "location='rest.htm'");
    service.addMenuItem("Organizations" , "location='rest.htm'");
    service.addMenuItem("Institutions" , "location='rest.htm'");
    service.addMenuItem("Free Classified Ads" , "location='/cgi-bin/classifieds/classifieds.cgi'");
    service.addMenuItem("Map" , "location='http://MapsOnUs.switchboard.com/bin/maps-map/usr=~new/mapCentScale=-79.72345,39.91401,0.20?SelectItems=-&AddMapLabel=-79.72345,39.91401,100+Romeo+Ln&SessionSrc=SendMail.m'");
    service.addMenuItem("Warehouse Pictures" , "location='pics.htm'");
    service.addMenuItem("Contact Us" , "location='contacts.htm'");

    products.disableDrag = true;
    service.disableDrag = true;
    products.writeMenus();
}
//-->18300