function chaCell (id, color) {
  if (document.layers)
    document[id].bgColor = color == 'transparent' ? null : color;
  else if (document.all)
    document.all[id].style.backgroundColor = color;
  else if (document.getElementById)
    document.getElementById(id).style.backgroundColor = color;
}

document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"2\" width=\"100%\">"+
"<tr>"+
"<td id=\"a\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/aboutus.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('a','#8F8C9F')\" onMouseout=\"chaCell('a','#F2F2F2')\">ABOUT US</a></td>"+
"</tr><tr>"+
"<td id=\"b\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/brokerage.html?sail\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('b','#8F8C9F')\" onMouseout=\"chaCell('b','#F2F2F2')\">USED YACHTS</a></td>"+
"</tr><tr>"+
"<td id=\"e\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/list.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('e','#8F8C9F')\" onMouseout=\"chaCell('e','#F2F2F2')\">LIST YOUR BOAT</a></td>"+
"</tr><tr>"+
"<td id=\"c\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/findboat.htm\" class=\"nav\" onMouseover=\"chaCell('c','#8F8C9F')\" onMouseout=\"chaCell('c','#F2F2F2')\">FIND YOUR BOAT</a></td>"+
"</tr><tr>"+
"<td id=\"f\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/insurance.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('f','#8F8C9F')\" onMouseout=\"chaCell('f','#F2F2F2')\">INSURANCE</a></td>"+
"</tr><tr>"+
"<td id=\"g\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/finance.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('g','#8F8C9F')\" onMouseout=\"chaCell('g','#F2F2F2')\">FINANCE</a></td>"+
"</tr><tr>"+
"<td id=\"h\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/location.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('h','#8F8C9F')\" onMouseout=\"chaCell('h','#F2F2F2')\">LOCATION</a></td>"+
"</tr><tr>"+
"<td id=\"i\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/contact.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('i','#8F8C9F')\" onMouseout=\"chaCell('i','#F2F2F2')\">CONTACT</a></td>"+
"</tr><tr>"+
"<td id=\"d\">&nbsp;<a href=\"http://www.pittwateryachts.com.au/cv.htm\" target=\"_top\" class=\"nav\" onMouseover=\"chaCell('d','#8F8C9F')\" onMouseout=\"chaCell('d','#F2F2F2')\">MAURICE GILET CV</a></td>"+
"</tr><tr>"+
"<td id=\"j\">&nbsp;<a href=\"http://www.holmeportmarinas.com.au\" target=\"_blank\" class=\"nav\" onMouseover=\"chaCell('j','#8F8C9F')\" onMouseout=\"chaCell('j','#F2F2F2')\">HOLMEPORT MARINAS</a></td>"+
"</tr></table>");

