var menu_names = new Array('about', 'medical exam', 'required tests', 'immunizations', 'our fees', 'directions');
var menu_files = new Array('index.html', 'medical.html', 'tests.html', 'immunizations.html', 'fees.html', 'directions.html');

function do_menu(name)
{
   document.writeln('<img src="diamond.gif" alt="" width="5" height="5" border="0">');
   for (i = 0; i < menu_names.length; i++)
   {
      if (name == menu_names[i]) { document.writeln('<b>' + menu_names[i] + '</b>'); }
      else { document.writeln('<a href="http://www.immigrationmd.com/' + menu_files[i] + '">' + menu_names[i] + '</a>'); }
      document.writeln('<img src="diamond.gif" alt="" width="5" height="5" border="0">');
   }
}