﻿// (c) 2002 Witold Lipski

//call menu function
menu();

//  This function draws a table cell with logo and menu buttons.
function menu() {

document.writeln('<td bgcolor="#ffffff" width="200" valign="top">');
document.writeln('<center><img border="0" src="http://www.aikanekonacoffee.com/images/logo2.JPG" width="200" alt="Aikane Kona Coffee, logo by Dietrich Varez"></center>');
document.writeln('<p></p>');

//draw menu buttons
draw_menu_item("home", "http://www.aikanekonacoffee.com/buttons/butt_home.JPG", "http://www.aikanekonacoffee.com/index.html", 0);
draw_menu_item("konacoffee", "http://www.aikanekonacoffee.com/buttons/butt_konacoffee.JPG", "http://www.aikanekonacoffee.com/coffee.htm", 0);
draw_menu_item("order", "http://www.aikanekonacoffee.com/buttons/butt_ordercoffee.JPG", "http://www.aikanekonacoffee.com/cgi-bin/order.pl", 0);
draw_menu_item("message", "http://www.aikanekonacoffee.com/buttons/butt_club.JPG", "http://www.aikanekonacoffee.com/coffeeclub.htm", 0);
draw_menu_item("home", "http://www.aikanekonacoffee.com/buttons/butt_message.JPG", "http://www.aikanekonacoffee.com/message.htm", 0); 
draw_menu_item("links", "http://www.aikanekonacoffee.com/buttons/butt_links.JPG", "http://www.aikanekonacoffee.com/links.htm", 0);

document.writeln('<br><center><img src="http://www.aikanekonacoffee.com/clips/HAW.gif"></center>');
document.writeln('</td>');
document.writeln('<td rowspan="2" width="20" background="http://www.aikanekonacoffee.com/images/leaf_border2.gif">&nbsp;&nbsp;&nbsp;&nbsp;</td>');
document.writeln('<td rowspan="2" width="10">&nbsp;&nbsp;&nbsp;</td>');

}

//  This function adds a link button.
function draw_menu_item(name, imgpath, linkurl, isnew) {
  document.writeln('<center><a href="'+linkurl+'"><img name="'+name+'" src="'+imgpath+'"></a>');
  if(isnew >0) {
    document.write('<img align="top" src="images/new2.gif" border=0>');
  }
  document.writeln('</center>');
}